mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
33 lines
672 B
Ruby
33 lines
672 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/openstack/models/compute/address'
|
|
|
|
module Fog
|
|
module Compute
|
|
class OpenStack
|
|
|
|
class Addresses < Fog::Collection
|
|
|
|
model Fog::Compute::OpenStack::Address
|
|
|
|
def all
|
|
load(connection.list_all_addresses.body['floating_ips'])
|
|
end
|
|
|
|
def get(address_id)
|
|
if address = connection.get_address(address_id).body['floating_ip']
|
|
new(address)
|
|
end
|
|
rescue Fog::Compute::OpenStack::NotFound
|
|
nil
|
|
end
|
|
|
|
def get_address_pools
|
|
connection.list_address_pools.body['floating_ip_pools']
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
|