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

25 lines
533 B
Ruby
Raw Normal View History

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