lib/fog/vcloud_director/requests/compute/get_vm_network.rb

Summary

Maintainability
A
15 mins
Test Coverage
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
      class Mock
        def get_vm_network(id)
          vapp    = get_vapp(id).body
          network = vapp[:NetworkConnectionSection]
          connection = network[:NetworkConnection]
          body = {
            :type => network[:type],
            :id   => network[:href].split('/')[-2],
            :href => network[:href],
            :info => network[:"ovf:Info"],
            :primary_network_connection_index => network[:PrimaryNetworkConnectionIndex],
            :network => connection[:network],
            :needs_customization => connection[:needsCustomization],
            :network_connection_index => connection[:NetworkConnectionIndex],
            :is_connected => connection[:IsConnected],
            :mac_address => connection[:MACAddress],
            :ip_address_allocation_mode => connection[:IpAddressAllocationMode]
          }
          Excon::Response.new(
            :status => 200,
            :headers => {'Content-Type' => "#{body[:type]};version=#{api_version}"},
            :body => body
          )
        end
      end
    end
  end
end