Sha256: c8002abdf2b700a5995ba9062efc56800945d916fab1e1310a608d5f9639e82a

Contents?: true

Size: 633 Bytes

Versions: 8

Compression:

Stored size: 633 Bytes

Contents

# frozen_string_literal: true

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

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
awspec-1.32.0 lib/awspec/generator/doc/type/vpn_gateway.rb
awspec-1.31.0 lib/awspec/generator/doc/type/vpn_gateway.rb
awspec-1.30.0 lib/awspec/generator/doc/type/vpn_gateway.rb
awspec-1.29.3 lib/awspec/generator/doc/type/vpn_gateway.rb
awspec-1.29.2 lib/awspec/generator/doc/type/vpn_gateway.rb
awspec-1.29.1 lib/awspec/generator/doc/type/vpn_gateway.rb
awspec-1.29.0 lib/awspec/generator/doc/type/vpn_gateway.rb
awspec-1.28.2 lib/awspec/generator/doc/type/vpn_gateway.rb