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/snapshots.rb

62 lines
1.4 KiB
Ruby
Raw Normal View History

2009-09-06 13:48:12 -04:00
module Fog
module AWS
class EC2
2009-09-30 01:02:33 -04:00
def snapshots(attributes = {})
Fog::AWS::EC2::Snapshots.new({
:connection => self
}.merge!(attributes))
2009-09-06 13:48:12 -04:00
end
class Snapshots < Fog::Collection
2009-09-24 22:18:41 -04:00
attribute :snapshot_id
2009-09-26 22:42:08 -04:00
attribute :volume_id
2009-09-24 22:18:41 -04:00
model Fog::AWS::EC2::Snapshot
def initialize(attributes)
@snapshot_id ||= []
super
end
def all(snapshot_id = @snapshot_id)
2009-09-26 22:42:08 -04:00
data = connection.describe_snapshots(snapshot_id).body
snapshots = Fog::AWS::EC2::Snapshots.new({
:connection => connection,
:snapshot_id => snapshot_id
2009-09-26 22:42:08 -04:00
}.merge!(attributes))
2009-09-18 11:56:27 -04:00
data['snapshotSet'].each do |snapshot|
2009-09-06 13:48:12 -04:00
snapshots << Fog::AWS::EC2::Snapshot.new({
:collection => snapshots,
:connection => connection
2009-09-06 13:48:12 -04:00
}.merge!(snapshot))
end
2009-09-30 01:02:33 -04:00
if volume_id
snapshots = snapshots.select {|snapshot| snapshot.volume_id == volume_id}
end
2009-09-06 13:48:12 -04:00
snapshots
end
2009-09-24 22:18:41 -04:00
def get(snapshot_id)
2009-10-22 23:46:15 -04:00
if snapshot_id
all(snapshot_id).first
end
2009-09-24 22:18:41 -04:00
rescue Fog::Errors::BadRequest
nil
end
2009-09-06 13:48:12 -04:00
def new(attributes = {})
snapshot = super(attributes)
2009-09-30 01:02:33 -04:00
if volume_id
snapshot.volume_id = volume_id
end
snapshot
2009-09-06 13:48:12 -04:00
end
end
end
end
end