Sha256: ef919b02cc666aaaacb4e9c43909f96732b4c8f130d90f611f91ea83b1f1c66e
Contents?: true
Size: 641 Bytes
Versions: 10
Compression:
Stored size: 641 Bytes
Contents
# frozen_string_literal: true module Awspec::Generator module Doc module Type class RdsGlobalCluster < Base def initialize super @type_name = 'RdsGlobalCluster' @type = Awspec::Type::RdsGlobalCluster.new('my-rds-global-cluster') @ret = @type.resource_via_client @matchers = [ Awspec::Type::RdsGlobalCluster::STATES.map { |state| "be_#{state.tr('-', '_')}" }.join(', ') ] @ignore_matchers = Awspec::Type::RdsGlobalCluster::STATES.map { |state| "be_#{state.tr('-', '_')}" } @describes = [] end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems