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

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

Instance Attribute Summary

Attributes inherited from Model

#connection

Instance Method Summary collapse

Methods included from Deprecation

deprecate

Methods inherited from Model

#collection, #initialize, #inspect, #reload, #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, #identity, #identity=, #merge_attributes, #new_record?, #requires

Constructor Details

This class inherits a constructor from Fog::Model

Instance Method Details

#destroyObject



21
22
23
24
25
26
# File 'lib/fog/aws/models/ec2/snapshot.rb', line 21

def destroy
  requires :id

  connection.delete_snapshot(@id)
  true
end

#ready?Boolean

Returns:

  • (Boolean)


28
29
30
# File 'lib/fog/aws/models/ec2/snapshot.rb', line 28

def ready?
  state == 'completed'
end

#saveObject



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

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



41
42
43
44
45
# File 'lib/fog/aws/models/ec2/snapshot.rb', line 41

def volume
  requires :id

  connection.describe_volumes(@volume_id)
end