2011-08-02 11:58:18 -04:00
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class Cloudstack
|
|
|
|
class Real
|
|
|
|
|
2011-08-02 15:18:00 -04:00
|
|
|
# Lists all volumes.
|
|
|
|
#
|
|
|
|
# {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.4/global_admin/listVolumes.html]
|
2011-08-02 11:58:18 -04:00
|
|
|
def list_volumes(options={})
|
|
|
|
options.merge!(
|
|
|
|
'command' => 'listVolumes'
|
|
|
|
)
|
2012-05-22 19:47:53 -04:00
|
|
|
|
2011-08-02 11:58:18 -04:00
|
|
|
request(options)
|
|
|
|
end
|
|
|
|
|
2012-05-22 19:47:53 -04:00
|
|
|
end # Real
|
|
|
|
|
|
|
|
class Mock
|
|
|
|
def list_volumes(options={})
|
|
|
|
volume_id = options.delete('id')
|
|
|
|
if volume_id
|
|
|
|
volumes = [self.data[:volumes][volume_id]]
|
|
|
|
else
|
|
|
|
volumes = self.data[:volumes].values
|
|
|
|
end
|
|
|
|
|
|
|
|
{
|
|
|
|
'listvolumesresponse' => {
|
|
|
|
'count' => volumes.size,
|
|
|
|
'volume' => volumes
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end # Mock
|
|
|
|
end # Cloudstack
|
|
|
|
end # Compute
|
|
|
|
end #Fog
|