Sha256: 0adc2dd3abb97156e8871d0d83f0f309a664e1d853a635f937b2eb527841bbc6
Contents?: true
Size: 1.5 KB
Versions: 2
Compression:
Stored size: 1.5 KB
Contents
module Fog module VcloudDirector class Compute class Real # Retrieve a catalog item. # # @param [String] id Object identifier of the catalog item. # @return [Excon::Response] # * body<~Hash>: # # @see http://pubs.vmware.com/vcd-51/topic/com.vmware.vcloud.api.reference.doc_51/doc/operations/GET-CatalogItem.html # @since vCloud API version 0.9 def get_catalog_item(id) request( :expects => 200, :idempotent => true, :method => 'GET', :parser => Fog::ToHashDocument.new, :path => "catalogItem/#{id}" ) end end class Mock def get_catalog_item(id) unless item = data[:catalog_items][id] raise Fog::VcloudDirector::Compute::Forbidden.new( "No access to entity \"(com.vmware.vcloud.entity.catalogItem:#{id})\"." ) end body = { :href => make_href("catalogItem/#{id}"), :id => id, :name => item[:name], :type => 'application/vnd.vmware.vcloud.catalogItem+xml', :Entity => { :href => make_href("vAppTemplate/#{item[:template_id]}") } } Excon::Response.new( :status => 200, :headers => {'Content-Type' => "#{body[:type]};version=#{api_version}"}, :body => body ) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fog-vcloud-director-0.3.1 | lib/fog/vcloud_director/requests/compute/get_catalog_item.rb |
fog-vcloud-director-0.3.0 | lib/fog/vcloud_director/requests/compute/get_catalog_item.rb |