Sha256: b576f2744e71c28e36e03fa84e530dfd59d911f416b63aaa58c3cd89075017f3

Contents?: true

Size: 1.65 KB

Versions: 2

Compression:

Stored size: 1.65 KB

Contents

module Fog
  module Compute
    class RackspaceV2
      class Real

        # Retrieves image detail
        # @param [String] image_id
        # @return [Excon::Response] response:
        #   * body [Hash]:
        #     * image [Hash]:
        #       * OS-DCF:diskConfig [String] - The disk configuration value.
        #       * created [String] - created timestamp
        #       * id [String] - id of image
        #       * metadata [Hash] - image metadata
        #       * minDisk [Fixnum]
        #       * minRam [Fixnum]
        #       * name [String] - name of image
        #       * progress [Fixnum] - progress complete. Value is from 0 to 100.
        #       * status [String] - status of current image
        #       * updated [String] - updated timestamp
        #       * links [Array] - links to flavor
        # @raise [Fog::Compute::RackspaceV2::NotFound] - HTTP 404
        # @raise [Fog::Compute::RackspaceV2::BadRequest] - HTTP 400
        # @raise [Fog::Compute::RackspaceV2::InternalServerError] - HTTP 500
        # @raise [Fog::Compute::RackspaceV2::ServiceError]
        # @see http://docs.rackspace.com/servers/api/v2/cs-devguide/content/Get_Image_Details-d1e4848.html
        def get_image(image_id)
          request(
            :expects => [200, 203],
            :method => 'GET',
            :path => "images/#{image_id}"
          )
        end
      end

      class Mock
        def get_image(image_id)
          image = self.data[:images][image_id]
          if image.nil?
            raise Fog::Compute::RackspaceV2::NotFound
          else
            response(:body => {"image" => image})
          end
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fog-1.22.0 lib/fog/rackspace/requests/compute_v2/get_image.rb
fog-1.21.0 lib/fog/rackspace/requests/compute_v2/get_image.rb