Sha256: 87ee7f5db8fa1553a5789e18972b08ad832bb170886dbf1d363b0e45f2f32970

Contents?: true

Size: 548 Bytes

Versions: 13

Compression:

Stored size: 548 Bytes

Contents

# frozen_string_literal: true

module Awspec::Generator
  module Doc
    module Type
      class Ami < Base
        def initialize
          super
          @type_name = 'AMI'
          @type = Awspec::Type::Ami.new('my-ami')
          @ret = @type.resource_via_client
          @matchers = [
            Awspec::Type::Ami::STATES.map { |state| "be_#{state}" }.join(', ')
          ]
          @ignore_matchers = Awspec::Type::Ami::STATES.map { |state| "be_#{state.tr('-', '_')}" }
          @describes = []
        end
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
awspec-1.31.0 lib/awspec/generator/doc/type/ami.rb
awspec-1.30.0 lib/awspec/generator/doc/type/ami.rb
awspec-1.29.3 lib/awspec/generator/doc/type/ami.rb
awspec-1.29.2 lib/awspec/generator/doc/type/ami.rb
awspec-1.29.1 lib/awspec/generator/doc/type/ami.rb
awspec-1.29.0 lib/awspec/generator/doc/type/ami.rb
awspec-1.28.2 lib/awspec/generator/doc/type/ami.rb
awspec-1.28.1 lib/awspec/generator/doc/type/ami.rb
awspec-1.28.0 lib/awspec/generator/doc/type/ami.rb
awspec-1.27.1 lib/awspec/generator/doc/type/ami.rb
awspec-1.27.0 lib/awspec/generator/doc/type/ami.rb
awspec-1.26.0 lib/awspec/generator/doc/type/ami.rb
awspec-1.25.2 lib/awspec/generator/doc/type/ami.rb