Amazon CodeGuru Security API

The Amazon CodeGuru Security REST API.

OpenAPI Specification

amazon-codeguru-security-openapi-original.yaml Raw ↑
openapi: 3.0.0
info:
  version: '2018-05-10'
  x-release: v4
  title: Amazon CodeGuru Security
  description: '<note> <p>Amazon CodeGuru Security is in preview release and is subject to change.</p> </note> <p>This section provides documentation for the Amazon CodeGuru Security API operations. CodeGuru
    Security is a service that uses program analysis and machine learning to detect security policy violations and vulnerabilities, and recommends ways to address these security risks.</p> <p>By proactively
    detecting and providing recommendations for addressing security risks, CodeGuru Security improves the overall security of your application code. For more information about CodeGuru Security, see the
    <a href="https://docs.aws.amazon.com/codeguru/latest/security-ug/what-is-codeguru-security.html">Amazon CodeGuru Security User Guide</a>. </p>'
  x-logo:
    url: 'https://twitter.com/awscloud/profile_image?size=original'
    backgroundColor: '#FFFFFF'
  termsOfService: 'https://aws.amazon.com/service-terms/'
  contact:
    name: Mike Ralphson
    email: mike.ralphson@gmail.com
    url: 'https://github.com/mermade/aws2openapi'
    x-twitter: PermittedSoc
  license:
    name: Apache 2.0 License
    url: 'http://www.apache.org/licenses/'
  x-providerName: amazonaws.com
  x-serviceName: codeguru-security
  x-aws-signingName: codeguru-security
  x-origin:
  - contentType: application/json
    url: 'https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/codeguru-security-2018-05-10.normal.json'
    converter:
      url: 'https://github.com/mermade/aws2openapi'
      version: 1.0.0
    x-apisguru-driver: external
  x-apiClientRegistration:
    url: 'https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct'
  x-apisguru-categories:
  - cloud
  x-preferred: true
externalDocs:
  description: Amazon Web Services documentation
  url: 'https://docs.aws.amazon.com/codeguru-security/'
servers:
- url: 'http://codeguru-security.{region}.amazonaws.com'
  variables:
    region:
      description: The AWS region
      enum:
      - us-east-1
      - us-east-2
      - us-west-1
      - us-west-2
      - us-gov-west-1
      - us-gov-east-1
      - ca-central-1
      - eu-north-1
      - eu-west-1
      - eu-west-2
      - eu-west-3
      - eu-central-1
      - eu-south-1
      - af-south-1
      - ap-northeast-1
      - ap-northeast-2
      - ap-northeast-3
      - ap-southeast-1
      - ap-southeast-2
      - ap-east-1
      - ap-south-1
      - sa-east-1
      - me-south-1
      default: us-east-1
  description: The Amazon CodeGuru Security multi-region endpoint
- url: 'https://codeguru-security.{region}.amazonaws.com'
  variables:
    region:
      description: The AWS region
      enum:
      - us-east-1
      - us-east-2
      - us-west-1
      - us-west-2
      - us-gov-west-1
      - us-gov-east-1
      - ca-central-1
      - eu-north-1
      - eu-west-1
      - eu-west-2
      - eu-west-3
      - eu-central-1
      - eu-south-1
      - af-south-1
      - ap-northeast-1
      - ap-northeast-2
      - ap-northeast-3
      - ap-southeast-1
      - ap-southeast-2
      - ap-east-1
      - ap-south-1
      - sa-east-1
      - me-south-1
      default: us-east-1
  description: The Amazon CodeGuru Security multi-region endpoint
- url: 'http://codeguru-security.{region}.amazonaws.com.cn'
  variables:
    region:
      description: The AWS region
      enum:
      - cn-north-1
      - cn-northwest-1
      default: cn-north-1
  description: The Amazon CodeGuru Security endpoint for China (Beijing) and China (Ningxia)
- url: 'https://codeguru-security.{region}.amazonaws.com.cn'
  variables:
    region:
      description: The AWS region
      enum:
      - cn-north-1
      - cn-northwest-1
      default: cn-north-1
  description: The Amazon CodeGuru Security endpoint for China (Beijing) and China (Ningxia)
