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