Class: Fog::Terremark::Shared::Networks
- Inherits:
-
Collection
- Object
- Array
- Collection
- Fog::Terremark::Shared::Networks
- Defined in:
- lib/fog/terremark/models/shared/networks.rb
Instance Attribute Summary
Attributes inherited from Collection
Instance Method Summary collapse
Methods inherited from Collection
#clear, #create, #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 Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires
Constructor Details
This class inherits a constructor from Fog::Collection
Instance Method Details
#all ⇒ Object
21 22 23 24 25 26 |
# File 'lib/fog/terremark/models/shared/networks.rb', line 21 def all data = connection.get_vdc(vdc_id).body['AvailableNetworks'].map do |network| connection.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 = connection.get_network(network_id).body new(network) elsif !network_id nil end rescue Excon::Errors::Forbidden nil end |
#vdc_id ⇒ Object
38 39 40 |
# File 'lib/fog/terremark/models/shared/networks.rb', line 38 def vdc_id @vdc_id ||= connection.default_vdc_id end |