mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
0c34ca84f5
Added support for OpenStack Network Connectivity (Quantum).
25 lines
No EOL
533 B
Ruby
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 |