2010-10-04 14:02:08 -07:00
require 'fog/core/collection'
2010-09-08 14:40:02 -07:00
require 'fog/aws/models/compute/volume'
2010-03-16 15:46:21 -07:00
2009-08-14 09:19:40 -07:00
module Fog
module AWS
2010-09-08 14:40:02 -07:00
class Compute
2009-08-14 09:19:40 -07:00
class Volumes < Fog :: Collection
2010-10-04 15:46:12 -07:00
attribute :filters
2010-01-08 11:29:07 -08:00
attribute :server
2009-09-23 21:23:54 -07:00
2010-09-08 14:40:02 -07:00
model Fog :: AWS :: Compute :: Volume
2009-10-29 23:35:28 -07:00
2009-09-27 21:31:15 -07:00
def initialize ( attributes )
2010-10-04 15:46:12 -07:00
@filters || = { }
2009-09-27 21:31:15 -07:00
super
end
2010-10-04 15:46:12 -07:00
def all ( filters = @filters )
2010-10-11 13:45:26 -07:00
unless filters . is_a? ( Hash )
Formatador . display_line ( " [yellow][WARN] all with #{ filters . class } param is deprecated, use all('volume-id' => []) instead[/] [light_black]( #{ caller . first } )[/] " )
filters = { 'volume-id' = > [ * filters ] }
end
2010-10-04 15:46:12 -07:00
@filters = filters
data = connection . describe_volumes ( @filters ) . body
2010-03-06 20:02:10 -08:00
load ( data [ 'volumeSet' ] )
2010-01-08 11:29:07 -08:00
if server
2010-03-06 20:02:10 -08:00
self . replace ( self . select { | volume | volume . server_id == server . id } )
2009-10-06 18:55:39 -07:00
end
2010-03-08 17:56:55 -08:00
self
2009-08-14 09:19:40 -07:00
end
2009-09-23 21:23:54 -07:00
def get ( volume_id )
2009-10-22 20:46:15 -07:00
if volume_id
2010-10-04 15:46:12 -07:00
self . class . new ( :connection = > connection ) . all ( 'volume-id' = > volume_id ) . first
2009-10-22 20:46:15 -07:00
end
2009-09-23 21:23:54 -07:00
end
2009-08-14 09:19:40 -07:00
def new ( attributes = { } )
2010-01-08 11:29:07 -08:00
if server
super ( { :server = > server } . merge! ( attributes ) )
2009-12-05 14:53:42 -08:00
else
super
end
2009-09-23 21:23:54 -07:00
end
2009-08-14 09:19:40 -07:00
end
end
end
end