Sha256: f281d1e69ab10629b2e32694ad70e04c74b8daf1a5daa5222b08282f75df7130
Contents?: true
Size: 768 Bytes
Versions: 41
Compression:
Stored size: 768 Bytes
Contents
module Fog module Compute class VcloudDirector class Real # Retrieve the runtime info 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-RuntimeInfoSectionType.html # @since vCloud API version 1.5 def get_runtime_info_section_type(id) request( :expects => 200, :idempotent => true, :method => 'GET', :parser => Fog::ToHashDocument.new, :path => "vApp/#{id}/runtimeInfoSection" ) end end end end end
Version data entries
41 entries across 41 versions & 3 rubygems