Skip to content

Commit d7e0d83

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit e77ae2a of spec repo
1 parent 6823564 commit d7e0d83

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
@@ -49179,6 +49179,18 @@ components:
4917949179
meta:
4918049180
$ref: '#/components/schemas/ResponseMetaAttributes'
4918149181
type: object
49182+
SecurityMonitoringPaginatedSuppressionsResponse:
49183+
description: Response object containing the available suppression rules with
49184+
pagination metadata.
49185+
properties:
49186+
data:
49187+
description: A list of suppressions objects.
49188+
items:
49189+
$ref: '#/components/schemas/SecurityMonitoringSuppression'
49190+
type: array
49191+
meta:
49192+
$ref: '#/components/schemas/SecurityMonitoringSuppressionsMeta'
49193+
type: object
4918249194
SecurityMonitoringReferenceTable:
4918349195
description: Reference tables used in the queries.
4918449196
properties:
@@ -51328,6 +51340,31 @@ components:
5132851340
data:
5132951341
$ref: '#/components/schemas/SecurityMonitoringSuppression'
5133051342
type: object
51343+
SecurityMonitoringSuppressionSort:
51344+
description: The sort parameters used for querying suppression rules.
51345+
enum:
51346+
- name
51347+
- start_date
51348+
- expiration_date
51349+
- update_date
51350+
- enabled
51351+
- -name
51352+
- -start_date
51353+
- -expiration_date
51354+
- -update_date
51355+
- -enabled
51356+
type: string
51357+
x-enum-varnames:
51358+
- NAME
51359+
- START_DATE
51360+
- EXPIRATION_DATE
51361+
- UPDATE_DATE
51362+
- ENABLED
51363+
- NAME_DESCENDING
51364+
- START_DATE_DESCENDING
51365+
- EXPIRATION_DATE_DESCENDING
51366+
- UPDATE_DATE_DESCENDING
51367+
- ENABLED_DESCENDING
5133151368
SecurityMonitoringSuppressionType:
5133251369
default: suppressions
5133351370
description: The type of the resource. The value should always be `suppressions`.
@@ -51423,6 +51460,31 @@ components:
5142351460
required:
5142451461
- data
5142551462
type: object
51463+
SecurityMonitoringSuppressionsMeta:
51464+
description: Metadata for the suppression list response.
51465+
properties:
51466+
page:
51467+
$ref: '#/components/schemas/SecurityMonitoringSuppressionsPageMeta'
51468+
type: object
51469+
SecurityMonitoringSuppressionsPageMeta:
51470+
description: Pagination metadata.
51471+
properties:
51472+
pageNumber:
51473+
description: Current page number.
51474+
example: 0
51475+
format: int64
51476+
type: integer
51477+
pageSize:
51478+
description: Current page size.
51479+
example: 2
51480+
format: int64
51481+
type: integer
51482+
totalCount:
51483+
description: Total count of suppressions.
51484+
example: 2
51485+
format: int64
51486+
type: integer
51487+
type: object
5142651488
SecurityMonitoringSuppressionsResponse:
5142751489
description: Response object containing the available suppression rules.
5142851490
properties:
@@ -85556,12 +85618,29 @@ paths:
8555685618
required: false
8555785619
schema:
8555885620
type: string
85621+
- description: Attribute used to sort the list of suppression rules. Prefix
85622+
with `-` to sort in descending order.
85623+
in: query
85624+
name: sort
85625+
required: false
85626+
schema:
85627+
$ref: '#/components/schemas/SecurityMonitoringSuppressionSort'
85628+
- description: Size for a given page. Use `-1` to return all items.
85629+
in: query
85630+
name: page[size]
85631+
required: false
85632+
schema:
85633+
default: -1
85634+
example: 10
85635+
format: int64
85636+
type: integer
85637+
- $ref: '#/components/parameters/PageNumber'
8555985638
responses:
8556085639
'200':
8556185640
content:
8556285641
application/json:
8556385642
schema:
85564-
$ref: '#/components/schemas/SecurityMonitoringSuppressionsResponse'
85643+
$ref: '#/components/schemas/SecurityMonitoringPaginatedSuppressionsResponse'
8556585644
description: OK
8556685645
'403':
8556785646
$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)