2010-10-04 17:02:08 -04:00
require 'fog/core/collection'
2011-01-14 05:20:52 -05:00
require 'fog/compute/models/aws/volume'
2010-03-16 18:46:21 -04:00
2009-08-14 12:19:40 -04:00
module Fog
2011-06-16 19:28:54 -04:00
module Compute
class AWS
2009-08-14 12:19:40 -04:00
class Volumes < Fog :: Collection
2010-10-04 18:46:12 -04:00
attribute :filters
2010-01-08 14:29:07 -05:00
attribute :server
2009-09-24 00:23:54 -04:00
2011-06-16 19:28:54 -04:00
model Fog :: Compute :: AWS :: Volume
2009-10-30 02:35:28 -04:00
2010-11-24 11:44:30 -05:00
# Used to create a volume. There are 3 arguments and availability_zone and size are required. You can generate a new key_pair as follows:
2011-05-21 01:21:44 -04:00
# AWS.volumes.create(:availability_zone => 'us-east-1a', :size => 10)
2010-11-24 11:44:30 -05:00
#
# ==== Returns
#
#<Fog::AWS::Compute::Volume
# id="vol-1e2028b9",
# attached_at=nil,
# availability_zone="us-east-1a",
# created_at=Tue Nov 23 23:30:29 -0500 2010,
# delete_on_termination=nil,
# device=nil,
# server_id=nil,
2011-05-21 01:21:44 -04:00
# size=10,
2010-11-24 11:44:30 -05:00
# snapshot_id=nil,
# state="creating",
# tags=nil
#>
#
# The volume can be retreived by running AWS.volumes.get("vol-1e2028b9"). See get method below.
#
2009-09-28 00:31:15 -04:00
def initialize ( attributes )
2010-11-19 16:45:45 -05:00
self . filters || = { }
2009-09-28 00:31:15 -04:00
super
end
2010-11-24 11:44:30 -05:00
# Used to return all volumes.
# AWS.volumes.all
#
# ==== Returns
#
2010-11-29 18:44:44 -05:00
#>>AWS.volumes.all
2010-11-24 11:44:30 -05:00
#<Fog::AWS::Compute::Volume
# id="vol-1e2028b9",
# attached_at=nil,
# availability_zone="us-east-1a",
# created_at=Tue Nov 23 23:30:29 -0500 2010,
# delete_on_termination=nil,
# device=nil,
# server_id=nil,
2011-05-21 01:21:44 -04:00
# size=10,
2010-11-24 11:44:30 -05:00
# snapshot_id=nil,
# state="creating",
# tags=nil
#>
#
# The volume can be retreived by running AWS.volumes.get("vol-1e2028b9"). See get method below.
#
2010-11-19 16:45:45 -05:00
def all ( filters = filters )
2010-10-11 16:45:26 -04: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-11-19 16:45:45 -05:00
self . filters = filters
data = connection . describe_volumes ( filters ) . 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
2010-11-24 11:44:30 -05:00
# Used to retreive a volume
# volume_id is required to get the associated volume information.
#
# You can run the following command to get the details:
# AWS.volumes.get("vol-1e2028b9")
#
# ==== Returns
#
#>> AWS.volumes.get("vol-1e2028b9")
# <Fog::AWS::Compute::Volume
# id="vol-1e2028b9",
# attached_at=nil,
# availability_zone="us-east-1a",
# created_at=Tue Nov 23 23:30:29 -0500 2010,
# delete_on_termination=nil,
# device=nil,
# server_id=nil,
2011-05-21 01:21:44 -04:00
# size=10,
2010-11-24 11:44:30 -05:00
# snapshot_id=nil,
# state="available",
# tags={}
# >
#
2009-09-24 00:23:54 -04:00
def get ( volume_id )
2009-10-22 23:46:15 -04:00
if volume_id
2010-10-04 18:46:12 -04:00
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 ) )
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