Method: Fog::Vcloud::Compute::Networks#all

Defined in:
lib/fog/vcloud/models/compute/networks.rb

#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 = connection.default_vdc_href unless self.href
  data = nil
  if self.href =~ /\/vdc\//
    check_href!("Vdc")
    data = [connection.get_vdc(self.href).available_networks].flatten.compact.reject{|n| n == '' }
  elsif self.href =~ /\/org\//
    check_href!("Org")
    data = connection.get_organization(self.href).links.select{|l| l[:type] == network_type_id }
  elsif self.href =~ /\/vApp\//
    check_href!("Vapp")
    data = [(connection.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