x-hasEquivalentPaths: true
paths:
  /batchGetFindings:
    post:
      operationId: BatchGetFindings
      description: Returns a list of all requested findings.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BatchGetFindingsResponse'
              examples:
                BatchGetFindings200Example:
                  summary: Default BatchGetFindings 200 response
                  x-microcks-default: true
                  value:
                    failedFindings: example-value
                    findings: example-value
        '480':
          description: InternalServerException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerException'
              examples:
                BatchGetFindings480Example:
                  summary: Default BatchGetFindings 480 response
                  x-microcks-default: true
                  value: example-value
        '481':
          description: ThrottlingException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThrottlingException'
              examples:
                BatchGetFindings481Example:
                  summary: Default BatchGetFindings 481 response
                  x-microcks-default: true
                  value: example-value
        '482':
          description: ValidationException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationException'
              examples:
                BatchGetFindings482Example:
                  summary: Default BatchGetFindings 482 response
                  x-microcks-default: true
                  value: example-value
        '483':
          description: AccessDeniedException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessDeniedException'
              examples:
                BatchGetFindings483Example:
                  summary: Default BatchGetFindings 483 response
                  x-microcks-default: true
                  value: example-value
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - findingIdentifiers
              properties:
                findingIdentifiers:
                  description: A list of finding identifiers. Each identifier consists of a <code>scanName</code> and a <code>findingId</code>. You retrieve the <code>findingId</code> when you call 
                    <code>GetFindings</code>.
                  type: array
                  items:
                    $ref: '#/components/schemas/FindingIdentifier'
                  minItems: 1
                  maxItems: 25
            examples:
              BatchGetFindingsRequestExample:
                summary: Default BatchGetFindings request
                x-microcks-default: true
                value:
                  findingIdentifiers:
                  - findingId: '500123'
                    scanName: example-resource
      summary: Amazon CodeGuru Security Batch Get Findings
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    parameters:
    - $ref: '#/components/parameters/X-Amz-Content-Sha256'
    - $ref: '#/components/parameters/X-Amz-Date'
    - $ref: '#/components/parameters/X-Amz-Algorithm'
    - $ref: '#/components/parameters/X-Amz-Credential'
    - $ref: '#/components/parameters/X-Amz-Security-Token'
    - $ref: '#/components/parameters/X-Amz-Signature'
    - $ref: '#/components/parameters/X-Amz-SignedHeaders'
  /scans:
    post:
      operationId: CreateScan
      description: Use to create a scan using code uploaded to an S3 bucket.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateScanResponse'
              examples:
                CreateScan200Example:
                  summary: Default CreateScan 200 response
                  x-microcks-default: true
                  value:
                    resourceId: '500123'
                    runId: '500123'
                    scanName: example-resource
                    scanNameArn: arn:aws:service:us-east-1:123456789012:resource/example
                    scanState: example-value
        '480':
          description: InternalServerException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerException'
              examples:
                CreateScan480Example:
                  summary: Default CreateScan 480 response
                  x-microcks-default: true
                  value: example-value
        '481':
          description: ConflictException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConflictException'
              examples:
                CreateScan481Example:
                  summary: Default CreateScan 481 response
                  x-microcks-default: true
                  value: example-value
        '482':
          description: ResourceNotFoundException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResourceNotFoundException'
              examples:
                CreateScan482Example:
                  summary: Default CreateScan 482 response
                  x-microcks-default: true
                  value: example-value
        '483':
          description: ThrottlingException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThrottlingException'
              examples:
                CreateScan483Example:
                  summary: Default CreateScan 483 response
                  x-microcks-default: true
                  value: example-value
        '484':
          description: ValidationException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationException'
              examples:
                CreateScan484Example:
                  summary: Default CreateScan 484 response
                  x-microcks-default: true
                  value: example-value
        '485':
          description: AccessDeniedException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessDeniedException'
              examples:
                CreateScan485Example:
                  summary: Default CreateScan 485 response
                  x-microcks-default: true
                  value: example-value
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - resourceId
              - scanName
              properties:
                analysisType:
                  description: 'The type of analysis you want CodeGuru Security to perform in the scan, either <code>Security</code> or <code>All</code>. The <code>Security</code> type only generates findings
                    related to security. The <code>All</code> type generates both security findings and quality findings. Defaults to <code>Security</code> type if missing.'
                  type: string
                  enum:
                  - Security
                  - All
                clientToken:
                  description: The idempotency token for the request. Amazon CodeGuru Security uses this value to prevent the accidental creation of duplicate scans if there are failures and retries.
                  type: string
                  pattern: '^[\S]+$'
                  minLength: 1
                  maxLength: 64
                resourceId:
                  description: The identifier for a resource object that contains resources where a finding was detected.
                  type: object
                  properties:
                    codeArtifactId:
                      allOf:
                      - $ref: '#/components/schemas/Uuid'
                      - description: The identifier for the code file uploaded to the resource where a finding was detected.
                scanName:
                  description: 'The unique name that CodeGuru Security uses to track revisions across multiple scans of the same resource. Only allowed for a <code>STANDARD</code> scan type. If not specified,
                    it will be auto generated. '
                  type: string
                  pattern: '^[a-zA-Z0-9-_$:.]*$'
                  minLength: 1
                  maxLength: 140
                scanType:
                  description: '<p>The type of scan, either <code>Standard</code> or <code>Express</code>. Defaults to <code>Standard</code> type if missing.</p> <p> <code>Express</code> scans run on limited
                    resources and use a limited set of detectors to analyze your code in near-real time. <code>Standard</code> scans have standard resource limits and use the full set of detectors to analyze
                    your code.</p>'
                  type: string
                  enum:
                  - Standard
                  - Express
                tags:
                  description: '<p>An array of key-value pairs used to tag a scan. A tag is a custom attribute label with two parts:</p> <ul> <li> <p>A tag key. For example, <code>CostCenter</code>, <code>Environment</code>,
                    or <code>Secret</code>. Tag keys are case sensitive.</p> </li> <li> <p>An optional tag value field. For example, <code>111122223333</code>, <code>Production</code>, or a team name. Omitting
                    the tag value is the same as using an empty string. Tag values are case sensitive.</p> </li> </ul>'
                  type: object
                  minProperties: 0
                  maxProperties: 200
                  additionalProperties:
                    $ref: '#/components/schemas/TagValue'
            examples:
              CreateScanRequestExample:
                summary: Default CreateScan request
                x-microcks-default: true
                value:
                  analysisType: Security
                  clientToken: example-value
                  resourceId:
                    codeArtifactId: '500123'
                  scanName: example-resource
                  scanType: Standard
                  tags: {}
      summary: Amazon CodeGuru Security Create Scan
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    parameters:
    - $ref: '#/components/parameters/X-Amz-Content-Sha256'
    - $ref: '#/components/parameters/X-Amz-Date'
    - $ref: '#/components/parameters/X-Amz-Algorithm'
    - $ref: '#/components/parameters/X-Amz-Credential'
    - $ref: '#/components/parameters/X-Amz-Security-Token'
    - $ref: '#/components/parameters/X-Amz-Signature'
    - $ref: '#/components/parameters/X-Amz-SignedHeaders'
    get:
      operationId: ListScans
      description: Returns a list of all the standard scans in an account. Does not return express scans.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListScansResponse'
              examples:
                ListScans200Example:
                  summary: Default ListScans 200 response
                  x-microcks-default: true
                  value:
                    nextToken: example-value
                    summaries: example-value
        '480':
          description: InternalServerException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerException'
              examples:
                ListScans480Example:
                  summary: Default ListScans 480 response
                  x-microcks-default: true
                  value: example-value
        '481':
          description: ThrottlingException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThrottlingException'
              examples:
                ListScans481Example:
                  summary: Default ListScans 481 response
                  x-microcks-default: true
                  value: example-value
        '482':
          description: ValidationException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationException'
              examples:
                ListScans482Example:
                  summary: Default ListScans 482 response
                  x-microcks-default: true
                  value: example-value
        '483':
          description: AccessDeniedException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessDeniedException'
              examples:
                ListScans483Example:
                  summary: Default ListScans 483 response
                  x-microcks-default: true
                  value: example-value
      parameters:
      - name: maxResults
        in: query
        required: false
        description: 'The maximum number of results to return in the response. Use this parameter when paginating results. If additional results exist beyond the number you specify, the <code>nextToken</code>
          element is returned in the response. Use <code>nextToken</code> in a subsequent request to retrieve additional results.'
        schema:
          type: integer
          minimum: 1
          maximum: 100
      - name: nextToken
        in: query
        required: false
        description: 'A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request. For subsequent calls, use the <code>nextToken</code>
          value returned from the previous request to continue listing results after the first page.'
        schema:
          type: string
          pattern: '^[\S]+$'
          minLength: 1
          maxLength: 2048
      summary: Amazon CodeGuru Security List Scans
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /uploadUrl:
    post:
      operationId: CreateUploadUrl
      description: <p>Generates a pre-signed URL and request headers used to upload a code resource.</p> <p>You can upload your code resource to the URL and add the request headers using any HTTP 
        client.</p>
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreateUploadUrlResponse'
              examples:
                CreateUploadUrl200Example:
                  summary: Default CreateUploadUrl 200 response
                  x-microcks-default: true
                  value:
                    codeArtifactId: '500123'
                    requestHeaders: example-value
                    s3Url: https://example.amazonaws.com
        '480':
          description: InternalServerException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerException'
              examples:
                CreateUploadUrl480Example:
                  summary: Default CreateUploadUrl 480 response
                  x-microcks-default: true
                  value: https://example.amazonaws.com
        '481':
          description: ThrottlingException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThrottlingException'
              examples:
                CreateUploadUrl481Example:
                  summary: Default CreateUploadUrl 481 response
                  x-microcks-default: true
                  value: https://example.amazonaws.com
        '482':
          description: ValidationException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationException'
              examples:
                CreateUploadUrl482Example:
                  summary: Default CreateUploadUrl 482 response
                  x-microcks-default: true
                  value: https://example.amazonaws.com
        '483':
          description: AccessDeniedException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessDeniedException'
              examples:
                CreateUploadUrl483Example:
                  summary: Default CreateUploadUrl 483 response
                  x-microcks-default: true
                  value: https://example.amazonaws.com
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - scanName
              properties:
                scanName:
                  description: The name of the scan that will use the uploaded resource. CodeGuru Security uses the unique scan name to track revisions across multiple scans of the same resource. Use 
                    this <code>scanName</code> when you call <code>CreateScan</code> on the code resource you upload to this URL.
                  type: string
                  pattern: '^[a-zA-Z0-9-_$:.]*$'
                  minLength: 1
                  maxLength: 140
            examples:
              CreateUploadUrlRequestExample:
                summary: Default CreateUploadUrl request
                x-microcks-default: true
                value:
                  scanName: example-resource
      summary: Amazon CodeGuru Security Create Upload Url
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    parameters:
    - $ref: '#/components/parameters/X-Amz-Content-Sha256'
    - $ref: '#/components/parameters/X-Amz-Date'
    - $ref: '#/components/parameters/X-Amz-Algorithm'
    - $ref: '#/components/parameters/X-Amz-Credential'
    - $ref: '#/components/parameters/X-Amz-Security-Token'
    - $ref: '#/components/parameters/X-Amz-Signature'
    - $ref: '#/components/parameters/X-Amz-SignedHeaders'
  /accountConfiguration/get:
    get:
      operationId: GetAccountConfiguration
      description: Use to get account level configuration.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetAccountConfigurationResponse'
              examples:
                GetAccountConfiguration200Example:
                  summary: Default GetAccountConfiguration 200 response
                  x-microcks-default: true
                  value:
                    encryptionConfig: example-value
        '480':
          description: InternalServerException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerException'
              examples:
                GetAccountConfiguration480Example:
                  summary: Default GetAccountConfiguration 480 response
                  x-microcks-default: true
                  value: '123456789012'
        '481':
          description: ThrottlingException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThrottlingException'
              examples:
                GetAccountConfiguration481Example:
                  summary: Default GetAccountConfiguration 481 response
                  x-microcks-default: true
                  value: '123456789012'
        '482':
          description: ValidationException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationException'
              examples:
                GetAccountConfiguration482Example:
                  summary: Default GetAccountConfiguration 482 response
                  x-microcks-default: true
                  value: '123456789012'
        '483':
          description: AccessDeniedException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessDeniedException'
              examples:
                GetAccountConfiguration483Example:
                  summary: Default GetAccountConfiguration 483 response
                  x-microcks-default: true
                  value: '123456789012'
      parameters: []
      summary: Amazon CodeGuru Security Get Account Configuration
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    parameters:
    - $ref: '#/components/parameters/X-Amz-Content-Sha256'
    - $ref: '#/components/parameters/X-Amz-Date'
    - $ref: '#/components/parameters/X-Amz-Algorithm'
    - $ref: '#/components/parameters/X-Amz-Credential'
    - $ref: '#/components/parameters/X-Amz-Security-Token'
    - $ref: '#/components/parameters/X-Amz-Signature'
    - $ref: '#/components/parameters/X-Amz-SignedHeaders'
  '/findings/{scanName}':
    get:
      operationId: GetFindings
      description: Returns a list of all findings generated by a particular scan.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetFindingsResponse'
              examples:
                GetFindings200Example:
                  summary: Default GetFindings 200 response
                  x-microcks-default: true
                  value:
                    findings: example-value
                    nextToken: example-value
        '480':
          description: InternalServerException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerException'
              examples:
                GetFindings480Example:
                  summary: Default GetFindings 480 response
                  x-microcks-default: true
                  value: example-value
        '481':
          description: ConflictException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConflictException'
              examples:
                GetFindings481Example:
                  summary: Default GetFindings 481 response
                  x-microcks-default: true
                  value: example-value
        '482':
          description: ResourceNotFoundException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResourceNotFoundException'
              examples:
                GetFindings482Example:
                  summary: Default GetFindings 482 response
                  x-microcks-default: true
                  value: example-value
        '483':
          description: ThrottlingException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThrottlingException'
              examples:
                GetFindings483Example:
                  summary: Default GetFindings 483 response
                  x-microcks-default: true
                  value: example-value
        '484':
          description: ValidationException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationException'
              examples:
                GetFindings484Example:
                  summary: Default GetFindings 484 response
                  x-microcks-default: true
                  value: example-value
        '485':
          description: AccessDeniedException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessDeniedException'
              examples:
                GetFindings485Example:
                  summary: Default GetFindings 485 response
                  x-microcks-default: true
                  value: example-value
      parameters:
      - name: maxResults
        in: query
        required: false
        description: 'The maximum number of results to return in the response. Use this parameter when paginating results. If additional results exist beyond the number you specify, the <code>nextToken</code>
          element is returned in the response. Use <code>nextToken</code> in a subsequent request to retrieve additional results.'
        schema:
          type: integer
          minimum: 1
          maximum: 100
      - name: nextToken
        in: query
        required: false
        description: 'A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request. For subsequent calls, use the <code>nextToken</code>
          value returned from the previous request to continue listing results after the first page.'
        schema:
          type: string
          pattern: '^[\S]+$'
          minLength: 1
          maxLength: 2048
      - name: scanName
        in: path
        required: true
        description: The name of the scan you want to retrieve findings from.
        schema:
          type: string
          pattern: '^[a-zA-Z0-9-_$:.]*$'
          minLength: 1
          maxLength: 140
      - name: status
        in: query
        required: false
        description: 'The status of the findings you want to get. Pass either <code>Open</code>, <code>Closed</code>, or <code>All</code>.'
        schema:
          type: string
          enum:
          - Closed
          - Open
          - All
      summary: Amazon CodeGuru Security Get Findings
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    parameters:
    - $ref: '#/components/parameters/X-Amz-Content-Sha256'
    - $ref: '#/components/parameters/X-Amz-Date'
    - $ref: '#/components/parameters/X-Amz-Algorithm'
    - $ref: '#/components/parameters/X-Amz-Credential'
    - $ref: '#/components/parameters/X-Amz-Security-Token'
    - $ref: '#/components/parameters/X-Amz-Signature'
    - $ref: '#/components/parameters/X-Amz-SignedHeaders'
  /metrics/summary#date:
    get:
      operationId: GetMetricsSummary
      description: 'Returns top level metrics about an account from a specified date, including number of open findings, the categories with most findings, the scans with most open findings, and scans with
        most open critical findings. '
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetMetricsSummaryResponse'
              examples:
                GetMetricsSummary200Example:
                  summary: Default GetMetricsSummary 200 response
                  x-microcks-default: true
                  value:
                    metricsSummary: example-value
        '480':
          description: InternalServerException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerException'
              examples:
                GetMetricsSummary480Example:
                  summary: Default GetMetricsSummary 480 response
                  x-microcks-default: true
                  value: example-value
        '481':
          description: ThrottlingException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThrottlingException'
              examples:
                GetMetricsSummary481Example:
                  summary: Default GetMetricsSummary 481 response
                  x-microcks-default: true
                  value: example-value
        '482':
          description: ValidationException
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationException'
              examples:
                GetMetricsSummary482Example:
                  summary: Default GetMetricsSummary 482 response
                  x-microcks-default: true
                  value: example-value
        '483':
          description:

# --- truncated at 32 KB (91 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/amazon-codeguru-security/refs/heads/main/openapi/amazon-codeguru-security-openapi-original.yaml