Sha256: ae882b22b95bb6f6cd98eb292bddefb78341fb0c9933e93dfc386cafd74d3199

Contents?: true

Size: 604 Bytes

Versions: 6

Compression:

Stored size: 604 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(', ')
          ]
          @ignore_matchers = Awspec::Type::VpnGateway::STATES.map { |state| "be_#{state.tr('-', '_')}" }
          @describes = []
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
awspec-1.28.1 lib/awspec/generator/doc/type/vpn_gateway.rb
awspec-1.28.0 lib/awspec/generator/doc/type/vpn_gateway.rb
awspec-1.27.1 lib/awspec/generator/doc/type/vpn_gateway.rb
awspec-1.27.0 lib/awspec/generator/doc/type/vpn_gateway.rb
awspec-1.26.0 lib/awspec/generator/doc/type/vpn_gateway.rb
awspec-1.25.2 lib/awspec/generator/doc/type/vpn_gateway.rb