mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
d48d376e9c
* take the liberty of correcting Aws naming
37 lines
1.1 KiB
Ruby
37 lines
1.1 KiB
Ruby
require 'fog/aws/models/elb/load_balancer'
|
|
module Fog
|
|
module AWS
|
|
class ELB
|
|
class LoadBalancers < Fog::Collection
|
|
model Fog::AWS::ELB::LoadBalancer
|
|
|
|
# Creates a new load balancer
|
|
def initialize(attributes={})
|
|
super
|
|
end
|
|
|
|
def all
|
|
result = []
|
|
marker = nil
|
|
finished = false
|
|
while !finished
|
|
data = service.describe_load_balancers('Marker' => marker).body
|
|
result.concat(data['DescribeLoadBalancersResult']['LoadBalancerDescriptions'])
|
|
marker = data['DescribeLoadBalancersResult']['NextMarker']
|
|
finished = marker.nil?
|
|
end
|
|
load(result) # data is an array of attribute hashes
|
|
end
|
|
|
|
def get(identity)
|
|
if identity
|
|
data = service.describe_load_balancers('LoadBalancerNames' => identity).body['DescribeLoadBalancersResult']['LoadBalancerDescriptions'].first
|
|
new(data)
|
|
end
|
|
rescue Fog::AWS::ELB::NotFound
|
|
nil
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|