Sha256: 92fbfba6b1b87424f6cb9d9daa46c851305ef58e92cc46ad65d53f4398673b48
Contents?: true
Size: 673 Bytes
Versions: 96
Compression:
Stored size: 673 Bytes
Contents
module Fog module Compute class VcloudDirector class Real # Retrieve a shadow VM. # # @param [String] id The object identifier of the shadow VM. # @return [Excon::Response] # * body<~Hash>: # # @see http://pubs.vmware.com/vcd-51/topic/com.vmware.vcloud.api.reference.doc_51/doc/operations/GET-ShadowVm.html def get_shadow_vm(id) request( :expects => 200, :idempotent => true, :method => 'GET', :parser => Fog::ToHashDocument.new, :path => "shadowVm/#{id}" ) end end end end end
Version data entries
96 entries across 94 versions & 8 rubygems