Class: Fog::Compute::AWS::Snapshot
- Inherits:
-
Model
- Object
- Model
- Fog::Compute::AWS::Snapshot
- Defined in:
- lib/fog/aws/models/compute/snapshot.rb
Instance Method Summary collapse
Instance Method Details
#destroy ⇒ Object
19 20 21 22 23 24 |
# File 'lib/fog/aws/models/compute/snapshot.rb', line 19 def destroy requires :id service.delete_snapshot(id) true end |
#ready? ⇒ Boolean
26 27 28 |
# File 'lib/fog/aws/models/compute/snapshot.rb', line 26 def ready? state == 'completed' end |
#save ⇒ Object
30 31 32 33 34 35 36 37 38 |
# File 'lib/fog/aws/models/compute/snapshot.rb', line 30 def save raise Fog::Errors::Error.new('Resaving an existing object may create a duplicate') if persisted? requires :volume_id data = service.create_snapshot(volume_id, description).body new_attributes = data.reject {|key,value| key == 'requestId'} merge_attributes(new_attributes) true end |
#volume ⇒ Object
40 41 42 43 |
# File 'lib/fog/aws/models/compute/snapshot.rb', line 40 def volume requires :id service.describe_volumes(volume_id) end |