Sha256: bf138c26a0e92baceaa187b3ce8ae5dcf1d0eb47665b45e21e9e6ee832363283
Contents?: true
Size: 1018 Bytes
Versions: 67
Compression:
Stored size: 1018 Bytes
Contents
module Fog module Compute class VcloudDirector class Real require 'fog/vcloud_director/parsers/compute/vm_network' # Retrieve the network connection section of a VM. # # @deprecated Use {#get_network_connection_system_section_vapp} # instead. # @todo Log deprecation warning. # # @param [String] id Object identifier of the VM. # @return [Excon::Response] # * body<~Hash>: # # @see http://pubs.vmware.com/vcd-51/topic/com.vmware.vcloud.api.reference.doc_51/doc/operations/GET-NetworkConnectionSystemSection-vApp.html # @since vCloud API version 0.9 def get_vm_network(id) request( :expects => 200, :idempotent => true, :method => 'GET', :parser => Fog::Parsers::Compute::VcloudDirector::VmNetwork.new, :path => "vApp/#{id}/networkConnectionSection/" ) end end end end end
Version data entries
67 entries across 67 versions & 5 rubygems