Sha256: 6cb6620eed8b78e077fd048d861fb7e9795816ae9ace0358e20fefe43a86e5f4

Contents?: true

Size: 564 Bytes

Versions: 12

Compression:

Stored size: 564 Bytes

Contents

# frozen_string_literal: true

module Awspec::Generator
  module Doc
    module Type
      class Nlb < Base
        def initialize
          super
          @type_name = 'NLB'
          @type = Awspec::Type::Nlb.new('my-nlb')
          @ret = @type.resource_via_client
          @matchers = [
            Awspec::Type::Nlb::STATES.map { |state| "be_#{state}" }.join(', '),
            'belong_to_vpc'
          ]
          @ignore_matchers = Awspec::Type::Nlb::STATES.map { |state| "be_#{state}" }
          @describes = []
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
awspec-1.30.0 lib/awspec/generator/doc/type/nlb.rb
awspec-1.29.3 lib/awspec/generator/doc/type/nlb.rb
awspec-1.29.2 lib/awspec/generator/doc/type/nlb.rb
awspec-1.29.1 lib/awspec/generator/doc/type/nlb.rb
awspec-1.29.0 lib/awspec/generator/doc/type/nlb.rb
awspec-1.28.2 lib/awspec/generator/doc/type/nlb.rb
awspec-1.28.1 lib/awspec/generator/doc/type/nlb.rb
awspec-1.28.0 lib/awspec/generator/doc/type/nlb.rb
awspec-1.27.1 lib/awspec/generator/doc/type/nlb.rb
awspec-1.27.0 lib/awspec/generator/doc/type/nlb.rb
awspec-1.26.0 lib/awspec/generator/doc/type/nlb.rb
awspec-1.25.2 lib/awspec/generator/doc/type/nlb.rb