Class: Fog::AWS::RDS::Snapshot
- Defined in:
- lib/fog/aws/models/rds/snapshot.rb
Instance Attribute Summary
Attributes inherited from Model
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
#destroy ⇒ Object
26 27 28 29 30 31 |
# File 'lib/fog/aws/models/rds/snapshot.rb', line 26 def destroy requires :id connection.delete_db_snapshot(id) true end |
#ready? ⇒ Boolean
22 23 24 |
# File 'lib/fog/aws/models/rds/snapshot.rb', line 22 def ready? state == 'available' end |
#save ⇒ Object
33 34 35 36 37 38 39 40 |
# File 'lib/fog/aws/models/rds/snapshot.rb', line 33 def save requires :instance_id requires :id data = connection.create_db_snapshot(instance_id, id).body['CreateDBSnapshotResult']['DBSnapshot'] merge_attributes(data) true end |
#server ⇒ Object
42 43 44 45 |
# File 'lib/fog/aws/models/rds/snapshot.rb', line 42 def server requires :instance_id connection.servers.get(instance_id) end |