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
20 lines
428 B
Ruby
20 lines
428 B
Ruby
require 'fog/aws/models/elb/backend_server_description'
|
|
module Fog
|
|
module AWS
|
|
class ELB
|
|
class BackendServerDescriptions < Fog::Collection
|
|
model Fog::AWS::ELB::BackendServerDescription
|
|
|
|
attr_accessor :data, :load_balancer
|
|
|
|
def all
|
|
load(data)
|
|
end
|
|
|
|
def get(instance_port)
|
|
all.find{|e| e.instance_port == instance_port}
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|