Class: Fog::AWS::RDS::Snapshot

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/aws/models/rds/snapshot.rb

Instance Attribute Summary

Attributes inherited from Model

#collection, #service

Instance Method Summary collapse

Methods inherited from Model

#initialize, #inspect, #reload, #symbolize_keys, #to_json, #wait_for

Methods included from Fog::Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Fog::Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

This class inherits a constructor from Fog::Model

Instance Method Details

#destroyObject



28
29
30
31
32
33
# File 'lib/fog/aws/models/rds/snapshot.rb', line 28

def destroy
  requires :id

  service.delete_db_snapshot(id)
  true
end

#ready?Boolean

Returns:

  • (Boolean)


24
25
26
# File 'lib/fog/aws/models/rds/snapshot.rb', line 24

def ready?
  state == 'available'
end

#saveObject



35
36
37
38
39
40
41
42
# File 'lib/fog/aws/models/rds/snapshot.rb', line 35

def save
  requires :instance_id
  requires :id

  data = service.create_db_snapshot(instance_id, id).body['CreateDBSnapshotResult']['DBSnapshot']
  merge_attributes(data)
  true
end

#serverObject



44
45
46
47
# File 'lib/fog/aws/models/rds/snapshot.rb', line 44

def server
  requires :instance_id
  service.servers.get(instance_id)
end