@@ -13065,99 +13065,6 @@ components:
1306513065 type: string
1306613066 x-enum-varnames:
1306713067 - ITEMS
13068- BulkMuteFindingsRequest:
13069- description: The new bulk mute finding request.
13070- properties:
13071- data:
13072- $ref: "#/components/schemas/BulkMuteFindingsRequestData"
13073- required:
13074- - data
13075- type: object
13076- BulkMuteFindingsRequestAttributes:
13077- additionalProperties: false
13078- description: The mute properties to be updated.
13079- properties:
13080- mute:
13081- $ref: "#/components/schemas/BulkMuteFindingsRequestProperties"
13082- required:
13083- - mute
13084- type: object
13085- BulkMuteFindingsRequestData:
13086- description: Data object containing the new bulk mute properties of the finding.
13087- properties:
13088- attributes:
13089- $ref: "#/components/schemas/BulkMuteFindingsRequestAttributes"
13090- id:
13091- description: UUID to identify the request
13092- example: dbe5f567-192b-4404-b908-29b70e1c9f76
13093- type: string
13094- meta:
13095- $ref: "#/components/schemas/BulkMuteFindingsRequestMeta"
13096- type:
13097- $ref: "#/components/schemas/FindingType"
13098- required:
13099- - id
13100- - type
13101- - attributes
13102- - meta
13103- type: object
13104- BulkMuteFindingsRequestMeta:
13105- description: Meta object containing the findings to be updated.
13106- properties:
13107- findings:
13108- description: Array of findings.
13109- items:
13110- $ref: "#/components/schemas/BulkMuteFindingsRequestMetaFindings"
13111- type: array
13112- type: object
13113- BulkMuteFindingsRequestMetaFindings:
13114- description: Finding object containing the finding information.
13115- properties:
13116- finding_id:
13117- $ref: "#/components/schemas/FindingID"
13118- type: object
13119- BulkMuteFindingsRequestProperties:
13120- additionalProperties: false
13121- description: Object containing the new mute properties of the findings.
13122- properties:
13123- description:
13124- description: Additional information about the reason why those findings are muted or unmuted. This field has a maximum limit of 280 characters.
13125- type: string
13126- expiration_date:
13127- description: |-
13128- The expiration date of the mute or unmute action (Unix ms). It must be set to a value greater than the current timestamp.
13129- If this field is not provided, the finding will be muted or unmuted indefinitely, which is equivalent to setting the expiration date to 9999999999999.
13130- example: 1778721573794
13131- format: int64
13132- type: integer
13133- muted:
13134- description: Whether those findings should be muted or unmuted.
13135- example: true
13136- type: boolean
13137- reason:
13138- $ref: "#/components/schemas/FindingMuteReason"
13139- required:
13140- - muted
13141- - reason
13142- type: object
13143- BulkMuteFindingsResponse:
13144- description: The expected response schema.
13145- properties:
13146- data:
13147- $ref: "#/components/schemas/BulkMuteFindingsResponseData"
13148- required:
13149- - data
13150- type: object
13151- BulkMuteFindingsResponseData:
13152- description: Data object containing the ID of the request that was updated.
13153- properties:
13154- id:
13155- description: UUID used to identify the request
13156- example: 93bfeb70-af47-424d-908a-948d3f08e37f
13157- type: string
13158- type:
13159- $ref: "#/components/schemas/FindingType"
13160- type: object
1316113068 BulkPutAppsDatastoreItemsRequest:
1316213069 description: Request to insert multiple items into a datastore in a single operation.
1316313070 properties:
@@ -154579,84 +154486,6 @@ paths:
154579154486 Use the [search security findings endpoint](https://docs.datadoghq.com/api/latest/security-monitoring/#search-security-findings),
154580154487 which is based on the [new security findings schema](https://docs.datadoghq.com/security/guide/findings-schema/), to search security findings.
154581154488 If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
154582- patch:
154583- description: |-
154584- Mute or unmute findings.
154585- operationId: MuteFindings
154586- requestBody:
154587- content:
154588- application/json:
154589- examples:
154590- default:
154591- value:
154592- data:
154593- attributes:
154594- mute:
154595- expiration_date: 1778721573794
154596- muted: true
154597- reason: ACCEPTED_RISK
154598- id: dbe5f567-192b-4404-b908-29b70e1c9f76
154599- meta:
154600- findings:
154601- - finding_id: ZGVmLTAwcC1pZXJ-aS0wZjhjNjMyZDNmMzRlZTgzNw==
154602- type: finding
154603- schema:
154604- $ref: "#/components/schemas/BulkMuteFindingsRequest"
154605- description: |-
154606- ### Attributes
154607-
154608- All findings are updated with the same attributes. The request body must include at least two attributes: `muted` and `reason`.
154609- The allowed reasons depend on whether the finding is being muted or unmuted:
154610- - To mute a finding: `PENDING_FIX`, `FALSE_POSITIVE`, `ACCEPTED_RISK`, `OTHER`.
154611- - To unmute a finding : `NO_PENDING_FIX`, `HUMAN_ERROR`, `NO_LONGER_ACCEPTED_RISK`, `OTHER`.
154612-
154613- ### Meta
154614-
154615- The request body must include a list of the finding IDs to be updated.
154616- required: true
154617- responses:
154618- "200":
154619- content:
154620- application/json:
154621- examples:
154622- default:
154623- value:
154624- data:
154625- id: abc-123
154626- type: finding
154627- schema:
154628- $ref: "#/components/schemas/BulkMuteFindingsResponse"
154629- description: OK
154630- "400":
154631- $ref: "#/components/responses/FindingsBadRequestResponse"
154632- "403":
154633- $ref: "#/components/responses/FindingsForbiddenResponse"
154634- "404":
154635- $ref: "#/components/responses/FindingsNotFoundResponse"
154636- "422":
154637- content:
154638- application/json:
154639- schema:
154640- $ref: "#/components/schemas/JSONAPIErrorResponse"
154641- description: "Invalid Request: The server understands the request syntax but cannot process it due to invalid data."
154642- "429":
154643- $ref: "#/components/responses/FindingsTooManyRequestsResponse"
154644- security:
154645- - apiKeyAuth: []
154646- appKeyAuth: []
154647- - AuthZ: []
154648- summary: Mute or unmute a batch of findings
154649- tags:
154650- - "Security Monitoring"
154651- x-codegen-request-body-name: body
154652- "x-permission":
154653- operator: OR
154654- permissions:
154655- - security_monitoring_findings_write
154656- - appsec_vm_write
154657- x-unstable: |-
154658- **Note**: This endpoint is in public beta.
154659- If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
154660154489 /api/v2/posture_management/findings/{finding_id}:
154661154490 get:
154662154491 description: Returns a single finding with message and resource configuration.
0 commit comments