class Awspec::Type::NlbListener

Public Instance Methods

has_rule?(rule_id = nil, priority = nil, conditions = nil, actions = nil) click to toggle source
# File lib/awspec/type/nlb_listener.rb, line 13
    def has_rule?(rule_id = nil, priority = nil, conditions = nil, actions = nil)
      rules = select_rule_by_nlb_listener_id(id)
      ret = rules.select do |rule|
        conditions = [conditions] if conditions.is_a?(Hash)
        actions = [actions] if actions.is_a?(Hash)
        next false if !rule_id.nil? && rule.rule_arn != rule_id
        next false if !priority.nil? && rule.priority != priority

        unless conditions.nil?
          next false unless conditions.map do |condition|
            rule_conds = rule.conditions.select { |rule_cond| rule_cond[:field] == condition[:field] }
            next if rule_conds.empty?
            next unless rule_conds.reject { |rule_cond| condition[:values] == rule_cond[:values] }.empty?

            condition
          end.compact.size == conditions.size
        end
        unless actions.nil?
          actions = actions.map do |action|
            if action.key?(:target_group_name)
              target_group = find_nlb_target_group(action[:target_group_name])
              action[:target_group_arn] = target_group.target_group_arn
              action.delete(:target_group_name)
            end
            action
          end
          next false if rule.actions.map(&:to_h).sort_by(&:to_s) != actions.sort_by(&:to_s)
        end
        true
      end
      ret.single_resource("rule_id = #{rule_id}, priority = #{priority}, \
conditions = #{conditions}, actions = #{actions}")
    end
id() click to toggle source
# File lib/awspec/type/nlb_listener.rb, line 9
def id
  @id ||= resource_via_client.listener_arn if resource_via_client
end
resource_via_client() click to toggle source
# File lib/awspec/type/nlb_listener.rb, line 5
def resource_via_client
  @resource_via_client ||= find_nlb_listener(@display_name)
end