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

49 lines
1,007 B
Ruby
Raw Normal View History

2010-10-04 17:02:08 -04:00
require 'fog/core/collection'
2010-09-08 17:40:02 -04:00
require 'fog/aws/models/compute/volume'
2010-03-16 18:46:21 -04:00
2009-08-14 12:19:40 -04:00
module Fog
module AWS
2010-09-08 17:40:02 -04:00
class Compute
2009-08-14 12:19:40 -04:00
class Volumes < Fog::Collection
attribute :filters
2010-01-08 14:29:07 -05:00
attribute :server
2009-09-24 00:23:54 -04:00
2010-09-08 17:40:02 -04:00
model Fog::AWS::Compute::Volume
def initialize(attributes)
@filters ||= {}
super
end
def all(filters = @filters)
@filters = filters
data = connection.describe_volumes(@filters).body
load(data['volumeSet'])
2010-01-08 14:29:07 -05:00
if server
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
self.class.new(:connection => connection).all('volume-id' => volume_id).first
2009-10-22 23:46:15 -04:00
end
2009-09-24 00:23:54 -04:00
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))
else
super
end
2009-09-24 00:23:54 -04:00
end
2009-08-14 12:19:40 -04:00
end
end
end
end