You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Note**: This endpoint is in preview and is subject to change.
97886
+
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
97611
97887
/api/v2/datasets:
97612
97888
get:
97613
97889
description: Get all datasets that have been configured for an organization.
@@ -146011,6 +146287,11 @@ tags:
146011
146287
- description: |-
146012
146288
The Data Deletion API allows the user to target and delete data from the allowed products. It's currently enabled for Logs and RUM and depends on `logs_delete_data` and `rum_delete_data` permissions respectively.
146013
146289
name: Data Deletion
146290
+
- description: |-
146291
+
Configure dataset-level access restrictions per Datadog product type. Dataset restrictions
146292
+
control whether data is visible by default or hidden until explicitly granted, and how
146293
+
ownership-based access is determined.
146294
+
name: Dataset Restrictions
146014
146295
- description: |-
146015
146296
Data Access Controls in Datadog is a feature that allows administrators and access managers to regulate
146016
146297
access to sensitive data. By defining Restricted Datasets, you can ensure that only specific teams or roles can
Scenario: Update a dataset restriction returns "Bad Request" response
28
+
Given operation "UpdateDatasetRestriction" enabled
29
+
And new "UpdateDatasetRestriction" request
30
+
And request contains "product_type" parameter from "REPLACE.ME"
31
+
And body with value {"data": {"attributes": {"ownership_mode": "team_tag_based", "restriction_mode": "default_hide", "unrestricted_principals": []}, "type": "dataset_restrictions"}}
Scenario: Update a dataset restriction returns "Not Found" response
37
+
Given operation "UpdateDatasetRestriction" enabled
38
+
And new "UpdateDatasetRestriction" request
39
+
And request contains "product_type" parameter from "REPLACE.ME"
40
+
And body with value {"data": {"attributes": {"ownership_mode": "team_tag_based", "restriction_mode": "default_hide", "unrestricted_principals": []}, "type": "dataset_restrictions"}}
Scenario: Update a dataset restriction returns "OK" response
46
+
Given operation "UpdateDatasetRestriction" enabled
47
+
And new "UpdateDatasetRestriction" request
48
+
And request contains "product_type" parameter from "REPLACE.ME"
49
+
And body with value {"data": {"attributes": {"ownership_mode": "team_tag_based", "restriction_mode": "default_hide", "unrestricted_principals": []}, "type": "dataset_restrictions"}}
0 commit comments