Sha256: 035a2ecc2a2fddfbb7125874e0f08cfeda010166653cbaae54c9b2fbb6e07c99

Contents?: true

Size: 1.1 KB

Versions: 79

Compression:

Stored size: 1.1 KB

Contents

module Fog
  module Compute
    class HP
      class Real

        # Get details for image by id
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #     * 'id'<~Integer> - Id of the image
        #     * 'name'<~String> - Name of the image
        #     * 'serverId'<~Integer> - Id of server image was created from
        #     * 'status'<~Integer> - Status of image
        #     * 'updated'<~String> - Timestamp of last update
        def get_image_details(image_id)
          request(
            :expects  => [200, 203],
            :method   => 'GET',
            :path     => "images/#{image_id}.json"
          )
        end

      end

      class Mock

        def get_image_details(image_id)
          response = Excon::Response.new
          if image = list_images_detail.body['images'].detect {|_| _['id'] == image_id}
            response.status = [200, 203][rand(1)]
            response.body = { 'image' => image }
            response
          else
            raise Fog::Compute::HP::NotFound
          end
        end

      end

    end
  end
end

Version data entries

79 entries across 79 versions & 12 rubygems

Version Path
fog-maestrodev-1.18.0.20131209090811 lib/fog/hp/requests/compute/get_image_details.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/hp/requests/compute/get_image_details.rb
fog-maestrodev-1.18.0.20131205181604 lib/fog/hp/requests/compute/get_image_details.rb
fog-maestrodev-1.18.0.20131127194823 lib/fog/hp/requests/compute/get_image_details.rb
fog-maestrodev-1.18.0.20131126183714 lib/fog/hp/requests/compute/get_image_details.rb
fog-maestrodev-1.18.0.20131126122111 lib/fog/hp/requests/compute/get_image_details.rb
fog-maestrodev-1.18.0.20131125111730 lib/fog/hp/requests/compute/get_image_details.rb
fog-maestrodev-1.18.0.20131125083406 lib/fog/hp/requests/compute/get_image_details.rb
fog-maestrodev-1.18.0.20131123105121 lib/fog/hp/requests/compute/get_image_details.rb
fog-maestrodev-1.18.0.20131122203507 lib/fog/hp/requests/compute/get_image_details.rb
fog-maestrodev-1.18.0.20131121075022 lib/fog/hp/requests/compute/get_image_details.rb
fog-maestrodev-1.18.0.20131118164830 lib/fog/hp/requests/compute/get_image_details.rb
fog-maestrodev-1.18.0.20131115184302 lib/fog/hp/requests/compute/get_image_details.rb
fog-maestrodev-1.18.0.20131114200144 lib/fog/hp/requests/compute/get_image_details.rb
gapinc-fog-1.12.1.2.1 lib/fog/hp/requests/compute/get_image_details.rb
fog-maestrodev-1.18.0.20131112185232 lib/fog/hp/requests/compute/get_image_details.rb
fog-maestrodev-1.18.0.20131111203459 lib/fog/hp/requests/compute/get_image_details.rb
fog-1.18.0 lib/fog/hp/requests/compute/get_image_details.rb
fog-1.17.0 lib/fog/hp/requests/compute/get_image_details.rb
fog-1.16.0 lib/fog/hp/requests/compute/get_image_details.rb