Sha256: 2991f6aadc6e8bac39bea0bbcb0256178f2ae89cb828797586a5633b17a35ef1

Contents?: true

Size: 617 Bytes

Versions: 8

Compression:

Stored size: 617 Bytes

Contents

# frozen_string_literal: true

module Awspec::Generator
  module Doc
    module Type
      class RdsDbCluster < Base
        def initialize
          super
          @type_name = 'RdsDbCluster'
          @type = Awspec::Type::RdsDbCluster.new('my-rds-db-cluster')
          @ret = @type.resource_via_client
          @matchers = [
            Awspec::Type::RdsDbCluster::STATES.map { |state| "be_#{state.tr('-', '_')}" }.join(', ')
          ]
          @ignore_matchers = Awspec::Type::RdsDbCluster::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.30.0 lib/awspec/generator/doc/type/rds_db_cluster.rb
awspec-1.29.3 lib/awspec/generator/doc/type/rds_db_cluster.rb
awspec-1.29.2 lib/awspec/generator/doc/type/rds_db_cluster.rb
awspec-1.29.1 lib/awspec/generator/doc/type/rds_db_cluster.rb
awspec-1.29.0 lib/awspec/generator/doc/type/rds_db_cluster.rb
awspec-1.28.2 lib/awspec/generator/doc/type/rds_db_cluster.rb
awspec-1.28.1 lib/awspec/generator/doc/type/rds_db_cluster.rb
awspec-1.28.0 lib/awspec/generator/doc/type/rds_db_cluster.rb