Sha256: 152bd9c74f12c1234474213f1bce140ac0153f118a2fbe43115b6c34f9af1931

Contents?: true

Size: 1.09 KB

Versions: 29

Compression:

Stored size: 1.09 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'].find {|_| _['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

29 entries across 29 versions & 4 rubygems

Version Path
fog-1.37.0 lib/fog/hp/requests/compute/get_image_details.rb
fog-1.36.0 lib/fog/hp/requests/compute/get_image_details.rb
fog-1.35.0 lib/fog/hp/requests/compute/get_image_details.rb
fog-2.0.0.pre.0 lib/fog/hp/requests/compute/get_image_details.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/hp/requests/compute/get_image_details.rb
fog-1.34.0 lib/fog/hp/requests/compute/get_image_details.rb
fog-1.33.0 lib/fog/hp/requests/compute/get_image_details.rb
fog-1.32.0 lib/fog/hp/requests/compute/get_image_details.rb
fog-1.31.0 lib/fog/hp/requests/compute/get_image_details.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/hp/requests/compute/get_image_details.rb
fog-1.30.0 lib/fog/hp/requests/compute/get_image_details.rb
fog-1.29.0 lib/fog/hp/requests/compute/get_image_details.rb
fog-1.28.0 lib/fog/hp/requests/compute/get_image_details.rb
fog-1.27.0 lib/fog/hp/requests/compute/get_image_details.rb
fog-1.26.0 lib/fog/hp/requests/compute/get_image_details.rb
fog-1.25.0 lib/fog/hp/requests/compute/get_image_details.rb
nsidc-fog-1.24.1 lib/fog/hp/requests/compute/get_image_details.rb
fog-1.24.0 lib/fog/hp/requests/compute/get_image_details.rb
ns-fog-1.22.11 lib/fog/hp/requests/compute/get_image_details.rb
ns-fog-1.22.10 lib/fog/hp/requests/compute/get_image_details.rb