Class: Fog::Terremark::Shared::Networks

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/terremark/models/shared/networks.rb

Instance Attribute Summary

Attributes inherited from Collection

#service

Instance Method Summary collapse

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



21
22
23
24
25
26
# File 'lib/fog/terremark/models/shared/networks.rb', line 21

def all
  data = service.get_vdc(vdc_id).body['AvailableNetworks'].map do |network|
    service.get_network(network["href"].split("/").last).body
  end
  load(data)
end

#get(network_id) ⇒ Object



28
29
30
31
32
33
34
35
36
# File 'lib/fog/terremark/models/shared/networks.rb', line 28

def get(network_id)
  if network_id && network = service.get_network(network_id).body
    new(network)
  elsif !network_id
    nil
  end
rescue Excon::Errors::Forbidden
  nil
end

#vdc_idObject



38
39
40
# File 'lib/fog/terremark/models/shared/networks.rb', line 38

def vdc_id
  @vdc_id ||= service.default_vdc_id
end