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

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

Instance Attribute Summary

Attributes inherited from Model

#collection, #connection

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 Fog::Attributes::InstanceMethods

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

Constructor Details

This class inherits a constructor from Fog::Model

Instance Method Details

#destroyObject



25
26
27
28
29
30
# File 'lib/rackspace-fog/aws/models/rds/snapshot.rb', line 25

def destroy
  requires :id

  connection.delete_db_snapshot(id)
  true
end

#ready?Boolean

Returns:

  • (Boolean)


21
22
23
# File 'lib/rackspace-fog/aws/models/rds/snapshot.rb', line 21

def ready?
  state == 'available'
end

#saveObject



32
33
34
35
36
37
38
39
# File 'lib/rackspace-fog/aws/models/rds/snapshot.rb', line 32

def save
  requires :instance_id
  requires :id

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

#serverObject



41
42
43
44
# File 'lib/rackspace-fog/aws/models/rds/snapshot.rb', line 41

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