1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/openstack/models/network/subnets.rb
Ferran Rodenas 0c34ca84f5 [openstack|network] Add support for OpenStack Quantum
Added support for OpenStack Network Connectivity (Quantum).
2012-09-22 00:14:40 +02:00

25 lines
No EOL
533 B
Ruby

require 'fog/core/collection'
require 'fog/openstack/models/network/subnet'
module Fog
module Network
class OpenStack
class Subnets < Fog::Collection
model Fog::Network::OpenStack::Subnet
def all
load(connection.list_subnets.body['subnets'])
end
def get(subnet_id)
if subnet = connection.get_subnet(subnet_id).body['subnet']
new(subnet)
end
rescue Fog::Network::OpenStack::NotFound
nil
end
end
end
end
end