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