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, #to_json, #wait_for

Constructor Details

This class inherits a constructor from Fog::Model

Instance Method Details

#destroyObject



16
17
18
19
20
21
# File 'lib/fog/aws/models/ec2/snapshot.rb', line 16

def destroy
  requires :id

  connection.delete_snapshot(@id)
  true
end

#saveObject



23
24
25
26
27
28
29
30
# File 'lib/fog/aws/models/ec2/snapshot.rb', line 23

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



32
33
34
35
36
# File 'lib/fog/aws/models/ec2/snapshot.rb', line 32

def volume
  requires :id

  connection.describe_volumes(@volume_id)
end