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
2009-08-19 09:11:26 -07:00

36 lines
765 B
Ruby

module Fog
module AWS
class EC2
def volumes
Fog::AWS::EC2::Volumes.new(:connection => self)
end
class Volumes < Fog::Collection
def all(volume_id = [])
data = connection.describe_volumes(volume_id)
volumes = []
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