Sha256: a89d3a5dde24f8b30bfb7d3992f5bbd6f6202c121a10308d65d33a6f22abeb27
Contents?: true
Size: 893 Bytes
Versions: 56
Compression:
Stored size: 893 Bytes
Contents
module Awspec::Generator module Doc module Type class BatchComputeEnvironment < Base def initialize super @type_name = 'BatchComputeEnvironment' @type = Awspec::Type::BatchComputeEnvironment.new('my-batch-compute-environment') @ret = @type.resource_via_client @matchers = [ Awspec::Type::BatchComputeEnvironment::STATES.map { |state| 'be_' + state.downcase }.join(', '), Awspec::Type::BatchComputeEnvironment::TYPES.map { |type| 'be_' + type.downcase }.join(', ') ] @ignore_matchers = [ Awspec::Type::BatchComputeEnvironment::STATES.map { |state| 'be_' + state.downcase }.join(', '), Awspec::Type::BatchComputeEnvironment::TYPES.map { |type| 'be_' + type.downcase }.join(', ') ] @describes = [] end end end end end
Version data entries
56 entries across 56 versions & 3 rubygems