Sha256: 2d7049a2f444f07cf6af3b5b16de5ef8bb8db7dfa90560c10cc73b79bea5d0a2
Contents?: true
Size: 829 Bytes
Versions: 96
Compression:
Stored size: 829 Bytes
Contents
module Fog module Compute class VcloudDirector class Real # Retrieve the network config 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-NetworkConfigSection-vAppTemplate.html # @since vCloud API version 0.9 def get_network_config_section_vapp_template(id) request( :expects => 200, :idempotent => true, :method => 'GET', :parser => Fog::ToHashDocument.new, :path => "vAppTemplate/#{id}/networkConfigSection/" ) end end end end end
Version data entries
96 entries across 94 versions & 8 rubygems