module Awspec::Helper::Finder::Elb
Public Instance Methods
Source
# File lib/awspec/helper/finder/elb.rb, line 6 def find_elb(id) res = elb_client.describe_load_balancers({ load_balancer_names: [id] }) res.load_balancer_descriptions.single_resource(id) rescue StandardError nil end
Source
# File lib/awspec/helper/finder/elb.rb, line 15 def find_elb_attribute(id) res = elb_client.describe_load_balancer_attributes({ load_balancer_name: id }) res.load_balancer_attributes rescue StandardError nil end
Source
# File lib/awspec/helper/finder/elb.rb, line 24 def select_elb_by_vpc_id(vpc_id) res = elb_client.describe_load_balancers res.load_balancer_descriptions.select do |lb| lb.vpc_id == vpc_id end end