1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/models/elb/backend_server_descriptions.rb
Paul Thornthwaite ec8b940b2c Standardise on collection methods
Done with `rubocop --auto-correct --only CollectionMethods`
2014-05-26 16:22:07 +01:00

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