Class: Fog::Rackspace::NetworkingV2::Networks

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

Instance Method Summary collapse

Instance Method Details

#allObject



9
10
11
12
# File 'lib/fog/rackspace/models/networking_v2/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_v2/networks.rb', line 14

def get(id)
  data = service.show_network(id).body['network']
  new(data)
rescue Fog::Rackspace::NetworkingV2::NotFound
  nil
end