Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46982,6 +46982,14 @@ components:
the queries to search signals in the signal explorer.
example: env:staging status:low
type: string
tags:
description: List of tags associated with the suppression rule.
example:
- technique:T1110-brute-force
- source:cloudtrail
items:
type: string
type: array
update_date:
description: A Unix millisecond timestamp given the update date of the suppression
rule.
Expand Down Expand Up @@ -47043,6 +47051,14 @@ components:
same syntax as the queries to search signals in the Signals Explorer.
example: env:staging status:low
type: string
tags:
description: List of tags associated with the suppression rule.
example:
- technique:T1110-brute-force
- source:cloudtrail
items:
type: string
type: array
required:
- name
- enabled
Expand Down Expand Up @@ -47138,6 +47154,14 @@ components:
the queries to search signals in the signal explorer.
example: env:staging status:low
type: string
tags:
description: List of tags associated with the suppression rule.
example:
- technique:T1110-brute-force
- source:cloudtrail
items:
type: string
type: array
version:
description: The current version of the suppression. This is optional, but
it can help prevent concurrent modifications.
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024-11-27T15:22:34.711Z
2025-11-07T12:27:25.514Z

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024-05-10T16:34:39.853Z
2025-11-07T12:27:26.759Z

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024-05-10T16:34:46.398Z
2025-11-07T12:27:27.654Z

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024-05-10T16:34:51.901Z
2025-11-07T12:27:28.613Z

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
name: "Example-Security-Monitoring",
rule_query: "type:log_detection source:cloudtrail",
suppression_query: "env:staging status:low",
tags: [
"technique:T1110-brute-force",
"source:cloudtrail",
],
}),
type: DatadogAPIClient::V2::SecurityMonitoringSuppressionType::SUPPRESSIONS,
}),
Expand Down
2 changes: 1 addition & 1 deletion features/v2/given.json
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,7 @@
"parameters": [
{
"name": "body",
"value": "{\n \"data\": {\n \"type\": \"suppressions\",\n \"attributes\": {\n \"enabled\": true,\n \"name\": \"{{ unique }}\",\n \"description\": \"{{ unique }}\",\n \"rule_query\": \"source:cloudtrail\",\n \"suppression_query\": \"env:test\"\n }\n }\n}"
"value": "{\n \"data\": {\n \"type\": \"suppressions\",\n \"attributes\": {\n \"enabled\": true,\n \"name\": \"{{ unique }}\",\n \"description\": \"{{ unique }}\",\n \"rule_query\": \"source:cloudtrail\",\n \"suppression_query\": \"env:test\",\n \"tags\": [\"technique:T1110-brute-force\", \"source:cloudtrail\"]\n }\n }\n}"
}
],
"step": "there is a valid \"suppression\" in the system",
Expand Down
Loading
Loading