Class: Fog::Rackspace::NetworkingV2::Subnets

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

Instance Method Summary collapse

Instance Method Details

#allObject



9
10
11
12
# File 'lib/fog/rackspace/models/networking_v2/subnets.rb', line 9

def all
  data = service.list_subnets.body['subnets']
  load(data)
end

#get(id) ⇒ Object



14
15
16
17
18
19
# File 'lib/fog/rackspace/models/networking_v2/subnets.rb', line 14

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