Class: Fog::Parsers::Compute::VcloudDirector::VmNetwork
- Inherits:
-
VcloudDirectorParser
- Object
- Nokogiri::XML::SAX::Document
- Base
- VcloudDirectorParser
- Fog::Parsers::Compute::VcloudDirector::VmNetwork
- Defined in:
- lib/fog/vcloud_director/parsers/compute/vm_network.rb
Overview
:xmlns_xsi=>"http://www.w3.org/2001/XMLSchema-instance", :name=>"DevOps - Dev Network Connection", :id=>"urn:vcloud:network:d5f47bbf-de27-4cf5-aaaa-56772f2ccd17", :type=>"application/vnd.vmware.vcloud.orgNetwork+xml", :href=> "https://example.com/api/network/d5f47bbf-de27-4cf5-aaaa-56772f2ccd17", :xsi_schemaLocation=> "http://www.vmware.com/vcloud/v1.5 http://10.194.1.65/api/v1.5/schema/master.xsd", :Link=> [{:rel=>"up", :type=>"application/vnd.vmware.vcloud.org+xml", :name=>"DevOps", :href=> "https://example.com/api/org/c6a4c623-c158-41cf-a87a-dbc1637ad55a", :type=>"application/vnd.vmware.vcloud.metadata+xml", :href=> "https://example.com/api/network/d5f47bbf-de27-4cf5-aaaa-56772f2ccd17/metadata"], :Description=>"", :Configuration=> {:IsInherited=>"true", :Gateway=>"10.192.0.1", :Netmask=>"255.255.252.0", :Dns1=>"10.192.0.11", :Dns2=>"10.192.0.12", :DnsSuffix=>"dev.ad.mdsol.com", :IpRanges=> {:IpRange=> {:StartAddress=>"10.192.0.100", :EndAddress=>"10.192.3.254"}}, :FenceMode=>"bridged", :RetainNetInfoAcrossDeployments=>"false"}}
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from VcloudDirectorParser
Methods inherited from Base
#attr_value, #characters, #end_element_namespace, #initialize, #start_element_namespace, #value
Constructor Details
This class inherits a constructor from Fog::Parsers::Base
Instance Method Details
#end_element(name) ⇒ Object
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
# File 'lib/fog/vcloud_director/parsers/compute/vm_network.rb', line 86 def end_element(name) case name when 'Info' @response[:info] = value when 'PrimaryNetworkConnectionIndex' @response[:primary_network_connection_index] = value.to_i when 'NetworkConnectionIndex' @response[:network_connection_index] = value.to_i when 'IpAddress' @response[:ip_address] = value when 'IsConnected' @response[:is_connected] = (value == "true") when 'MACAddress' @response[:mac_address] = value when 'IpAddressAllocationMode' @response[:ip_address_allocation_mode] = value end end |
#reset ⇒ Object
67 68 69 |
# File 'lib/fog/vcloud_director/parsers/compute/vm_network.rb', line 67 def reset @response = { } end |
#start_element(name, attributes) ⇒ Object
71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
# File 'lib/fog/vcloud_director/parsers/compute/vm_network.rb', line 71 def start_element(name, attributes) super case name when 'NetworkConnectionSection' network_connection_section = extract_attributes(attributes) @response[:type] = network_connection_section[:type] @response[:href] = network_connection_section[:href] @response[:id] = @response[:href].split('/')[-2] when 'NetworkConnection' network_connection = extract_attributes(attributes) @response[:network] = network_connection[:network] @response[:needs_customization] = ( network_connection[:needsCustomization] == "true" ) end end |