Sha256: bae4e060638155d431f73907a5c34537e91cde484cb5a5b961becaed97ca312e
Contents?: true
Size: 803 Bytes
Versions: 2
Compression:
Stored size: 803 Bytes
Contents
module Fog module VcloudDirector class Compute 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
2 entries across 2 versions & 1 rubygems