Sha256: f2bee6146f5fd3e736c86bf37cf5616e4c2f2a2f5d58eccc92d72647eabfc370

Contents?: true

Size: 1.19 KB

Versions: 34

Compression:

Stored size: 1.19 KB

Contents

class AWS
  module Support
    module Formats
      TRUSTED_ADVISOR_CHECK_FORMAT = {
        'id'          => String,
        'name'        => String,
        'description' => String,
        'metadata'    => Array,
        'category'    => String,
      }

      FLAGGED_RESOURCE = {
        'isSuppressed' => Fog::Boolean,
        'metadata'     => Array,
        'region'       => String,
        'resourceId'   => String,
        'status'       => String
      }

      TRUSTED_ADVISOR_CHECK_RESULT_FORMAT = {
        'categorySpecificSummary' => Hash,
        'checkId'                 => String,
        'flaggedResources'        => [FLAGGED_RESOURCE],
        'resourcesSummary'        => {
          'resourcesFlagged'    => Integer,
          'resourcesIgnored'    => Integer,
          'resourcesProcessed'  => Integer,
          'resourcesSuppressed' => Integer
        },
        'status'                  => String,
        'timestamp'               => String
      }

      DESCRIBE_TRUSTED_ADVISOR_CHECKS = {
        'checks' => [TRUSTED_ADVISOR_CHECK_FORMAT]
      }

      DESCRIBE_TRUSTED_ADVISOR_CHECK_RESULT = {
        'result' => TRUSTED_ADVISOR_CHECK_RESULT_FORMAT
      }
    end
  end
end

Version data entries

34 entries across 32 versions & 2 rubygems

Version Path
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-aws-2.0.1/tests/requests/support/helper.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-aws-2.0.1/tests/requests/support/helper.rb
fog-aws-3.0.0 tests/requests/support/helper.rb
fog-aws-2.0.1 tests/requests/support/helper.rb
fog-aws-2.0.0 tests/requests/support/helper.rb
fog-aws-1.4.1 tests/requests/support/helper.rb
fog-aws-1.4.0 tests/requests/support/helper.rb
fog-aws-1.3.0 tests/requests/support/helper.rb
fog-aws-1.2.1 tests/requests/support/helper.rb
fog-aws-1.2.0 tests/requests/support/helper.rb
fog-aws-1.1.0 tests/requests/support/helper.rb
fog-aws-1.0.0 tests/requests/support/helper.rb
fog-aws-0.13.0 tests/requests/support/helper.rb
fog-aws-0.12.0 tests/requests/support/helper.rb