Sha256: ba154e9cf7c9c47e922695b8889c77c600727115076ea2fd4b392ef9279c58b7

Contents?: true

Size: 1.73 KB

Versions: 37

Compression:

Stored size: 1.73 KB

Contents

module Fog
  module Compute
    class HPV2
      class Real

        # Get details for image by id
        #
        # ==== Parameters
        # * 'image_id'<~String> - UUId of image to get details for
        #
        # ==== Returns
        # * response<~Excon::Response>:
        #   * body<~Hash>:
        #   * 'image'<~Hash>:
        #     * 'id'<~String> - UUId of the image
        #     * 'name'<~String> - Name of the image
        #     * 'links'<~Array> - array of image links
        #     * 'server'<~Hash>
        #       * 'id'<~String> - UUId of server from which this snapshot image was created
        #       * 'links'<~Array> - array of server links
        #     * 'updated'<~String> - Last update timestamp for image
        #     * 'created'<~String> - Creation timestamp for image
        #     * 'minDisk'<~String> - Min. amount of diskspace for the image
        #     * 'minRam'<~String> - Min. amount of ram for the image
        #     * 'progress'<~Integer> - Progress through current status
        #     * 'metadata'<~Hash> - metadata for the image
        #     * 'status'<~String> - Status of image
        def get_image_details(image_id)
          request(
            :expects  => [200, 203],
            :method   => 'GET',
            :path     => "images/#{image_id}"
          )
        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::HPV2::NotFound
          end
        end

      end

    end
  end
end

Version data entries

37 entries across 37 versions & 2 rubygems

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