Sha256: 323226897b8393a0119875a0c5fd286855161cab516aef72c3e1e6418bd75ac7

Contents?: true

Size: 693 Bytes

Versions: 12

Compression:

Stored size: 693 Bytes

Contents

# frozen_string_literal: true

module Awspec::Generator
  module Doc
    module Type
      class NetworkInterface < Base
        def initialize
          super
          @type_name = 'NetworkInterface'
          @type = Awspec::Type::NetworkInterface.new('eni-12ab3cde')
          @ret = @type.resource_via_client
          @matchers = [
            Awspec::Type::NetworkInterface::STATES.map { |state| "be_#{state.tr('-', '_')}" }.join(', '),
            'belong_to_vpc',
            'belong_to_subnet'
          ]
          @ignore_matchers = Awspec::Type::NetworkInterface::STATES.map { |state| "be_#{state.tr('-', '_')}" }
          @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/network_interface.rb
awspec-1.29.3 lib/awspec/generator/doc/type/network_interface.rb
awspec-1.29.2 lib/awspec/generator/doc/type/network_interface.rb
awspec-1.29.1 lib/awspec/generator/doc/type/network_interface.rb
awspec-1.29.0 lib/awspec/generator/doc/type/network_interface.rb
awspec-1.28.2 lib/awspec/generator/doc/type/network_interface.rb
awspec-1.28.1 lib/awspec/generator/doc/type/network_interface.rb
awspec-1.28.0 lib/awspec/generator/doc/type/network_interface.rb
awspec-1.27.1 lib/awspec/generator/doc/type/network_interface.rb
awspec-1.27.0 lib/awspec/generator/doc/type/network_interface.rb
awspec-1.26.0 lib/awspec/generator/doc/type/network_interface.rb
awspec-1.25.2 lib/awspec/generator/doc/type/network_interface.rb