mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
57 lines
1.3 KiB
Ruby
57 lines
1.3 KiB
Ruby
module Fog
|
|
module AWS
|
|
class EC2
|
|
|
|
def addresses(attributes = {})
|
|
Fog::AWS::EC2::Addresses.new({
|
|
:connection => self
|
|
}.merge!(attributes))
|
|
end
|
|
|
|
class Addresses < Fog::Collection
|
|
|
|
attribute :public_ip
|
|
attribute :instance
|
|
|
|
model Fog::AWS::EC2::Address
|
|
|
|
def initialize(attributes)
|
|
@public_ip ||= []
|
|
super
|
|
end
|
|
|
|
def all(public_ip = @public_ip)
|
|
data = connection.describe_addresses(public_ip).body
|
|
addresses = Fog::AWS::EC2::Addresses.new({
|
|
:connection => connection,
|
|
:public_ip => public_ip
|
|
}.merge!(attributes))
|
|
data['addressesSet'].each do |address|
|
|
addresses << Fog::AWS::EC2::Address.new({
|
|
:collection => addresses,
|
|
:connection => connection
|
|
}.merge!(address))
|
|
end
|
|
if instance
|
|
addresses = addresses.select {|address| address.instance_id == instance.id}
|
|
end
|
|
addresses
|
|
end
|
|
|
|
def get(public_ip)
|
|
if public_ip
|
|
all(public_ip).first
|
|
end
|
|
rescue Excon::Errors::BadRequest
|
|
nil
|
|
end
|
|
|
|
def new(attributes = {})
|
|
super({ :instance => instance }.merge!(attributes))
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|