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

37 lines
816 B
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-08-19 12:11:26 -04:00
def all(volume_id = [])
data = connection.describe_volumes(volume_id)
volumes = Fog::AWS::EC2::Volumes.new(:connection => connection)
2009-08-14 12:19:40 -04:00
data['volumeSet'].each do |volume|
volumes << Fog::AWS::EC2::Volume.new({
:connection => connection
}.merge!(volume))
end
volumes
end
def create(attributes = {})
volume = new(attributes)
volume.save
volume
end
def new(attributes = {})
Fog::AWS::EC2::Volume.new(attributes.merge!(:connection => connection))
end
end
end
end
end