Method: Awspec::Generator::Doc::Type::Subnet#initialize

Defined in:
lib/awspec/generator/doc/type/subnet.rb

#initializeSubnet



5
6
7
8
9
10
11
12
13
14
# File 'lib/awspec/generator/doc/type/subnet.rb', line 5

def initialize
  super
  @type = Awspec::Type::Subnet.new('my-route-table')
  @ret = @type.resource_via_client
  @matchers = [
    Awspec::Type::Subnet::STATES.map { |state| 'be_' + state.tr('-', '_') }.join(', ')
  ]
  @ignore_matchers = Awspec::Type::Subnet::STATES.map { |state| 'be_' + state.tr('-', '_') }
  @describes = []
end