Class: Fog::AWS::Compute::Snapshot

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

Instance Method Summary collapse

Instance Method Details

#destroyObject



18
19
20
21
22
23
# File 'lib/fog/aws/models/compute/snapshot.rb', line 18

def destroy
  requires :id

  service.delete_snapshot(id)
  true
end

#ready?Boolean

Returns:

  • (Boolean)


25
26
27
# File 'lib/fog/aws/models/compute/snapshot.rb', line 25

def ready?
  state == 'completed'
end

#saveObject

Raises:

  • (Fog::Errors::Error)


29
30
31
32
33
34
35
36
37
# File 'lib/fog/aws/models/compute/snapshot.rb', line 29

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

#volumeObject



39
40
41
42
# File 'lib/fog/aws/models/compute/snapshot.rb', line 39

def volume
  requires :id
  service.describe_volumes(volume_id)
end