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/aws/models/compute/addresses.rb

101 lines
2.6 KiB
Ruby
Raw Normal View History

2010-10-04 17:02:08 -04:00
require 'fog/core/collection'
2010-09-08 17:40:02 -04:00
require 'fog/aws/models/compute/address'
2010-03-16 18:46:21 -04:00
2009-08-13 01:33:35 -04:00
module Fog
module AWS
2010-09-08 17:40:02 -04:00
class Compute
2009-08-13 01:33:35 -04:00
class Addresses < Fog::Collection
attribute :filters
2010-01-08 14:29:07 -05:00
attribute :server
2010-09-08 17:40:02 -04:00
model Fog::AWS::Compute::Address
2010-11-29 18:44:44 -05:00
# Used to create an IP address
#
# ==== Returns
#
#>> AWS.addresses.create
# <Fog::AWS::Compute::Address
# public_ip="4.88.524.95",
# server_id=nil
# >
#
# The IP address can be retreived by running AWS.addresses.get("test"). See get method below.
#
def initialize(attributes)
self.filters ||= {}
super
end
2010-11-29 18:44:44 -05:00
# AWS.addresses.all
#
# ==== Returns
#
# Returns an array of all IP addresses
#
#>> AWS.addresses.all
# <Fog::AWS::Compute::Addresses
# filters={},
# server=nil
# [
# <Fog::AWS::Compute::Address
# public_ip="76.7.46.54",
# server_id=nil
# >,
# .......
# <Fog::AWS::Compute::Address
# public_ip="4.88.524.95",
# server_id=nil
# >
# ]
# >
#>>
def all(filters = filters)
unless filters.is_a?(Hash)
Formatador.display_line("[yellow][WARN] all with #{filters.class} param is deprecated, use all('public-ip' => []) instead[/] [light_black](#{caller.first})[/]")
filters = {'public-ip' => [*filters]}
end
self.filters = filters
data = connection.describe_addresses(filters).body
load(
data['addressesSet'].map do |address|
address.reject {|key, value| value.nil? || value.empty? }
end
)
2010-01-08 14:29:07 -05:00
if server
self.replace(self.select {|address| address.server_id == server.id})
2009-10-06 21:55:39 -04:00
end
self
2009-08-13 01:33:35 -04:00
end
2010-11-29 18:44:44 -05:00
# Used to retreive an IP address
#
# public_ip is required to get the associated IP information.
#
# You can run the following command to get the details:
# AWS.addresses.get("76.7.46.54")
def get(public_ip)
2009-10-22 23:46:15 -04:00
if public_ip
self.class.new(:connection => connection).all('public-ip' => public_ip).first
2009-10-22 23:46:15 -04:00
end
end
def new(attributes = {})
2010-01-08 14:29:07 -05:00
if server
super({ :server => server }.merge!(attributes))
else
super(attributes)
end
end
2009-08-13 01:33:35 -04:00
end
end
end
end