Skip to content

Commit 1ebc923

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 463c2dac of spec repo
1 parent e535510 commit 1ebc923

File tree

7 files changed

+1110
-8
lines changed

7 files changed

+1110
-8
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-07-22 07:16:13.613054",
8-
"spec_repo_commit": "8ca2883c"
7+
"regenerated": "2025-07-22 13:57:08.844668",
8+
"spec_repo_commit": "463c2dac"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-07-22 07:16:22.952520",
13-
"spec_repo_commit": "8ca2883c"
12+
"regenerated": "2025-07-22 13:57:18.247781",
13+
"spec_repo_commit": "463c2dac"
1414
}
1515
}
1616
}

config/_default/menus/api.en.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6573,6 +6573,18 @@ menu:
65736573
url: /api/latest/datasets/
65746574
identifier: datasets
65756575
generated: true
6576+
- name: Edits a dataset
6577+
url: '#edits-a-dataset'
6578+
identifier: datasets-edits-a-dataset
6579+
parent: datasets
6580+
generated: true
6581+
params:
6582+
versions:
6583+
- v2
6584+
operationids:
6585+
- EditDataset
6586+
unstable: []
6587+
order: 4
65766588
- name: Get a single dataset by ID
65776589
url: '#get-a-single-dataset-by-id'
65786590
identifier: datasets-get-a-single-dataset-by-id

content/en/api/v2/datasets/examples.json

Lines changed: 105 additions & 0 deletions
Large diffs are not rendered by default.

data/api/v2/full_spec.yaml

Lines changed: 64 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12401,6 +12401,14 @@ components:
1240112401
required:
1240212402
- data
1240312403
type: object
12404+
DatasetEditRequest:
12405+
description: Edit request for a dataset.
12406+
properties:
12407+
data:
12408+
$ref: '#/components/schemas/Dataset'
12409+
required:
12410+
- data
12411+
type: object
1240412412
DatasetResponseMulti:
1240512413
description: Response containing a list of datasets.
1240612414
properties:
@@ -49501,7 +49509,14 @@ paths:
4950149509
x-undo:
4950249510
type: safe
4950349511
post:
49504-
description: Create a dataset with the configurations in the request.
49512+
description: "Create a dataset with the configurations in the request.\n\n###
49513+
Datasets Constraints\n\n- **Tag Limit per Dataset**:\n - Each Restricted
49514+
Dataset supports a maximum of 10 key:value pairs.\n\n- **Tag Key Rules per
49515+
Telemetry Type**:\n - Only one tag key or attribute may be used to define
49516+
access within a single telemetry type.\n - The same or different tag key
49517+
may be used across different telemetry types.\n\n- **Tag Value Uniqueness**:\n
49518+
\ - Tag values must be unique within a single dataset.\n - A tag value used
49519+
in one dataset cannot be reused in another dataset of the same telemetry type."
4950549520
operationId: CreateDataset
4950649521
requestBody:
4950749522
content:
@@ -49619,6 +49634,54 @@ paths:
4961949634
permissions: []
4962049635
x-undo:
4962149636
type: safe
49637+
put:
49638+
description: "Edits the dataset associated with the ID.\n\n### Datasets Constraints\n\n-
49639+
**Tag Limit per Dataset**:\n - Each Restricted Dataset supports a maximum
49640+
of 10 key:value pairs.\n\n- **Tag Key Rules per Telemetry Type**:\n - Only
49641+
one tag key or attribute may be used to define access within a single telemetry
49642+
type.\n - The same or different tag key may be used across different telemetry
49643+
types.\n\n- **Tag Value Uniqueness**:\n - Tag values must be unique within
49644+
a single dataset.\n - A tag value used in one dataset cannot be reused in
49645+
another dataset of the same telemetry type."
49646+
operationId: EditDataset
49647+
parameters:
49648+
- $ref: '#/components/parameters/DatasetID'
49649+
requestBody:
49650+
content:
49651+
application/json:
49652+
schema:
49653+
$ref: '#/components/schemas/DatasetEditRequest'
49654+
description: Dataset payload
49655+
required: true
49656+
responses:
49657+
'200':
49658+
content:
49659+
application/json:
49660+
schema:
49661+
$ref: '#/components/schemas/DatasetResponseSingle'
49662+
description: OK
49663+
'400':
49664+
$ref: '#/components/responses/BadRequestResponse'
49665+
'403':
49666+
$ref: '#/components/responses/NotAuthorizedResponse'
49667+
'404':
49668+
$ref: '#/components/responses/NotFoundResponse'
49669+
'429':
49670+
$ref: '#/components/responses/TooManyRequestsResponse'
49671+
security:
49672+
- apiKeyAuth: []
49673+
appKeyAuth: []
49674+
- AuthZ: []
49675+
summary: Edits a dataset
49676+
tags:
49677+
- Datasets
49678+
x-codegen-request-body-name: body
49679+
x-menu-order: 4
49680+
x-permission:
49681+
operator: OPEN
49682+
permissions: []
49683+
x-undo:
49684+
type: idempotent
4962249685
/api/v2/domain_allowlist:
4962349686
get:
4962449687
description: Get the domain allowlist for an organization.

0 commit comments

Comments
 (0)