@@ -12401,6 +12401,14 @@ components:
12401
12401
required:
12402
12402
- data
12403
12403
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
12404
12412
DatasetResponseMulti:
12405
12413
description: Response containing a list of datasets.
12406
12414
properties:
@@ -49501,7 +49509,14 @@ paths:
49501
49509
x-undo:
49502
49510
type: safe
49503
49511
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."
49505
49520
operationId: CreateDataset
49506
49521
requestBody:
49507
49522
content:
@@ -49619,6 +49634,54 @@ paths:
49619
49634
permissions: []
49620
49635
x-undo:
49621
49636
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
49622
49685
/api/v2/domain_allowlist:
49623
49686
get:
49624
49687
description: Get the domain allowlist for an organization.
0 commit comments