Sha256: 41d253527476d17a7492eeacb24cd7887fc9db48d943f268c560f5a602e59fda

Contents?: true

Size: 1.62 KB

Versions: 34

Compression:

Stored size: 1.62 KB

Contents

module Awspec::Type
  class Elb < Base
    def initialize(id)
      super
      @resource_via_client = find_elb(id)
      @id = @resource_via_client.load_balancer_name if @resource_via_client
    end

    health_check_options = %w(
      target interval timeout
      unhealthy_threshold healthy_threshold
    )

    health_check_options.each do |option|
      define_method 'health_check_' + option do
        @resource_via_client.health_check[option]
      end
    end

    def has_ec2?(id)
      ec2 = find_ec2(id)
      @resource_via_client.instances.find do |instance|
        instance.instance_id = ec2.instance_id
      end if ec2
    end

    def has_security_group?(sg_id)
      sgs = @resource_via_client.security_groups
      ret = sgs.find do |sg|
        sg == sg_id
      end
      return true if ret
      sg2 = find_security_group(sg_id)
      return false unless sg2.tag_name == sg_id || sg2.group_name == sg_id
      sgs.find do |sg|
        sg == sg2.group_name
      end
    end

    def has_subnet?(subnet_id)
      subnets = @resource_via_client.subnets
      ret = subnets.find do |s|
        s == subnet_id
      end
      return true if ret
      res = find_subnet(subnet_id)
      ret = subnets.find do |s|
        s == res.subnet_id
      end
    end

    def has_listener?(protocol:, port:, instance_protocol:, instance_port:)
      @resource_via_client.listener_descriptions.find do |desc|
        listener = desc.listener
        listener.protocol == protocol && listener.load_balancer_port == port && \
          listener.instance_protocol == instance_protocol && listener.instance_port == instance_port
      end
    end
  end
end

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
awspec-0.55.0 lib/awspec/type/elb.rb
awspec-0.54.0 lib/awspec/type/elb.rb
awspec-0.52.4 lib/awspec/type/elb.rb
awspec-0.52.3 lib/awspec/type/elb.rb
awspec-0.52.2 lib/awspec/type/elb.rb
awspec-0.52.1 lib/awspec/type/elb.rb
awspec-0.52.0 lib/awspec/type/elb.rb
awspec-0.51.0 lib/awspec/type/elb.rb
awspec-0.50.0 lib/awspec/type/elb.rb
awspec-0.49.0 lib/awspec/type/elb.rb
awspec-0.48.0 lib/awspec/type/elb.rb
awspec-0.47.0 lib/awspec/type/elb.rb
awspec-0.46.0 lib/awspec/type/elb.rb
awspec-0.45.0 lib/awspec/type/elb.rb
awspec-0.44.0 lib/awspec/type/elb.rb
awspec-0.43.0 lib/awspec/type/elb.rb
awspec-0.42.0 lib/awspec/type/elb.rb
awspec-0.41.0 lib/awspec/type/elb.rb
awspec-0.40.0 lib/awspec/type/elb.rb
awspec-0.39.0 lib/awspec/type/elb.rb