Sha256: f3f36d90bb9baaf6203092958ae8306198226afc6b1e6671ab3df021fd460f7c
Contents?: true
Size: 760 Bytes
Versions: 96
Compression:
Stored size: 760 Bytes
Contents
module Fog module Compute class VcloudDirector class Real # Retrieve the network section of a vApp. # # @param [String] id The 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-NetworkSection-vApp.html # @since vCloud API version 0.9 def get_network_section_vapp(id) request( :expects => 200, :idempotent => true, :method => 'GET', :parser => Fog::ToHashDocument.new, :path => "vApp/#{id}/networkSection/" ) end end end end end
Version data entries
96 entries across 94 versions & 8 rubygems