mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
95 lines
2.5 KiB
Ruby
95 lines
2.5 KiB
Ruby
require 'fog/aws/models/compute/address'
|
|
|
|
module Fog
|
|
module Compute
|
|
class AWS
|
|
class Addresses < Fog::Collection
|
|
attribute :filters
|
|
attribute :server
|
|
|
|
model Fog::Compute::AWS::Address
|
|
|
|
# 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 retrieved by running AWS.addresses.get("test"). See get method below.
|
|
#
|
|
|
|
def initialize(attributes)
|
|
self.filters ||= {}
|
|
super
|
|
end
|
|
|
|
# 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_arg = filters)
|
|
unless filters_arg.is_a?(Hash)
|
|
Fog::Logger.deprecation("all with #{filters_arg.class} param is deprecated, use all('public-ip' => []) instead [light_black](#{caller.first})[/]")
|
|
filters_arg = {'public-ip' => [*filters_arg]}
|
|
end
|
|
self.filters = filters_arg
|
|
data = service.describe_addresses(filters).body
|
|
load(
|
|
data['addressesSet'].map do |address|
|
|
address.reject {|key, value| value.nil? || value.empty? }
|
|
end
|
|
)
|
|
if server
|
|
self.replace(self.select {|address| address.server_id == server.id})
|
|
end
|
|
self
|
|
end
|
|
|
|
# Used to retrieve 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)
|
|
if public_ip
|
|
self.class.new(:service => service).all('public-ip' => public_ip).first
|
|
end
|
|
end
|
|
|
|
def new(attributes = {})
|
|
if server
|
|
super({ :server => server }.merge!(attributes))
|
|
else
|
|
super(attributes)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|