2012-02-16 03:54:19 -05:00
|
|
|
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
|
|
|
|
|
2012-03-14 02:53:47 -04:00
|
|
|
def all
|
|
|
|
load(connection.list_all_addresses.body['floating_ips'])
|
2012-02-16 03:54:19 -05:00
|
|
|
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
|
|
|
|
|
2012-03-14 02:53:47 -04:00
|
|
|
def get_address_pools
|
|
|
|
connection.list_address_pools.body['floating_ip_pools']
|
|
|
|
end
|
|
|
|
|
2012-02-16 03:54:19 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|