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
fog-aws-3.12.0 tests/requests/support/helper.rb
fog-aws-3.11.0 tests/requests/support/helper.rb
fog-aws-3.10.0 tests/requests/support/helper.rb
fog-aws-3.9.0 tests/requests/support/helper.rb
fog-aws-3.8.0 tests/requests/support/helper.rb
fog-aws-3.7.0 tests/requests/support/helper.rb
fog-aws-3.6.7 tests/requests/support/helper.rb
fog-aws-3.6.6 tests/requests/support/helper.rb
fog-aws-3.6.5 tests/requests/support/helper.rb
fog-aws-3.6.4 tests/requests/support/helper.rb
fog-aws-3.6.3 tests/requests/support/helper.rb
fog-aws-3.6.2 tests/requests/support/helper.rb
fog-aws-3.5.2 tests/requests/support/helper.rb
fog-aws-3.5.1 tests/requests/support/helper.rb
fog-aws-3.5.0 tests/requests/support/helper.rb
fog-aws-3.4.0 tests/requests/support/helper.rb
fog-aws-3.3.0 tests/requests/support/helper.rb
fog-aws-3.2.0 tests/requests/support/helper.rb
fog-aws-3.1.0 tests/requests/support/helper.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-aws-2.0.1/tests/requests/support/helper.rb