Sha256: e985326c9bebef280bffdf8a28f31ac31e2b64685b36b58093765bab8355c4ca
Contents?: true
Size: 565 Bytes
Versions: 13
Compression:
Stored size: 565 Bytes
Contents
# frozen_string_literal: true module Awspec::Generator module Doc module Type class Acm < Base def initialize super @type_name = 'Acm' @type = Awspec::Type::Acm.new('example.jp') @ret = @type.resource_via_client @matchers = [ Awspec::Type::Acm::STATUSES.map { |status| "be_#{status.downcase}" }.join(', ') ] @ignore_matchers = Awspec::Type::Acm::STATUSES.map { |status| "be_#{status.downcase}" } @describes = [] end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems