Class: Fog::AWS::EC2::Snapshot
- Defined in:
- lib/fog/aws/models/ec2/snapshot.rb
Instance Attribute Summary
Attributes inherited from Model
Instance Method Summary collapse
Methods inherited from Model
#_dump, _load, aliases, attribute, attributes, #attributes, #collection, identity, #identity, #initialize, #inspect, #merge_attributes, #new_record?, #reload, #requires, #wait_for
Constructor Details
This class inherits a constructor from Fog::Model
Instance Method Details
#destroy ⇒ Object
14 15 16 17 18 19 |
# File 'lib/fog/aws/models/ec2/snapshot.rb', line 14 def destroy requires :id connection.delete_snapshot(@id) true end |
#save ⇒ Object
21 22 23 24 25 26 27 28 |
# File 'lib/fog/aws/models/ec2/snapshot.rb', line 21 def save requires :volume_id data = connection.create_snapshot(@volume_id).body new_attributes = data.reject {|key,value| key == 'requestId'} merge_attributes(new_attributes) true end |
#volume ⇒ Object
30 31 32 33 34 |
# File 'lib/fog/aws/models/ec2/snapshot.rb', line 30 def volume requires :id connection.describe_volumes(@volume_id) end |