Sha256: fbd01bbdda2190e1859e119c352b03abfafd7ad18e8a98758e1c9680b13aba8b
Contents?: true
Size: 803 Bytes
Versions: 96
Compression:
Stored size: 803 Bytes
Contents
module Fog module Compute class VcloudDirector class Real # Retrieve the network section of a vApp template. # # @param [String] id The object identifier of the vApp template. # @return [Excon::Response] # * body<~Hash>: # # @see http://pubs.vmware.com/vcd-51/topic/com.vmware.vcloud.api.reference.doc_51/doc/operations/GET-NetworkSection-vAppTemplate.html # @since vCloud API version 0.9 def get_network_section_vapp_template(id) request( :expects => 200, :idempotent => true, :method => 'GET', :parser => Fog::ToHashDocument.new, :path => "vAppTemplate/#{id}/networkSection/" ) end end end end end
Version data entries
96 entries across 94 versions & 8 rubygems