Class: Fog::Vcloud::Compute::Networks

Inherits:
Fog::Vcloud::Collection show all
Defined in:
lib/fog/vcloud/models/compute/networks.rb

Instance Attribute Summary

Attributes inherited from Collection

#service

Instance Method Summary collapse

Methods inherited from Fog::Vcloud::Collection

#check_href!, #load

Methods inherited from Collection

#clear, #create, #destroy, #initialize, #inspect, #load, model, #model, #new, #reload, #table, #to_json

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

This class inherits a constructor from Fog::Collection

Instance Method Details

#allObject



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/fog/vcloud/models/compute/networks.rb', line 15

def all
  self.href = service.default_vdc_href unless self.href
  data = nil
  if self.href =~ /\/vdc\//
    check_href!("Vdc")
    data = [service.get_vdc(self.href).available_networks].flatten.compact.reject{|n| n == '' }
  elsif self.href =~ /\/org\//
    check_href!("Org")
    data = service.get_organization(self.href).links.select{|l| l[:type] == network_type_id }
  elsif self.href =~ /\/vApp\//
    check_href!("Vapp")
    data = [(service.get_vapp(self.href).network_configs||{})[:NetworkConfig]].flatten.compact.collect{|n| n[:Configuration][:ParentNetwork] unless n[:Configuration].nil? }.compact
  end
  load([*data]) unless data.nil?
end

#get(uri) ⇒ Object



31
32
33
34
35
# File 'lib/fog/vcloud/models/compute/networks.rb', line 31

def get(uri)
  service.get_network(uri)
rescue Fog::Errors::NotFound
  nil
end