1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/models/ec2/snapshot.rb

40 lines
799 B
Ruby

module Fog
module AWS
class EC2
class Snapshot < Fog::Model
identity :snapshot_id, 'snapshotId'
attribute :progress
attribute :start_time, 'startTime'
attribute :status
attribute :volume_id, 'volumeId'
def destroy
connection.delete_snapshot(@snapshot_id)
true
end
def save
data = connection.create_snapshot(volume_id).body
new_attributes = data.reject {|key,value| key == 'requestId'}
merge_attributes(new_attributes)
true
end
def volume
connection.describe_volumes(@volume_id)
end
private
def volume=(new_volume)
@volume_id = new_volume.volume_id
end
end
end
end
end