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