Sha256: 59e22a02856a442d75c58f8199182712c2b6f251c70e32909fa3a0b0103c871e

Contents?: true

Size: 975 Bytes

Versions: 8

Compression:

Stored size: 975 Bytes

Contents

module OVIRT
 class Network < BaseObject
    attr_reader :description, :datacenter, :cluster, :vlan_id, :mtu, :stp, :usages, :status

    def initialize(client, xml)
      super(client, xml[:id], xml[:href], (xml/'name').first.text)
      parse_xml_attributes!(xml)
      self
    end

    private

    def parse_xml_attributes!(xml)
      @description = ((xml/'description').first.text rescue nil)
      @stp = ((xml/'stp').first.text rescue false)
      @mtu = ((xml/'mtu').first.text rescue nil)
      @vlan_id = ((xml/'vlan').first[:id] rescue nil)
      @usages = ((xml/'usages/usage').collect{ |usage| usage.text } rescue [])
      @datacenter = Link::new(@client, (xml/'data_center').first[:id], (xml/'data_center').first[:href]) unless (xml/'data_center').empty?
      @cluster = Link::new(@client, (xml/'cluster').first[:id], (xml/'cluster').first[:href]) unless (xml/'cluster').empty?
      @status = ((xml/'status/state').first.text rescue nil)
    end

  end
end

Version data entries

8 entries across 6 versions & 2 rubygems

Version Path
rbovirt-0.1.7 lib/ovirt/network.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/rbovirt-0.1.6/lib/ovirt/network.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/rbovirt-0.1.6/lib/ovirt/network.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/rbovirt-0.1.6/lib/ovirt/network.rb
rbovirt-0.1.6 lib/ovirt/network.rb
rbovirt-0.1.5 lib/ovirt/network.rb
rbovirt-0.1.4 lib/ovirt/network.rb
rbovirt-0.1.3 lib/ovirt/network.rb