Skip to content

Commit eb4868e

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 6de7a2b of spec repo
1 parent 0f05d62 commit eb4868e

File tree

27 files changed

+939
-46
lines changed

27 files changed

+939
-46
lines changed

.generator/schemas/v2/openapi.yaml

Lines changed: 80 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48941,6 +48941,18 @@ components:
4894148941
meta:
4894248942
$ref: '#/components/schemas/ResponseMetaAttributes'
4894348943
type: object
48944+
SecurityMonitoringPaginatedSuppressionsResponse:
48945+
description: Response object containing the available suppression rules with
48946+
pagination metadata.
48947+
properties:
48948+
data:
48949+
description: A list of suppressions objects.
48950+
items:
48951+
$ref: '#/components/schemas/SecurityMonitoringSuppression'
48952+
type: array
48953+
meta:
48954+
$ref: '#/components/schemas/SecurityMonitoringSuppressionsMeta'
48955+
type: object
4894448956
SecurityMonitoringReferenceTable:
4894548957
description: Reference tables used in the queries.
4894648958
properties:
@@ -51090,6 +51102,31 @@ components:
5109051102
data:
5109151103
$ref: '#/components/schemas/SecurityMonitoringSuppression'
5109251104
type: object
51105+
SecurityMonitoringSuppressionSort:
51106+
description: The sort parameters used for querying suppression rules.
51107+
enum:
51108+
- name
51109+
- start_date
51110+
- expiration_date
51111+
- update_date
51112+
- enabled
51113+
- -name
51114+
- -start_date
51115+
- -expiration_date
51116+
- -update_date
51117+
- -enabled
51118+
type: string
51119+
x-enum-varnames:
51120+
- NAME
51121+
- START_DATE
51122+
- EXPIRATION_DATE
51123+
- UPDATE_DATE
51124+
- ENABLED
51125+
- NAME_DESCENDING
51126+
- START_DATE_DESCENDING
51127+
- EXPIRATION_DATE_DESCENDING
51128+
- UPDATE_DATE_DESCENDING
51129+
- ENABLED_DESCENDING
5109351130
SecurityMonitoringSuppressionType:
5109451131
default: suppressions
5109551132
description: The type of the resource. The value should always be `suppressions`.
@@ -51185,6 +51222,31 @@ components:
5118551222
required:
5118651223
- data
5118751224
type: object
51225+
SecurityMonitoringSuppressionsMeta:
51226+
description: Metadata for the suppression list response.
51227+
properties:
51228+
page:
51229+
$ref: '#/components/schemas/SecurityMonitoringSuppressionsPageMeta'
51230+
type: object
51231+
SecurityMonitoringSuppressionsPageMeta:
51232+
description: Pagination metadata.
51233+
properties:
51234+
pageNumber:
51235+
description: Current page number.
51236+
example: 0
51237+
format: int64
51238+
type: integer
51239+
pageSize:
51240+
description: Current page size.
51241+
example: 2
51242+
format: int64
51243+
type: integer
51244+
totalCount:
51245+
description: Total count of suppressions.
51246+
example: 2
51247+
format: int64
51248+
type: integer
51249+
type: object
5118851250
SecurityMonitoringSuppressionsResponse:
5118951251
description: Response object containing the available suppression rules.
5119051252
properties:
@@ -85138,12 +85200,29 @@ paths:
8513885200
required: false
8513985201
schema:
8514085202
type: string
85203+
- description: Attribute used to sort the list of suppression rules. Prefix
85204+
with `-` to sort in descending order.
85205+
in: query
85206+
name: sort
85207+
required: false
85208+
schema:
85209+
$ref: '#/components/schemas/SecurityMonitoringSuppressionSort'
85210+
- description: Size for a given page. Use `-1` to return all items.
85211+
in: query
85212+
name: page[size]
85213+
required: false
85214+
schema:
85215+
default: -1
85216+
example: 10
85217+
format: int64
85218+
type: integer
85219+
- $ref: '#/components/parameters/PageNumber'
8514185220
responses:
8514285221
'200':
8514385222
content:
8514485223
application/json:
8514585224
schema:
85146-
$ref: '#/components/schemas/SecurityMonitoringSuppressionsResponse'
85225+
$ref: '#/components/schemas/SecurityMonitoringPaginatedSuppressionsResponse'
8514785226
description: OK
8514885227
'403':
8514985228
$ref: '#/components/responses/NotAuthorizedResponse'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-11-07T12:27:26.759Z
1+
2026-01-14T17:29:03.168Z

cassettes/features/v2/security_monitoring/Delete-a-suppression-rule-returns-OK-response.yml

Lines changed: 11 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-11-07T12:27:27.654Z
1+
2026-01-14T17:29:04.856Z

cassettes/features/v2/security_monitoring/Get-a-suppression-rule-returns-OK-response.yml

Lines changed: 13 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-11-26T13:33:06.482Z
1+
2026-01-14T17:29:05.317Z

cassettes/features/v2/security_monitoring/Get-a-suppression-s-version-history-returns-OK-response.yml

Lines changed: 15 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2026-01-14T17:12:28.523Z

0 commit comments

Comments
 (0)