2010-03-16 18:46:21 -04:00
|
|
|
module Fog
|
|
|
|
module AWS
|
2010-09-08 17:40:02 -04:00
|
|
|
class Compute
|
2010-03-16 18:46:21 -04:00
|
|
|
class Real
|
2009-09-12 14:58:05 -04:00
|
|
|
|
2011-01-07 19:52:09 -05:00
|
|
|
require 'fog/compute/parsers/aws/describe_images'
|
2010-06-12 18:31:17 -04:00
|
|
|
|
2009-09-12 14:58:05 -04:00
|
|
|
# Describe all or specified images.
|
|
|
|
#
|
|
|
|
# ==== Params
|
2010-10-04 18:46:12 -04:00
|
|
|
# * filters<~Hash> - List of filters to limit results with
|
|
|
|
# * filters and/or the following
|
2009-09-12 14:58:05 -04:00
|
|
|
# * 'ExecutableBy'<~String> - Only return images that the executable_by
|
|
|
|
# user has explicit permission to launch
|
|
|
|
# * 'ImageId'<~Array> - Ids of images to describe
|
|
|
|
# * 'Owner'<~String> - Only return images belonging to owner.
|
|
|
|
#
|
|
|
|
# ==== Returns
|
2009-11-02 21:48:49 -05:00
|
|
|
# * response<~Excon::Response>:
|
2009-09-12 14:58:05 -04:00
|
|
|
# * body<~Hash>:
|
|
|
|
# * 'requestId'<~String> - Id of request
|
|
|
|
# * 'imagesSet'<~Array>:
|
|
|
|
# * 'architecture'<~String> - Architecture of the image
|
2010-07-25 16:13:35 -04:00
|
|
|
# * 'blockDeviceMapping'<~Array> - An array of mapped block devices
|
2010-12-05 23:27:42 -05:00
|
|
|
# * 'description'<~String> - Description of image
|
2009-09-12 14:58:05 -04:00
|
|
|
# * 'imageId'<~String> - Id of the image
|
|
|
|
# * 'imageLocation'<~String> - Location of the image
|
|
|
|
# * 'imageOwnerId'<~String> - Id of the owner of the image
|
|
|
|
# * 'imageState'<~String> - State of the image
|
|
|
|
# * 'imageType'<~String> - Type of the image
|
|
|
|
# * 'isPublic'<~Boolean> - Whether or not the image is public
|
|
|
|
# * 'kernelId'<~String> - Kernel id associated with image, if any
|
|
|
|
# * 'platform'<~String> - Operating platform of the image
|
|
|
|
# * 'productCodes'<~Array> - Product codes for the image
|
|
|
|
# * 'ramdiskId'<~String> - Ramdisk id associated with image, if any
|
2010-07-25 12:24:08 -04:00
|
|
|
# * 'rootDeviceName'<~String> - Root device name, e.g. /dev/sda1
|
|
|
|
# * 'rootDeviceType'<~String> - Root device type, ebs or instance-store
|
2010-12-21 16:16:42 -05:00
|
|
|
# * 'virtualizationType'<~String> - Type of virtualization
|
2010-10-04 18:46:12 -04:00
|
|
|
def describe_images(filters = {})
|
|
|
|
options = {}
|
|
|
|
for key in ['ExecutableBy', 'ImageId', 'Owner']
|
2010-10-12 14:00:59 -04:00
|
|
|
if filters.is_a?(Hash) && filters.key?(key)
|
2010-10-20 20:10:52 -04:00
|
|
|
options[key] = filters.delete(key)
|
2010-10-04 18:46:12 -04:00
|
|
|
end
|
2009-09-12 14:58:05 -04:00
|
|
|
end
|
2010-10-04 18:46:12 -04:00
|
|
|
params = AWS.indexed_filters(filters).merge!(options)
|
2009-09-12 14:58:05 -04:00
|
|
|
request({
|
2010-05-24 17:22:35 -04:00
|
|
|
'Action' => 'DescribeImages',
|
|
|
|
:idempotent => true,
|
2010-09-08 17:40:02 -04:00
|
|
|
:parser => Fog::Parsers::AWS::Compute::DescribeImages.new
|
2010-10-20 20:02:31 -04:00
|
|
|
}.merge!(params))
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|
2009-09-12 14:58:05 -04:00
|
|
|
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|
2009-09-12 14:58:05 -04:00
|
|
|
|
2010-03-16 18:46:21 -04:00
|
|
|
class Mock
|
2009-07-13 22:14:59 -04:00
|
|
|
|
2010-10-04 18:46:12 -04:00
|
|
|
def describe_images(filters = {})
|
|
|
|
Fog::Mock.not_implemented
|
2009-09-12 14:58:05 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|