Sha256: 71d7ad9ef59025a799d724ccb06e349f23b65bb343fb62bf9cd012d0f054cbd3
Contents?: true
Size: 811 Bytes
Versions: 41
Compression:
Stored size: 811 Bytes
Contents
module Fog module Compute class VcloudDirector class Real # Retrieves the guest customization section of a VM. # # @param [String] id Object identifier of the VM. # @return [Excon::Response] # * body<~Hash>: # # @see http://pubs.vmware.com/vcd-51/topic/com.vmware.vcloud.api.reference.doc_51/doc/operations/GET-GuestCustomizationSystemSection-vApp.html # @since vCloud API version 1.0 def get_guest_customization_system_section_vapp(id) request( :expects => 200, :idempotent => true, :method => 'GET', :parser => Fog::ToHashDocument.new, :path => "vApp/#{id}/guestCustomizationSection" ) end end end end end
Version data entries
41 entries across 41 versions & 3 rubygems