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/ibm/requests/compute/list_images.rb

48 lines
1.8 KiB
Ruby
Raw Normal View History

2012-01-10 17:20:56 -05:00
module Fog
module Compute
class IBM
class Real
2011-04-27 01:49:05 -04:00
# Returns the list of Images available to be provisioned on the IBM DeveloperCloud.
#
# ==== Parameters
# No parameters
2012-01-10 17:20:56 -05:00
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
2011-04-27 01:49:05 -04:00
# * 'images'<~Array>: list of images
# * 'name'<~String>: image name
# * 'location'<~String>: instance location id
# * 'createdTime'<~Integer>: time created in epoch time
# * 'supportedInstanceTypes'<~Array>: list of prices per image
# * 'pricePerQuantity'<~Integer>:
# * 'effectiveDate'<~Fixnum>:
# * 'rate'<~Float>: price per unit
# * 'countryCode'<~String>:
# * 'unitOfMeasure'<~String>: unit of measurement
# * 'currencyCode'<~String>: currency billed in
# * 'productCodes'<~Array>:
# * 'id'<~String>:
# * 'documentation'<~String>: link to documentation for image
# * 'manifest'<~String>: link to xml manifest file
# * 'description'<~String>: text description of image
# * 'visibility'<~String>: status of visibilty of image. known values so far are "PUBLIC" and "PRIVATE"
# * 'platform'<~String>: operating system
# * 'architecture'<~String>: architecture supported by image
# * 'documentation'<~String>: link to documentation for image
# * 'owner'<~String>: owner of image
# * 'state'<~Integer>: state of availability of image
def list_images
2012-01-10 17:20:56 -05:00
request(
:method => 'GET',
:expects => 200,
:path => '/offerings/image'
)
end
end
end
end
end