@@ -13090,99 +13090,6 @@ components:
1309013090 type: string
1309113091 x-enum-varnames:
1309213092 - ITEMS
13093- BulkMuteFindingsRequest:
13094- description: The new bulk mute finding request.
13095- properties:
13096- data:
13097- $ref: "#/components/schemas/BulkMuteFindingsRequestData"
13098- required:
13099- - data
13100- type: object
13101- BulkMuteFindingsRequestAttributes:
13102- additionalProperties: false
13103- description: The mute properties to be updated.
13104- properties:
13105- mute:
13106- $ref: "#/components/schemas/BulkMuteFindingsRequestProperties"
13107- required:
13108- - mute
13109- type: object
13110- BulkMuteFindingsRequestData:
13111- description: Data object containing the new bulk mute properties of the finding.
13112- properties:
13113- attributes:
13114- $ref: "#/components/schemas/BulkMuteFindingsRequestAttributes"
13115- id:
13116- description: UUID to identify the request
13117- example: dbe5f567-192b-4404-b908-29b70e1c9f76
13118- type: string
13119- meta:
13120- $ref: "#/components/schemas/BulkMuteFindingsRequestMeta"
13121- type:
13122- $ref: "#/components/schemas/FindingType"
13123- required:
13124- - id
13125- - type
13126- - attributes
13127- - meta
13128- type: object
13129- BulkMuteFindingsRequestMeta:
13130- description: Meta object containing the findings to be updated.
13131- properties:
13132- findings:
13133- description: Array of findings.
13134- items:
13135- $ref: "#/components/schemas/BulkMuteFindingsRequestMetaFindings"
13136- type: array
13137- type: object
13138- BulkMuteFindingsRequestMetaFindings:
13139- description: Finding object containing the finding information.
13140- properties:
13141- finding_id:
13142- $ref: "#/components/schemas/FindingID"
13143- type: object
13144- BulkMuteFindingsRequestProperties:
13145- additionalProperties: false
13146- description: Object containing the new mute properties of the findings.
13147- properties:
13148- description:
13149- description: Additional information about the reason why those findings are muted or unmuted. This field has a maximum limit of 280 characters.
13150- type: string
13151- expiration_date:
13152- description: |-
13153- The expiration date of the mute or unmute action (Unix ms). It must be set to a value greater than the current timestamp.
13154- If this field is not provided, the finding will be muted or unmuted indefinitely, which is equivalent to setting the expiration date to 9999999999999.
13155- example: 1778721573794
13156- format: int64
13157- type: integer
13158- muted:
13159- description: Whether those findings should be muted or unmuted.
13160- example: true
13161- type: boolean
13162- reason:
13163- $ref: "#/components/schemas/FindingMuteReason"
13164- required:
13165- - muted
13166- - reason
13167- type: object
13168- BulkMuteFindingsResponse:
13169- description: The expected response schema.
13170- properties:
13171- data:
13172- $ref: "#/components/schemas/BulkMuteFindingsResponseData"
13173- required:
13174- - data
13175- type: object
13176- BulkMuteFindingsResponseData:
13177- description: Data object containing the ID of the request that was updated.
13178- properties:
13179- id:
13180- description: UUID used to identify the request
13181- example: 93bfeb70-af47-424d-908a-948d3f08e37f
13182- type: string
13183- type:
13184- $ref: "#/components/schemas/FindingType"
13185- type: object
1318613093 BulkPutAppsDatastoreItemsRequest:
1318713094 description: Request to insert multiple items into a datastore in a single operation.
1318813095 properties:
@@ -156922,84 +156829,6 @@ paths:
156922156829 Use the [search security findings endpoint](https://docs.datadoghq.com/api/latest/security-monitoring/#search-security-findings),
156923156830 which is based on the [new security findings schema](https://docs.datadoghq.com/security/guide/findings-schema/), to search security findings.
156924156831 If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
156925- patch:
156926- description: |-
156927- Mute or unmute findings.
156928- operationId: MuteFindings
156929- requestBody:
156930- content:
156931- application/json:
156932- examples:
156933- default:
156934- value:
156935- data:
156936- attributes:
156937- mute:
156938- expiration_date: 1778721573794
156939- muted: true
156940- reason: ACCEPTED_RISK
156941- id: dbe5f567-192b-4404-b908-29b70e1c9f76
156942- meta:
156943- findings:
156944- - finding_id: ZGVmLTAwcC1pZXJ-aS0wZjhjNjMyZDNmMzRlZTgzNw==
156945- type: finding
156946- schema:
156947- $ref: "#/components/schemas/BulkMuteFindingsRequest"
156948- description: |-
156949- ### Attributes
156950-
156951- All findings are updated with the same attributes. The request body must include at least two attributes: `muted` and `reason`.
156952- The allowed reasons depend on whether the finding is being muted or unmuted:
156953- - To mute a finding: `PENDING_FIX`, `FALSE_POSITIVE`, `ACCEPTED_RISK`, `OTHER`.
156954- - To unmute a finding : `NO_PENDING_FIX`, `HUMAN_ERROR`, `NO_LONGER_ACCEPTED_RISK`, `OTHER`.
156955-
156956- ### Meta
156957-
156958- The request body must include a list of the finding IDs to be updated.
156959- required: true
156960- responses:
156961- "200":
156962- content:
156963- application/json:
156964- examples:
156965- default:
156966- value:
156967- data:
156968- id: abc-123
156969- type: finding
156970- schema:
156971- $ref: "#/components/schemas/BulkMuteFindingsResponse"
156972- description: OK
156973- "400":
156974- $ref: "#/components/responses/FindingsBadRequestResponse"
156975- "403":
156976- $ref: "#/components/responses/FindingsForbiddenResponse"
156977- "404":
156978- $ref: "#/components/responses/FindingsNotFoundResponse"
156979- "422":
156980- content:
156981- application/json:
156982- schema:
156983- $ref: "#/components/schemas/JSONAPIErrorResponse"
156984- description: "Invalid Request: The server understands the request syntax but cannot process it due to invalid data."
156985- "429":
156986- $ref: "#/components/responses/FindingsTooManyRequestsResponse"
156987- security:
156988- - apiKeyAuth: []
156989- appKeyAuth: []
156990- - AuthZ: []
156991- summary: Mute or unmute a batch of findings
156992- tags:
156993- - "Security Monitoring"
156994- x-codegen-request-body-name: body
156995- "x-permission":
156996- operator: OR
156997- permissions:
156998- - security_monitoring_findings_write
156999- - appsec_vm_write
157000- x-unstable: |-
157001- **Note**: This endpoint is in public beta.
157002- If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
157003156832 /api/v2/posture_management/findings/{finding_id}:
157004156833 get:
157005156834 description: Returns a single finding with message and resource configuration.
0 commit comments