Class: Fog::Rackspace::Networking::Networks
- Inherits:
-
Collection
- Object
- Collection
- Fog::Rackspace::Networking::Networks
- Defined in:
- lib/fog/rackspace/models/networking/networks.rb
Instance Method Summary collapse
Instance Method Details
#all ⇒ Object
9 10 11 12 |
# File 'lib/fog/rackspace/models/networking/networks.rb', line 9 def all data = service.list_networks.body['networks'] load(data) end |
#get(id) ⇒ Object
14 15 16 17 18 19 |
# File 'lib/fog/rackspace/models/networking/networks.rb', line 14 def get(id) data = service.get_network(id).body['network'] new(data) rescue Fog::Rackspace::Networking::NotFound nil end |