Class: Fog::AWS::EC2::Snapshot

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

Instance Attribute Summary

Attributes inherited from Model

#connection

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

#destroyObject



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

#saveObject



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

#volumeObject



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