2009-08-14 12:19:40 -04:00
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class EC2
|
|
|
|
|
2009-10-10 01:54:17 -04:00
|
|
|
def volumes(attributes = {})
|
|
|
|
Fog::AWS::EC2::Volumes.new({
|
|
|
|
:connection => self
|
|
|
|
}.merge!(attributes))
|
2009-08-14 12:19:40 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
class Volumes < Fog::Collection
|
|
|
|
|
2009-09-24 00:23:54 -04:00
|
|
|
attribute :volume_id
|
2010-01-08 14:29:07 -05:00
|
|
|
attribute :server
|
2009-09-24 00:23:54 -04:00
|
|
|
|
2009-10-30 03:11:50 -04:00
|
|
|
model Fog::AWS::EC2::Volume
|
2009-10-30 02:35:28 -04:00
|
|
|
|
2009-09-28 00:31:15 -04:00
|
|
|
def initialize(attributes)
|
|
|
|
@volume_id ||= []
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2009-10-30 02:35:28 -04:00
|
|
|
def all(volume_id = @volume_id)
|
2010-01-05 01:03:24 -05:00
|
|
|
@volume_id = volume_id
|
2009-09-24 00:23:54 -04:00
|
|
|
data = connection.describe_volumes(volume_id).body
|
2010-03-06 23:02:10 -05:00
|
|
|
load(data['volumeSet'])
|
2010-01-08 14:29:07 -05:00
|
|
|
if server
|
2010-03-06 23:02:10 -05:00
|
|
|
self.replace(self.select {|volume| volume.server_id == server.id})
|
2009-10-06 21:55:39 -04:00
|
|
|
end
|
2010-03-08 20:56:55 -05:00
|
|
|
self
|
2009-08-14 12:19:40 -04:00
|
|
|
end
|
|
|
|
|
2009-09-24 00:23:54 -04:00
|
|
|
def get(volume_id)
|
2009-10-22 23:46:15 -04:00
|
|
|
if volume_id
|
|
|
|
all(volume_id).first
|
|
|
|
end
|
2009-11-08 15:16:52 -05:00
|
|
|
rescue Excon::Errors::BadRequest
|
2009-09-24 00:23:54 -04:00
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2009-08-14 12:19:40 -04:00
|
|
|
def new(attributes = {})
|
2010-01-08 14:29:07 -05:00
|
|
|
if server
|
|
|
|
super({ :server => server }.merge!(attributes))
|
2009-12-05 17:53:42 -05:00
|
|
|
else
|
|
|
|
super
|
|
|
|
end
|
2009-09-24 00:23:54 -04:00
|
|
|
end
|
|
|
|
|
2009-08-14 12:19:40 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|