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

63 lines
1.3 KiB
Ruby
Raw Normal View History

2009-08-14 12:19:40 -04:00
module Fog
module AWS
class EC2
def volumes
Fog::AWS::EC2::Volumes.new(:connection => self)
end
class Volumes < Fog::Collection
2009-09-24 00:23:54 -04:00
attribute :volume_id
def initialize(attributes)
@volume_id ||= []
super
end
2009-08-19 12:11:26 -04:00
def all(volume_id = [])
2009-09-24 00:23:54 -04:00
data = connection.describe_volumes(volume_id).body
2009-09-26 22:42:08 -04:00
volumes = Fog::AWS::EC2::Volumes.new({
:connection => connection,
:volume_id => volume_id
2009-09-26 22:42:08 -04:00
}.merge!(attributes))
2009-08-14 12:19:40 -04:00
data['volumeSet'].each do |volume|
volumes << Fog::AWS::EC2::Volume.new({
:connection => connection,
:volumes => self
2009-08-14 12:19:40 -04:00
}.merge!(volume))
end
volumes
end
def create(attributes = {})
volume = new(attributes)
volume.save
volume
end
2009-09-24 00:23:54 -04:00
def get(volume_id)
all(volume_id).first
rescue Fog::Errors::BadRequest
nil
end
2009-08-14 12:19:40 -04:00
def new(attributes = {})
2009-09-20 12:21:03 -04:00
Fog::AWS::EC2::Volume.new(
attributes.merge!(
:connection => connection,
:volumes => self
)
)
2009-08-14 12:19:40 -04:00
end
2009-09-24 00:23:54 -04:00
def reload
all(volume_id)
end
2009-08-14 12:19:40 -04:00
end
end
end
end