mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
54 lines
1.1 KiB
Ruby
54 lines
1.1 KiB
Ruby
require 'fog/collection'
|
|
require 'fog/aws/models/compute/address'
|
|
|
|
module Fog
|
|
module AWS
|
|
class Compute
|
|
|
|
class Addresses < Fog::Collection
|
|
|
|
attribute :public_ip
|
|
attribute :server
|
|
|
|
model Fog::AWS::Compute::Address
|
|
|
|
def initialize(attributes)
|
|
@public_ip ||= []
|
|
super
|
|
end
|
|
|
|
def all(public_ip = @public_ip)
|
|
@public_ip = public_ip
|
|
data = connection.describe_addresses(public_ip).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
|
|
|
|
def get(public_ip)
|
|
if public_ip
|
|
all(public_ip).first
|
|
end
|
|
rescue Fog::Errors::NotFound
|
|
nil
|
|
end
|
|
|
|
def new(attributes = {})
|
|
if server
|
|
super({ :server => server }.merge!(attributes))
|
|
else
|
|
super(attributes)
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|