Sha256: 417d40c3cfa1879ed4be9ac71bcb55758f235293fb61e04beb2c3fa4555a01db

Contents?: true

Size: 685 Bytes

Versions: 8

Compression:

Stored size: 685 Bytes

Contents

module Awspec::Generator
  module Doc
    module Type
      class Elasticache < Base
        def initialize
          super
          @type_name = 'Elasticache'
          @type = Awspec::Type::Elasticache.new('my-rep-group-001')
          @ret = @type.resource
          @matchers = [
            Awspec::Type::Elasticache::STATES.map { |state| 'be_' + state.tr('-', '_') }.join(', '),
            'belong_to_vpc',
            'belong_to_replication_group',
            'belong_to_cache_subnet_group'
          ]
          @ignore_matchers = Awspec::Type::Elasticache::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-0.25.3 lib/awspec/generator/doc/type/elasticache.rb
awspec-0.25.2 lib/awspec/generator/doc/type/elasticache.rb
awspec-0.25.1 lib/awspec/generator/doc/type/elasticache.rb
awspec-0.25.0 lib/awspec/generator/doc/type/elasticache.rb
awspec-0.24.2 lib/awspec/generator/doc/type/elasticache.rb
awspec-0.24.1 lib/awspec/generator/doc/type/elasticache.rb
awspec-0.24.0 lib/awspec/generator/doc/type/elasticache.rb
awspec-0.23.0 lib/awspec/generator/doc/type/elasticache.rb