Class: Fog::Network::OpenStack::Networks

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

Instance Attribute Summary

Attributes inherited from Collection

#service

Instance Method Summary collapse

Methods inherited from Collection

#clear, #create, #destroy, #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

#initialize(attributes) ⇒ Networks

Returns a new instance of Networks.



13
14
15
16
# File 'lib/fog/openstack/models/network/networks.rb', line 13

def initialize(attributes)
  self.filters ||= {}
  super
end

Instance Method Details

#all(filters = filters) ⇒ Object



18
19
20
21
# File 'lib/fog/openstack/models/network/networks.rb', line 18

def all(filters = filters)
  self.filters = filters
  load(service.list_networks(filters).body['networks'])
end

#get(network_id) ⇒ Object



23
24
25
26
27
28
29
# File 'lib/fog/openstack/models/network/networks.rb', line 23

def get(network_id)
  if network = service.get_network(network_id).body['network']
    new(network)
  end
rescue Fog::Network::OpenStack::NotFound
  nil
end