diff --git a/datadog_sync/model/dashboard_lists.py b/datadog_sync/model/dashboard_lists.py index 3554ff5ae..c3814aa8b 100644 --- a/datadog_sync/model/dashboard_lists.py +++ b/datadog_sync/model/dashboard_lists.py @@ -105,9 +105,5 @@ def connect_id(self, key: str, r_obj: Dict, resource_to_connect: str) -> Optiona async def update_dash_list_items(self, _id: str, dashboards: Dict, dashboard_list: dict): payload = {"dashboards": dashboards} destination_client = self.config.destination_client - try: - dashboards = await destination_client.put(self.dash_list_items_path.format(_id), payload) - except CustomClientHTTPError as e: - self.config.logger.error("error updating dashboard list items: %s", e) - return + dashboards = await destination_client.put(self.dash_list_items_path.format(_id), payload) dashboard_list.update(dashboards) diff --git a/datadog_sync/model/rum_applications.py b/datadog_sync/model/rum_applications.py new file mode 100644 index 000000000..c71249d56 --- /dev/null +++ b/datadog_sync/model/rum_applications.py @@ -0,0 +1,102 @@ +# Unless explicitly stated otherwise all files in this repository are licensed +# under the 3-clause BSD style license (see LICENSE). +# This product includes software developed at Datadog (https://www.datadoghq.com/). +# Copyright 2019 Datadog, Inc. + +from __future__ import annotations +from typing import TYPE_CHECKING, Optional, List, Dict, Tuple, cast + +from datadog_sync.utils.base_resource import BaseResource, ResourceConfig + +if TYPE_CHECKING: + from datadog_sync.utils.custom_client import CustomClient + + +class RUMApplications(BaseResource): + resource_type = "rum_applications" + resource_config = ResourceConfig( + base_path="/api/v2/rum/applications", + excluded_attributes=[ + "id", + "attributes.api_key_id", + "attributes.application_id", + "attributes.client_token", + "attributes.created_at", + "attributes.created_by_handle", + "attributes.hash", + "attributes.is_active", + "attributes.ootb_metrics_installed", + "attributes.org_id", + "attributes.updated_at", + "attributes.updated_by_handle", + "attributes.product_scales.product_analytics_retention_scale.last_modified_at", + "attributes.product_scales.product_analytics_retention_scale.state", + "attributes.product_scales.rum_event_processing_scale.last_modified_at", + "attributes.remote_config_id", + "attributes.short_name", + ], + ) + # Additional RUM Applications specific attributes + + async def get_resources(self, client: CustomClient) -> List[Dict]: + resp = await client.get(self.resource_config.base_path) + + # the list endpoint doesn't return the whole resource, so pull them individually + resources = [] + for partial_resource in resp["data"]: + partial_resource_id = partial_resource["id"] + whole_resource = (await client.get(self.resource_config.base_path + f"/{partial_resource_id}"))["data"] + resources.append(whole_resource) + + return resources + + async def import_resource(self, _id: Optional[str] = None, resource: Optional[Dict] = None) -> Tuple[str, Dict]: + if _id: + source_client = self.config.source_client + resource = (await source_client.get(self.resource_config.base_path + f"/{_id}"))["data"] + + resource = cast(dict, resource) + return resource["id"], resource + + async def pre_resource_action_hook(self, _id, resource: Dict) -> None: + pass + + async def pre_apply_hook(self) -> None: + pass + + async def create_resource(self, _id: str, resource: Dict) -> Tuple[str, Dict]: + destination_client = self.config.destination_client + resource["type"] = "rum_application_create" + payload = {"data": resource} + post_resp = await destination_client.post(self.resource_config.base_path, payload) + return _id, post_resp["data"] + + async def update_resource(self, _id: str, resource: Dict) -> Tuple[str, Dict]: + destination_client = self.config.destination_client + destination_id = self.config.state.destination[self.resource_type][_id]["id"] + + # if the resource doesn't exist at the destination then create it + existing_resources = await self.get_resources(destination_client) + existing_resource_ids = [r["id"] for r in existing_resources] + if destination_id not in existing_resource_ids: + self.config.logger.debug(f"{destination_id} not found, creating it") + return await self.create_resource(_id, resource) + + # resource exists so we can update it + resource["type"] = "rum_application_update" + resource["id"] = destination_id + payload = {"data": resource} + resp = await destination_client.patch( + self.resource_config.base_path + "/" + destination_id, + payload, + ) + return _id, resp["data"] + + async def delete_resource(self, _id: str) -> None: + destination_client = self.config.destination_client + await destination_client.delete( + self.resource_config.base_path + f"/{self.config.state.destination[self.resource_type][_id]['id']}" + ) + + def connect_id(self, key: str, r_obj: Dict, resource_to_connect: str) -> Optional[List[str]]: + pass diff --git a/datadog_sync/model/spans_metrics.py b/datadog_sync/model/spans_metrics.py index 1b15e0112..84399cbd3 100644 --- a/datadog_sync/model/spans_metrics.py +++ b/datadog_sync/model/spans_metrics.py @@ -12,6 +12,12 @@ class SpansMetrics(BaseResource): resource_type = "spans_metrics" resource_config = ResourceConfig( base_path="/api/v2/apm/config/metrics", + non_nullable_list_vals=[ + ( + "attributes.group_by", + {"path": "resource_hash", "tag_name": "resource"}, + ), + ], ) # Additional SpansMetrics specific attributes diff --git a/datadog_sync/model/synthetics_global_variables.py b/datadog_sync/model/synthetics_global_variables.py index febbb3f35..ed2cd5f8c 100644 --- a/datadog_sync/model/synthetics_global_variables.py +++ b/datadog_sync/model/synthetics_global_variables.py @@ -64,6 +64,9 @@ async def create_resource(self, _id: str, resource: Dict) -> Tuple[str, Dict]: if "value" not in resource["value"]: resource["value"]["value"] = "SECRET" + if "is_fido" in resource and resource["is_fido"]: + resource.pop("value") + resp = await destination_client.post(self.resource_config.base_path, resource) return _id, resp diff --git a/datadog_sync/model/synthetics_mobile_applications.py b/datadog_sync/model/synthetics_mobile_applications.py new file mode 100644 index 000000000..1985ab457 --- /dev/null +++ b/datadog_sync/model/synthetics_mobile_applications.py @@ -0,0 +1,80 @@ +# Unless explicitly stated otherwise all files in this repository are licensed +# under the 3-clause BSD style license (see LICENSE). +# This product includes software developed at Datadog (https://www.datadoghq.com/). +# Copyright 2019 Datadog, Inc. + +from __future__ import annotations +from typing import TYPE_CHECKING, Optional, List, Dict, Tuple, cast + +from datadog_sync.utils.base_resource import BaseResource, ResourceConfig + +if TYPE_CHECKING: + from datadog_sync.utils.custom_client import CustomClient + + +class SyntheticsMobileApplications(BaseResource): + resource_type = "synthetics_mobile_applications" + resource_config = ResourceConfig( + base_path="/api/unstable/synthetics/mobile/applications", + resource_connections={ + "synthetics_mobile_applications_versions": ["versions.id"], + }, + excluded_attributes=[ + "id", + "created_at", + "versions", + ], + non_nullable_attr=[ + "framework", + ], + null_values={ + "framework": [""], + }, + ) + # Additional Synthetics Mobile Applications specific attributes + + async def get_resources(self, client: CustomClient) -> List[Dict]: + resp = await client.get(self.resource_config.base_path) + return resp["applications"] + + async def import_resource(self, _id: Optional[str] = None, resource: Optional[Dict] = None) -> Tuple[str, Dict]: + if _id: + source_client = self.config.source_client + resource = await source_client.get(self.resource_config.base_path + f"/{_id}") + + resource = cast(dict, resource) + return resource["id"], resource + + async def pre_resource_action_hook(self, _id, resource: Dict) -> None: + pass + + async def pre_apply_hook(self) -> None: + pass + + async def create_resource(self, _id: str, resource: Dict) -> Tuple[str, Dict]: + destination_client = self.config.destination_client + resource.pop("versions", None) + resp = await destination_client.post(self.resource_config.base_path, resource) + return _id, resp + + async def update_resource(self, _id: str, resource: Dict) -> Tuple[str, Dict]: + destination_client = self.config.destination_client + destination_id = self.config.state.destination[self.resource_type][_id]["id"] + + # resource exists so we can update it + resource["id"] = destination_id + payload = {"data": resource} + resp = await destination_client.put( + self.resource_config.base_path + "/" + destination_id, + payload, + ) + return _id, resp + + async def delete_resource(self, _id: str) -> None: + destination_client = self.config.destination_client + await destination_client.delete( + self.resource_config.base_path + f"/{self.config.state.destination[self.resource_type][_id]['id']}" + ) + + def connect_id(self, key: str, r_obj: Dict, resource_to_connect: str) -> Optional[List[str]]: + pass diff --git a/datadog_sync/model/synthetics_mobile_applications_versions.py b/datadog_sync/model/synthetics_mobile_applications_versions.py new file mode 100644 index 000000000..3981f0b4d --- /dev/null +++ b/datadog_sync/model/synthetics_mobile_applications_versions.py @@ -0,0 +1,196 @@ +# Unless explicitly stated otherwise all files in this repository are licensed +# under the 3-clause BSD style license (see LICENSE). +# This product includes software developed at Datadog (https://www.datadoghq.com/). +# Copyright 2019 Datadog, Inc. + +from __future__ import annotations + +import aiohttp +import base64 +import certifi +import hashlib +import ssl +import sys +from typing import Optional, List, Dict, Tuple, cast + +from datadog_sync.utils.base_resource import BaseResource, ResourceConfig +from datadog_sync.utils.custom_client import CustomClient +from datadog_sync.utils.resource_utils import SkipResource + + +class SyntheticsMobileApplicationsVersions(BaseResource): + resource_type = "synthetics_mobile_applications_versions" + resource_config = ResourceConfig( + base_path="/api/unstable/synthetics/mobile/applications/versions", + resource_connections={ + "synthetics_mobile_applications": ["application_id"], + }, + excluded_attributes=[ + "id", + "created_at", + "extracted_metadata", + "file_name", + ], + ) + # Additional Synthetics Mobile Applications Versions specific attributes + applications_path = "/api/unstable/synthetics/mobile/applications" + + async def get_resources(self, client: CustomClient) -> List[Dict]: + """ + Mobile Application Versions don't have a list endpoint of their own + """ + resp = await client.get(self.applications_path) + + resources = [] + for application in resp["applications"]: + for version in application["versions"]: + _id = version["id"] + resource = await client.get(self.resource_config.base_path + f"/{_id}") + resources.append(resource) + return resources + + async def import_resource(self, _id: Optional[str] = None, resource: Optional[Dict] = None) -> Tuple[str, Dict]: + if _id: + source_client = self.config.source_client + resource = await source_client.get(self.resource_config.base_path + f"/{_id}") + + resource = cast(dict, resource) + return resource["id"], resource + + async def pre_resource_action_hook(self, _id, resource: Dict) -> None: + pass + + async def pre_apply_hook(self) -> None: + pass + + async def _create_mobile_version(self, _id: str, resource: Dict) -> Tuple[str, str]: + """ + Before creating the version we need to upload the mobile applicaiton + """ + self.config.logger.debug(f"create mobile app for resource: {_id}") + + # get the presigned url from source + source_client = self.config.source_client + presigned_download_url = await source_client.post(self.resource_config.base_path + f"/{_id}/download", {}) + presigned_download_url = presigned_download_url.replace("'", "") + self.config.logger.debug(f"downloading from: {presigned_download_url}") + + # download the blob the blob + ssl_context = ssl.create_default_context(cafile=certifi.where()) + session = aiohttp.ClientSession(connector=aiohttp.TCPConnector(ssl=ssl_context)) + async with session.get(presigned_download_url) as response: + blob = await response.read() + app_size = sys.getsizeof(blob) + self.config.logger.debug(f"app_size: {app_size}") + + # chunk size, 5 MB is the minimum or googleapis throws errors + chunk_size = 1024 * 1024 * 5 + + # calculate parts + parts = { + "appSize": app_size, + "parts": [], + } + num_of_parts = max(app_size // chunk_size, 1) + self.config.logger.debug(f"num_of_parts: {num_of_parts}") + for part_number in list(range(0, num_of_parts)): + start = part_number * chunk_size + end = (part_number + 1) * chunk_size + if end > len(blob): + end = len(blob) + chunk = blob[start:end] + md5_digest = base64.b64encode((hashlib.md5(chunk).digest())).decode("utf-8") + part = { + "md5": md5_digest, + "partNumber": part_number + 1, + } + parts["parts"].append(part) + self.config.logger.debug(f"parts: {parts}") + + # get multipart presigned urls + destination_application_id = resource["application_id"] + resp = await self.config.destination_client.post( + self.applications_path + f"/{destination_application_id}/multipart-presigned-urls", parts + ) + self.config.logger.debug(f"resp: {resp}") + + file_name = resp["file_name"] + upload_id = resp["multipart_presigned_urls_params"]["upload_id"] + key = resp["multipart_presigned_urls_params"]["key"] + urls = resp["multipart_presigned_urls_params"]["urls"] + self.config.logger.debug(f"file_name: {file_name}") + + # post to multipart presigned urls + try: + complete_parts = [] + for part in parts["parts"]: + headers = { + "content-md5": part["md5"], + } + part_number = part["partNumber"] + url = urls[str(part_number)] + start = (part_number - 1) * chunk_size + end = part_number * chunk_size + chunk = blob[start:end] + async with session.put(url=url, data=chunk, headers=headers) as response: + _ = await response.read() + if "Etag" in response.headers: + complete_parts.append( + {"PartNumber": int(part_number), "ETag": response.headers["Etag"].replace('"', "")} + ) + else: + raise SkipResource(_id, self.resource_type, f"Could not upload mobile application: {response}") + except Exception as err: + self.config.logger.error(f"Error duing mobile app upload: {err}") + raise err + finally: + await session.close() + self.config.logger.debug("all parts uploaded") + + # complete multipart upload + body = { + "key": key, + "uploadId": upload_id, + "parts": complete_parts, + } + _ = await self.config.destination_client.post( + self.applications_path + f"/{destination_application_id}/multipart-upload-complete", body + ) + self.config.logger.debug("mobile app upload completed") + return file_name, destination_application_id + + async def create_resource(self, _id: str, resource: Dict) -> Tuple[str, Dict]: + file_name, application_id = await self._create_mobile_version(_id, resource) + + self.config.logger.debug(f"got file_name: {file_name} and application_id: {application_id}") + resource["file_name"] = file_name + resource["application_id"] = application_id + destination_client = self.config.destination_client + resp = await destination_client.post(self.resource_config.base_path, resource) + return _id, resp + + async def update_resource(self, _id: str, resource: Dict) -> Tuple[str, Dict]: + destination_client = self.config.destination_client + destination_resource = self.config.state.destination[self.resource_type][_id] + destination_id = destination_resource["id"] + + if ( + resource["version_name"] == destination_resource["version_name"] + and resource["is_latest"] == destination_resource["is_latest"] + ): + raise SkipResource(_id, self.resource_type, "No change") + + resp = await destination_client.put( + self.resource_config.base_path + "/" + destination_id, + {"version_name": resource["version_name"], "is_latest": resource["is_latest"]}, + ) + return _id, resp + + async def delete_resource(self, _id: str) -> None: + destination_client = self.config.destination_client + await destination_client.delete( + self.resource_config.base_path + f"/{self.config.state.destination[self.resource_type][_id]['id']}" + ) + +# def connect_id(self, key: str, r_obj: Dict, resource_to_connect: str) -> Optional[List[str]]: +# pass diff --git a/datadog_sync/model/synthetics_tests.py b/datadog_sync/model/synthetics_tests.py index fd32f87c7..6dc53a78d 100644 --- a/datadog_sync/model/synthetics_tests.py +++ b/datadog_sync/model/synthetics_tests.py @@ -23,6 +23,8 @@ class SyntheticsTests(BaseResource): "config.variables.id", ], "roles": ["options.restricted_roles"], + "rum_applications": ["options.rumSettings.applicationId"], + "synthetics_mobile_applications": ["options.mobileApplication.referenceId"], }, base_path="/api/v1/synthetics/tests", excluded_attributes=[ @@ -57,6 +59,7 @@ class SyntheticsTests(BaseResource): # Additional SyntheticsTests specific attributes browser_test_path: str = "/api/v1/synthetics/tests/browser/{}" api_test_path: str = "/api/v1/synthetics/tests/api/{}" + mobile_test_path: str = "/api/v1/synthetics/tests/mobile/{}" async def get_resources(self, client: CustomClient) -> List[Dict]: resp = await client.get(self.resource_config.base_path) @@ -69,7 +72,10 @@ async def import_resource(self, _id: Optional[str] = None, resource: Optional[Di try: resource = await source_client.get(self.browser_test_path.format(_id)) except Exception: - resource = await source_client.get(self.api_test_path.format(_id)) + try: + resource = await source_client.get(self.api_test_path.format(_id)) + except Exception: + resource = await source_client.get(self.mobile_test_path.format(_id)) resource = cast(dict, resource) _id = resource["public_id"] @@ -77,6 +83,8 @@ async def import_resource(self, _id: Optional[str] = None, resource: Optional[Di resource = await source_client.get(self.browser_test_path.format(_id)) elif resource.get("type") == "api": resource = await source_client.get(self.api_test_path.format(_id)) + elif resource.get("type") == "mobile": + resource = await source_client.get(self.mobile_test_path.format(_id)) resource = cast(dict, resource) return f"{resource['public_id']}#{resource['monitor_id']}", resource @@ -132,5 +140,16 @@ def connect_id(self, key: str, r_obj: Dict, resource_to_connect: str) -> Optiona if not found: failed_connections.append(r_obj[key]) return failed_connections + elif resource_to_connect == "synthetics_mobile_applications": + resources = self.config.state.destination[resource_to_connect] + found = False + for k, v in resources.items(): + if k.startswith(r_obj[key]): + r_obj[key] = v["id"] + found = True + break + if not found: + failed_connections.append(r_obj[key]) + return failed_connections else: return super(SyntheticsTests, self).connect_id(key, r_obj, resource_to_connect) diff --git a/datadog_sync/models/__init__.py b/datadog_sync/models/__init__.py index 90b7b5637..78ac3c67d 100644 --- a/datadog_sync/models/__init__.py +++ b/datadog_sync/models/__init__.py @@ -27,6 +27,7 @@ from datadog_sync.model.powerpacks import Powerpacks from datadog_sync.model.restriction_policies import RestrictionPolicies from datadog_sync.model.roles import Roles +from datadog_sync.model.rum_applications import RUMApplications from datadog_sync.model.security_monitoring_rules import SecurityMonitoringRules from datadog_sync.model.sensitive_data_scanner_groups import SensitiveDataScannerGroups from datadog_sync.model.sensitive_data_scanner_groups_order import SensitiveDataScannerGroupsOrder @@ -35,6 +36,8 @@ from datadog_sync.model.slo_corrections import SLOCorrections from datadog_sync.model.spans_metrics import SpansMetrics from datadog_sync.model.synthetics_global_variables import SyntheticsGlobalVariables +from datadog_sync.model.synthetics_mobile_applications import SyntheticsMobileApplications +from datadog_sync.model.synthetics_mobile_applications_versions import SyntheticsMobileApplicationsVersions from datadog_sync.model.synthetics_private_locations import SyntheticsPrivateLocations from datadog_sync.model.synthetics_tests import SyntheticsTests from datadog_sync.model.teams import Teams diff --git a/datadog_sync/utils/base_resource.py b/datadog_sync/utils/base_resource.py index b686961f6..0dd83946f 100644 --- a/datadog_sync/utils/base_resource.py +++ b/datadog_sync/utils/base_resource.py @@ -61,6 +61,7 @@ class ResourceConfig: deep_diff_config: dict = field(default_factory=lambda: {"ignore_order": True}) tagging_config: Optional[TaggingConfig] = None async_lock: Optional[Lock] = None + non_nullable_list_vals: Optional[List[Tuple[str, Dict[str, str]]]] = None async def init_async(self) -> None: self.async_lock = Lock() @@ -158,7 +159,6 @@ async def _delete_resource(self, _id: str) -> None: self.config.state.destination[self.resource_type].pop(_id, None) - @abc.abstractmethod def connect_id(self, key: str, r_obj: Dict, resource_to_connect: str) -> Optional[List[str]]: resources = self.config.state.destination[resource_to_connect] diff --git a/datadog_sync/utils/resource_utils.py b/datadog_sync/utils/resource_utils.py index 4b5d27db4..4115a0f62 100644 --- a/datadog_sync/utils/resource_utils.py +++ b/datadog_sync/utils/resource_utils.py @@ -162,6 +162,7 @@ def find_attr(keys_list_str: str, resource_to_connect: str, r_obj: Any, connect_ def prep_resource(resource_config, resource): remove_excluded_attr(resource_config, resource) remove_non_nullable_attributes(resource_config, resource) + remove_non_nullable_list_vals(resource_config, resource) def remove_excluded_attr(resource_config, resource): @@ -178,6 +179,30 @@ def remove_non_nullable_attributes(resource_config, resource): del_null_attr(resource_config, k_list, resource) +def remove_non_nullable_list_vals(resource_config, resource): + if resource_config.non_nullable_list_vals: + for key, val in resource_config.non_nullable_list_vals: + k_list = key.split(".") + del_list_val(k_list, resource, None, val) + + +def del_list_val(k_list, resource, key, val): + if len(k_list) > 0: + key = k_list.pop(0) + del_list_val(k_list, resource[key], key, val) + return + + if not isinstance(resource, list): + log.error(f"resource: {resource} is not a list") + + try: + index_of_val = resource.index(val) + resource.pop(index_of_val) + log.debug(f"Removed {val} from list {key}") + except ValueError as err: + log.debug(f"{val} not in list {key}, err: {err}") + + def del_attr(k_list, resource): if isinstance(resource, list): for r in resource: @@ -209,12 +234,14 @@ def del_null_attr(resource_config, k_list, resources): def check_diff(resource_config, resource, state): - return DeepDiff( + diff = DeepDiff( resource, state, exclude_paths=resource_config.excluded_attributes, **resource_config.deep_diff_config, ) + #log.info(f"diff: {diff}") # this debug statement will break tests that look for diffs + return diff def init_topological_sorter(graph: Dict[Tuple[str, str], Set[Tuple[str, str]]]) -> TopologicalSorter: diff --git a/datadog_sync/utils/resources_handler.py b/datadog_sync/utils/resources_handler.py index ee56d39bc..8012a42cd 100644 --- a/datadog_sync/utils/resources_handler.py +++ b/datadog_sync/utils/resources_handler.py @@ -138,7 +138,9 @@ async def _apply_resource_cb(self, q_item: List) -> None: prep_resource(r_class.resource_config, resource) if _id in self.config.state.destination[resource_type]: - diff = check_diff(r_class.resource_config, resource, self.config.state.destination[resource_type][_id]) + destination_copy = deepcopy(self.config.state.destination[resource_type][_id]) + prep_resource(r_class.resource_config, destination_copy) + diff = check_diff(r_class.resource_config, resource, destination_copy) if not diff: raise SkipResource(_id, resource_type, "No differences detected.") diff --git a/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_no_resource_diffs.frozen b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_no_resource_diffs.frozen new file mode 100644 index 000000000..a1d5ba813 --- /dev/null +++ b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_no_resource_diffs.frozen @@ -0,0 +1 @@ +2025-08-27T16:02:58.201061-04:00 \ No newline at end of file diff --git a/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_no_resource_diffs.yaml b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_no_resource_diffs.yaml new file mode 100644 index 000000000..810a4fd93 --- /dev/null +++ b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_no_resource_diffs.yaml @@ -0,0 +1,7058 @@ +interactions: +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/users?page%5Bnumber%5D=0&page%5Bsize%5D=500 + response: + body: + string: '{"data": [{"type": "users", "id": "6b69113d-6f18-11f0-9ad5-1ad15dd71168", + "attributes": {"name": "Ida Adjivon", "handle": "ida.adjivon@datadoghq.com", + "created_at": "2025-08-01T20:45:12.043180+00:00", "modified_at": "2025-08-01T21:35:25.635446+00:00", + "email": "ida.adjivon@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/d3ff11e3ff125d30050f4dfff3fa614c?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "81f6f2c7-923f-11ef-879a-6ee0822e247c", "attributes": {"name": "Justine + Lo", "handle": "justine.lo@datadoghq.com", "created_at": "2024-10-24T19:38:13.281489+00:00", + "modified_at": "2024-10-25T14:18:33.835459+00:00", "email": "justine.lo@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/7d75964971289cf50e6090d76b45e3f6?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "b301b340-8582-11ef-ba31-3219ecc6cb25", "attributes": {"name": "Louis + Cheynel", "handle": "louis.cheynel@datadoghq.com", "created_at": "2024-10-08T14:36:26.725077+00:00", + "modified_at": "2025-02-19T21:12:46.164959+00:00", "email": "louis.cheynel@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/791d1a56daa2bd0f5bb25ed286d3f8bb?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": true, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Disabled", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "30533c3c-8582-11ef-938f-cecf6f9ed4ad", "attributes": {"name": "Michael + Richey", "handle": "michael.richey+ddreu1@datadoghq.com", "created_at": "2024-10-08T14:32:47.477901+00:00", + "modified_at": "2024-10-08T14:32:47.477901+00:00", "email": "michael.richey+ddreu1@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/b5b0452adbe01caf57c1e5f6fb97a631?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "693fe720-9569-11ef-969d-da7ad0900005"}, {"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, + "org": {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "98fe080d-8fda-11ef-aa03-c6ac9d6cb0b0", "attributes": + {"name": "Michael Richey", "handle": "michael.richey@datadoghq.com", "created_at": + "2024-10-21T18:30:50.420260+00:00", "modified_at": "2025-03-03T15:47:53.789029+00:00", + "email": "michael.richey@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/3ae7b2387f1a71bbb857d6f03993bdf3?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "b32e572e-8582-11ef-98fe-f2a776cd34b8", "attributes": {"name": "Ron + Hay", "handle": "ron.hay@datadoghq.com", "created_at": "2024-10-08T14:36:27.017641+00:00", + "modified_at": "2025-06-10T13:33:23.138895+00:00", "email": "ron.hay@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/1c9c2a5daac55fc5ae86178cd5e7b9c2?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "265f9002-9b9e-11ef-9152-56a58ecd5b70", "attributes": + {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com", "created_at": + "2024-11-05T17:48:22.271026+00:00", "modified_at": "2025-01-23T19:52:06.634848+00:00", + "email": "sherzod.karimov@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/993f2cc00ad75833dbc76f2a93bb227d?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "693fe720-9569-11ef-969d-da7ad0900005"}, {"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "b32f283f-8582-11ef-be6e-1e59aae1ca5b", "attributes": + {"name": "Tim Alexander", "handle": "tim.alexander@datadoghq.com", "created_at": + "2024-10-08T14:36:27.022996+00:00", "modified_at": "2024-10-08T15:29:54.659973+00:00", + "email": "tim.alexander@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/6269dae26686287d4bdd307a26e33f34?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}], + "included": [{"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005", + "attributes": {"name": "Datadog Admin Role", "managed": true, "created_at": + "2024-10-08T14:32:47.147289+00:00", "modified_at": "2024-10-08T14:32:47.147932+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e"}, {"type": + "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": "permissions", + "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", "id": + "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": + "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": "permissions", + "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", "id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d"}, + {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19"}, {"type": + "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, {"type": "permissions", + "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": "permissions", "id": + "04668d0a-ec5c-11ea-9483-37d199df4587"}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, + {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc"}, {"type": + "permissions", "id": "04668f62-ec5c-11ea-9483-0fe541ab993f"}, {"type": "permissions", + "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02"}, {"type": "permissions", "id": + "046690de-ec5c-11ea-9483-bbcd905fcdca"}, {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf"}, + {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": + "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", + "id": "8b753262-f925-11ea-82fc-93f07fd96e76"}, {"type": "permissions", "id": + "9311970e-f925-11ea-ab4d-1760e76381c1"}, {"type": "permissions", "id": "998aabac-f925-11ea-b43d-8f1f42f3894e"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "72bc07d8-1472-11eb-a97b-8bff514d7382"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e"}, {"type": + "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": "permissions", + "id": "c8654332-2dce-11eb-9145-d33d26eeb65f"}, {"type": "permissions", "id": + "d23cc894-2dce-11eb-9145-37bf7b2dadc2"}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a"}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", "id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, + {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005"}, {"type": + "permissions", "id": "b39fb79a-90af-11eb-9428-da7ad0900005"}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "993b34d6-b16d-11eb-a891-da7ad0900005"}, + {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, {"type": + "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": + "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "c948b30a-16c7-11ec-88cc-da7ad0900005"}, + {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", + "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": + "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005"}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": + "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005"}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "3ad32264-f311-11ec-a058-da7ad0900005"}, {"type": "permissions", + "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005"}, + {"type": "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", + "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": + "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005"}, + {"type": "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": + "8b254e6a-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005"}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": "81e488c0-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", "id": + "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, + {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, + {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, {"type": + "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": + "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", "id": "4316b75c-093f-11ee-98e9-da7ad0900005"}, + {"type": "permissions", "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": + "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", + "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, {"type": "permissions", "id": + "eadf64b2-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": "eadf675a-2199-11ee-9a0e-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005"}, {"type": "permissions", + "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": + "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", + "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": + "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", + "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}, {"type": "permissions", "id": + "f2cc9374-9841-11ee-a301-da7ad0900005"}, {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005"}, + {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, {"type": + "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": + "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005"}, + {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": + "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", + "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": + "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd09204-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", + "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": + "permissions", "id": "ef950332-13a0-11ef-b582-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75066402-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005"}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", + "id": "06e3004e-5987-11ef-89c3-da7ad0900005"}, {"type": "permissions", "id": + "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", + "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005"}, + {"type": "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": + "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", + "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": + "83fc9760-7c51-11ef-b846-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "80ae7688-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": "71949074-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": + "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", + "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": "permissions", "id": + "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005"}, + {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", + "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", + "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", "id": + "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": "9b00ed28-da87-11ef-9de6-da7ad0900005"}, + {"type": "permissions", "id": "9b010d44-da87-11ef-9de6-da7ad0900005"}, {"type": + "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005"}, {"type": "permissions", + "id": "7ad4419a-e288-11ef-bbbc-da7ad0900005"}, {"type": "permissions", "id": + "4a6c29d6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": "4a6cadb6-e806-11ef-8710-da7ad0900005"}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": + "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", + "id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", "id": + "23f76dc4-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, + {"type": "permissions", "id": "02e65e42-fabc-11ef-a653-da7ad0900005"}, {"type": + "permissions", "id": "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", + "id": "9bb09240-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": + "9bb09a10-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", "id": + "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": "fbf841c6-2618-11f0-8595-da7ad0900005"}, + {"type": "permissions", "id": "2cead6ec-34db-11f0-9eb2-da7ad0900005"}, {"type": + "permissions", "id": "12465c5e-3a5c-11f0-becd-da7ad0900005"}, {"type": "permissions", + "id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005"}, {"type": "permissions", "id": + "d2c0335e-5688-11f0-ad5e-da7ad0900005"}, {"type": "permissions", "id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005"}, + {"type": "permissions", "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005"}, {"type": + "permissions", "id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005"}]}}}, {"type": + "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "attributes": + {"name": "logs_read_index_data", "display_name": "Logs Read Index Data", "description": + "Read log data, possibly scoped to one or more indexes. In order to read log + data, a user must have both this permission and Logs Read Data. This permission + can be granted in a limited capacity per index from the Logs interface or + APIs. If granted via the Roles interface or API the permission has global + scope. Restrictions are limited to the Log Management product.", "created": + "2018-10-31T14:00:23.650159+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", + "attributes": {"name": "logs_modify_indexes", "display_name": "Logs Modify + Indexes", "description": "Read and modify all indexes in your account. This + includes the ability to grant the Logs Read Index Data and Logs Write Exclusion + Filters permission to other roles, for some or all indexes.", "created": "2018-10-31T14:00:23.664332+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "attributes": + {"name": "logs_live_tail", "display_name": "Logs Live Tail", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "created": "2018-10-31T14:00:23.676180+00:00", "group_name": + "Log Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "attributes": + {"name": "logs_write_exclusion_filters", "display_name": "Logs Write Exclusion + Filters", "description": "Add and change exclusion filters for all or some + log indexes. Can be granted in a limited capacity per index to specific roles + via the Logs interface or API. If granted from the Roles interface or API, + the permission has global scope.", "created": "2018-10-31T14:00:23.699543+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "attributes": + {"name": "logs_write_pipelines", "display_name": "Logs Write Pipelines", "description": + "Add and change log pipeline configurations, including the ability to grant + the Logs Write Processors permission to other roles, for some or all pipelines.", + "created": "2018-10-31T14:00:23.710821+00:00", "group_name": "Log Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "505f4538-dd15-11e8-9308-47a4732f715f", "attributes": {"name": "logs_write_processors", + "display_name": "Logs Write Processors", "description": "Add and change some + or all log processor configurations. Can be granted in a limited capacity + per pipeline to specific roles via the Logs interface or API. If granted via + the Roles interface or API the permission has global scope.", "created": "2018-10-31T14:00:24.726927+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e", "attributes": + {"name": "logs_write_archives", "display_name": "Logs Write Archives", "description": + "Add and edit Log Archives.", "created": "2018-10-31T14:00:24.730570+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "attributes": + {"name": "logs_generate_metrics", "display_name": "Logs Generate Metrics", + "description": "Create custom metrics from logs.", "created": "2019-07-25T12:37:55.949477+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "attributes": + {"name": "dashboards_read", "display_name": "Dashboards Read", "description": + "View dashboards.", "created": "2019-09-10T14:41:53.120685+00:00", "group_name": + "Dashboards", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "attributes": {"name": "dashboards_write", + "display_name": "Dashboards Write", "description": "Create and change dashboards.", + "created": "2019-09-10T14:41:53.136336+00:00", "group_name": "Dashboards", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f", "attributes": {"name": "dashboards_public_share", + "display_name": "Shared Dashboards Public Write", "description": "Create, + modify and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "created": "2019-09-10T14:41:53.150548+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "attributes": + {"name": "monitors_read", "display_name": "Monitors Read", "description": + "View monitors.", "created": "2019-09-16T18:49:59.270746+00:00", "group_name": + "Monitors", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "attributes": {"name": "monitors_write", + "display_name": "Monitors Write", "description": "Edit and delete individual + monitors.", "created": "2019-09-16T18:50:07.944781+00:00", "group_name": "Monitors", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "d3159858-d8b2-11e9-a336-e363d6ef331b", "attributes": {"name": "monitors_downtime", + "display_name": "Manage Downtimes", "description": "Set downtimes to suppress + alerts from any monitor in an organization. Mute and unmute monitors. The + ability to write monitors is not required to set downtimes.", "created": "2019-09-16T18:50:16.869407+00:00", + "group_name": "Monitors", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "attributes": + {"name": "logs_read_data", "display_name": "Logs Read Data", "description": + "Read log data. In order to read log data, a user must have both this permission + and Logs Read Index Data. This permission can be restricted with restriction + queries. Restrictions are limited to the Log Management product.", "created": + "2020-04-06T16:29:12.337169+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "attributes": {"name": "logs_read_archives", "display_name": "Logs Read Archives", + "description": "Read Log Archives location and use it for rehydration.", "created": + "2020-04-23T07:45:13.801938+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "attributes": {"name": "security_monitoring_rules_read", "display_name": "Security + Rules Read", "description": "Read Detection Rules.", "created": "2020-06-09T13:55:12.166762+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", + "attributes": {"name": "security_monitoring_rules_write", "display_name": + "Security Rules Write", "description": "Create and edit Detection Rules.", + "created": "2020-06-09T13:55:21.036857+00:00", "group_name": "Cloud Security + Platform", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9", "attributes": {"name": "security_monitoring_signals_read", + "display_name": "Security Signals Read", "description": "View Security Signals.", + "created": "2020-06-09T13:55:29.398066+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", "attributes": {"name": "security_monitoring_signals_write", + "display_name": "Security Signals Write", "description": "Modify Security + Signals.", "created": "2021-08-17T15:11:19.976019+00:00", "group_name": "Cloud + Security Platform", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d", "attributes": + {"name": "user_access_invite", "display_name": "User Access Invite", "description": + "Invite other users to your organization.", "created": "2020-08-25T19:10:01.692112+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", + "attributes": {"name": "user_access_manage", "display_name": "User Access + Manage", "description": "Disable users, manage user roles, manage SAML-to-role + mappings, and configure logs restriction queries.", "created": "2020-08-25T19:10:12.116164+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30", + "attributes": {"name": "user_app_keys", "display_name": "User App Keys", "description": + "View and manage Application Keys owned by the user.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "attributes": {"name": "org_app_keys_read", "display_name": "Org App Keys + Read", "description": "View Application Keys owned by all users in the organization.", + "created": "2020-09-01T14:04:14.317866+00:00", "group_name": "API and Application + Keys", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "04668d0a-ec5c-11ea-9483-37d199df4587", "attributes": {"name": "org_app_keys_write", + "display_name": "Org App Keys Write", "description": "Manage Application Keys + owned by all users in the organization.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "attributes": {"name": "synthetics_private_location_read", "display_name": + "Synthetics Private Locations Read", "description": "View, search, and use + Synthetics private locations.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Synthetic Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", + "attributes": {"name": "synthetics_private_location_write", "display_name": + "Synthetics Private Locations Write", "description": "Create and delete private + locations in addition to having access to the associated installation guidelines.", + "created": "2020-09-01T14:04:14.317866+00:00", "group_name": "Synthetic Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "04668f62-ec5c-11ea-9483-0fe541ab993f", "attributes": {"name": "billing_read", + "display_name": "Billing Read", "description": "View your organization''s + subscription and payment method but not make edits.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "attributes": + {"name": "billing_edit", "display_name": "Billing Edit", "description": "Manage + your organization''s subscription and payment method.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "attributes": {"name": "usage_read", "display_name": "Usage Read", "description": + "View your organization''s usage and usage attribution.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf", "attributes": + {"name": "usage_edit", "display_name": "Usage Edit", "description": "Manage + your organization''s usage attribution set-up.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "attributes": {"name": "metric_tags_write", "display_name": "Metric Tags Write", + "description": "Edit and save tag configurations for custom metrics.", "created": + "2020-09-01T14:04:14.317866+00:00", "group_name": "Metrics", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "attributes": {"name": "logs_write_historical_view", "display_name": "Logs + Write Historical Views", "description": "Rehydrate logs from Archives.", "created": + "2020-09-16T08:42:43.928080+00:00", "group_name": "Log Management", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "attributes": {"name": "audit_logs_read", "display_name": "Audit Trail Read", + "description": "View Audit Trail in your organization.", "created": "2020-09-17T20:37:03.702585+00:00", + "group_name": "Compliance", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9311970e-f925-11ea-ab4d-1760e76381c1", "attributes": + {"name": "api_keys_read", "display_name": "API Keys Read", "description": + "List and retrieve the key values of all API Keys in your organization.", + "created": "2020-09-17T20:37:16.471514+00:00", "group_name": "API and Application + Keys", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "attributes": {"name": "api_keys_write", + "display_name": "API Keys Write", "description": "Create and rename API Keys + for your organization.", "created": "2020-09-17T20:37:27.331389+00:00", "group_name": + "API and Application Keys", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "attributes": + {"name": "synthetics_global_variable_read", "display_name": "Synthetics Global + Variable Read", "description": "View, search, and use Synthetics global variables.", + "created": "2020-09-17T20:37:50.165103+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", "attributes": {"name": "synthetics_global_variable_write", + "display_name": "Synthetics Global Variable Write", "description": "Create, + edit, and delete global variables for Synthetics.", "created": "2020-09-17T20:38:01.966230+00:00", + "group_name": "Synthetic Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "b6858556-f925-11ea-9222-1f47b8677b93", + "attributes": {"name": "synthetics_read", "display_name": "Synthetics Read", + "description": "List and view configured Synthetic tests and test results.", + "created": "2020-09-17T20:38:15.951574+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "attributes": {"name": "synthetics_write", + "display_name": "Synthetics Write", "description": "Create, edit, and delete + Synthetic tests.", "created": "2020-09-17T20:38:27.421632+00:00", "group_name": + "Synthetic Monitoring", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "attributes": + {"name": "synthetics_default_settings_read", "display_name": "Synthetics Default + Settings Read", "description": "View the default settings for Synthetic Monitoring.", + "created": "2020-09-17T20:38:49.527477+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "cf223140-f925-11ea-a3a2-df370532bcf7", "attributes": {"name": "synthetics_default_settings_write", + "display_name": "Synthetics Default Settings Write", "description": "Edit + the default settings for Synthetic Monitoring.", "created": "2020-09-17T20:38:57.244987+00:00", + "group_name": "Synthetic Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", + "attributes": {"name": "logs_write_facets", "display_name": "Logs Write Facets", + "description": "Create or edit Log Facets.", "created": "2020-10-14T12:54:16.607129+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "attributes": + {"name": "service_account_write", "display_name": "Service Account Write", + "description": "Create, disable, and use Service Accounts in your organization.", + "created": "2020-10-22T14:25:34.868208+00:00", "group_name": "Access Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "attributes": {"name": "apm_read", + "display_name": "APM Read", "description": "Read and query APM and Trace Analytics.", + "created": "2020-11-23T20:59:02.902692+00:00", "group_name": "APM", "display_type": + "read", "restricted": true}}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "attributes": {"name": "apm_retention_filter_read", "display_name": "APM Retention + Filters Read", "description": "Read trace retention filters. A user with this + permission can view the retention filters page, list of filters, their statistics, + and creation info.", "created": "2020-11-23T20:59:11.833795+00:00", "group_name": + "APM", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "attributes": {"name": "apm_retention_filter_write", + "display_name": "APM Retention Filters Write", "description": "Create, edit, + and delete trace retention filters. A user with this permission can create + new retention filters, and update or delete to existing retention filters.", + "created": "2020-11-23T20:59:19.531425+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", + "attributes": {"name": "apm_service_ingest_read", "display_name": "APM Service + Ingest Read", "description": "Access service ingestion pages. A user with + this permission can view the service ingestion page, list of root services, + their statistics, and creation info.", "created": "2020-11-23T20:59:25.933546+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "c8654332-2dce-11eb-9145-d33d26eeb65f", "attributes": + {"name": "apm_service_ingest_write", "display_name": "APM Service Ingest Write", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "created": "2020-11-23T20:59:31.352238+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "attributes": + {"name": "apm_apdex_manage_write", "display_name": "APM Apdex Manage Write", + "description": "Set Apdex T value on any service. A user with this permission + can set the T value from the Apdex graph on the service page.", "created": + "2020-11-23T20:59:47.864214+00:00", "group_name": "APM", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c", + "attributes": {"name": "apm_tag_management_write", "display_name": "APM Tag + Management Write", "description": "Edit second primary tag selection. A user + with this permission can modify the second primary tag dropdown in the APM + settings page.", "created": "2020-11-23T21:00:01.066421+00:00", "group_name": + "APM", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "attributes": {"name": "apm_primary_operation_write", + "display_name": "APM Primary Operation Write", "description": "Edit the operation + name value selection. A user with this permission can modify the operation + name list in the APM settings page and the operation name controller on the + service page.", "created": "2020-11-23T21:00:18.680068+00:00", "group_name": + "APM", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", "attributes": {"name": "audit_logs_write", + "display_name": "Audit Trail Write", "description": "Configure Audit Trail + in your organization.", "created": "2020-12-01T19:12:04.940111+00:00", "group_name": + "Compliance", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", "attributes": {"name": "rum_apps_write", + "display_name": "RUM Apps Write", "description": "Create, edit, and delete + RUM applications. Creating a RUM application automatically generates a Client + Token. In order to create Client Tokens directly, a user needs the Client + Tokens Write permission.", "created": "2021-01-11T19:07:15.721075+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "attributes": {"name": "debugger_write", "display_name": "Dynamic Instrumentation + Write", "description": "Edit Dynamic Instrumentation configuration. Create + or modify Dynamic Instrumentation probes that do not capture function state.", + "created": "2021-03-08T15:07:07.319753+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "attributes": {"name": "debugger_read", "display_name": "Dynamic Instrumentation + Read", "description": "View Dynamic Instrumentation configuration.", "created": + "2021-03-08T15:07:07.333513+00:00", "group_name": "APM", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005", + "attributes": {"name": "data_scanner_read", "display_name": "Data Scanner + Read", "description": "View Sensitive Data Scanner configurations and scanning + results.", "created": "2021-03-29T16:56:27.205044+00:00", "group_name": "Compliance", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "attributes": {"name": "data_scanner_write", + "display_name": "Data Scanner Write", "description": "Edit Sensitive Data + Scanner configurations.", "created": "2021-03-29T16:56:27.219481+00:00", "group_name": + "Compliance", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "attributes": {"name": "org_management", + "display_name": "Org Management", "description": "Edit org configurations, + including authentication and certain security preferences such as configuring + SAML, renaming an org, configuring allowed login methods, creating child orgs, + subscribing & unsubscribing from apps in the marketplace, and enabling & disabling + Remote Configuration for the entire organization.", "created": "2021-04-23T17:51:22.555499+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "99397470-b16d-11eb-a891-da7ad0900005", + "attributes": {"name": "security_monitoring_filters_read", "display_name": + "Security Filters Read", "description": "Read Security Filters.", "created": + "2021-05-10T08:56:24.514661+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "993b34d6-b16d-11eb-a891-da7ad0900005", "attributes": {"name": "security_monitoring_filters_write", + "display_name": "Security Filters Write", "description": "Create, edit, and + delete Security Filters.", "created": "2021-05-10T08:56:24.527411+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", + "attributes": {"name": "incident_read", "display_name": "Incidents Read", + "description": "View incidents in Datadog.", "created": "2021-06-22T15:11:07.986072+00:00", + "group_name": "Case and Incident Management", "display_type": "read", "restricted": + true}}, {"type": "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005", + "attributes": {"name": "incident_write", "display_name": "Incidents Write", + "description": "Create, view, and manage incidents in Datadog.", "created": + "2021-06-22T15:11:08.003239+00:00", "group_name": "Case and Incident Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "122f7508-d36c-11eb-b2bf-da7ad0900005", "attributes": {"name": "incident_settings_read", + "display_name": "Incident Settings Read", "description": "View Incident Settings.", + "created": "2021-06-22T15:11:07.995787+00:00", "group_name": "Case and Incident + Management", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "attributes": {"name": "incident_settings_write", + "display_name": "Incident Settings Write", "description": "Configure Incident + Settings.", "created": "2021-06-22T15:11:07.999194+00:00", "group_name": "Case + and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005", "attributes": + {"name": "appsec_event_rule_read", "display_name": "Application Security Management + Event Rules Read", "description": "View Application Security Management Event + Rules.", "created": "2021-07-19T13:26:35.252432+00:00", "group_name": "Cloud + Security Platform", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005", "attributes": + {"name": "appsec_event_rule_write", "display_name": "Application Security + Management Event Rules Write", "description": "Edit Application Security Management + Event Rules.", "created": "2021-07-19T13:26:35.260787+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "attributes": + {"name": "rum_apps_read", "display_name": "RUM Apps Read", "description": + "View RUM Applications data.", "created": "2021-08-02T09:46:22.567371+00:00", + "group_name": "Real User Monitoring", "display_type": "read", "restricted": + true}}, {"type": "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", + "attributes": {"name": "rum_session_replay_read", "display_name": "RUM Session + Replay Read", "description": "View Session Replays.", "created": "2021-08-02T09:46:22.572685+00:00", + "group_name": "Real User Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "c94811de-16c7-11ec-88cc-da7ad0900005", + "attributes": {"name": "security_monitoring_notification_profiles_read", "display_name": + "Security Notification Rules Read", "description": "Read Notification Rules.", + "created": "2021-09-16T08:26:27.288070+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "attributes": {"name": "security_monitoring_notification_profiles_write", + "display_name": "Security Notification Rules Write", "description": "Create, + edit, and delete Notification Rules.", "created": "2021-09-16T08:26:27.292835+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005", + "attributes": {"name": "apm_generate_metrics", "display_name": "APM Generate + Metrics", "description": "Create custom metrics from spans.", "created": "2021-09-16T15:31:28.639581+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005", "attributes": + {"name": "security_monitoring_cws_agent_rules_read", "display_name": "Cloud + Workload Security Agent Rules Read", "description": "Read Cloud Workload Security + Agent Rules.", "created": "2021-11-17T10:41:45.755009+00:00", "group_name": + "Cloud Security Platform", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "f5e1489a-4792-11ec-944b-da7ad0900005", "attributes": + {"name": "security_monitoring_cws_agent_rules_write", "display_name": "Cloud + Workload Security Agent Rules Write", "description": "Create, edit, and delete + Cloud Workload Security Agent Rules.", "created": "2021-11-17T10:41:45.761956+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", + "attributes": {"name": "apm_pipelines_write", "display_name": "APM Pipelines + Write", "description": "Add and change APM pipeline configurations.", "created": + "2021-12-06T14:51:25.389398+00:00", "group_name": "APM", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005", + "attributes": {"name": "apm_pipelines_read", "display_name": "APM Pipelines + Read", "description": "View APM pipeline configurations.", "created": "2021-12-07T11:21:23.741014+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "attributes": + {"name": "observability_pipelines_read", "display_name": "Observability Pipelines + Read", "description": "View pipelines in your organization.", "created": "2021-12-09T00:11:41.567875+00:00", + "group_name": "Observability Pipelines", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "attributes": {"name": "observability_pipelines_write", "display_name": "Observability + Pipelines Write", "description": "Edit pipelines in your organization.", "created": + "2021-12-09T00:11:41.572883+00:00", "group_name": "Observability Pipelines", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "e31e0056-8502-11ec-b266-da7ad0900005", "attributes": {"name": "workflows_read", + "display_name": "Workflows Read", "description": "View workflows.", "created": + "2022-02-03T15:06:38.846399+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "e31f0230-8502-11ec-b266-da7ad0900005", "attributes": {"name": "workflows_write", + "display_name": "Workflows Write", "description": "Create, edit, and delete + workflows.", "created": "2022-02-03T15:06:38.853003+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "workflows_run", "display_name": "Workflows Run", "description": + "Run workflows.", "created": "2022-02-03T15:06:38.849099+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "connections_read", "display_name": "Connections Read", + "description": "List and view available connections. Connections contain secrets + that cannot be revealed.", "created": "2022-02-03T15:06:38.837721+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "connections_write", "display_name": "Connections Write", + "description": "Create and delete connections.", "created": "2022-02-03T15:06:38.843395+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", + "attributes": {"name": "notebooks_read", "display_name": "Notebooks Read", + "description": "View notebooks.", "created": "2022-03-02T18:51:33.435297+00:00", + "group_name": "Notebooks", "display_type": "read", "restricted": true}}, {"type": + "permissions", "id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "attributes": + {"name": "notebooks_write", "display_name": "Notebooks Write", "description": + "Create and change notebooks.", "created": "2022-03-02T18:51:33.439640+00:00", + "group_name": "Notebooks", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005", "attributes": + {"name": "logs_delete_data", "display_name": "Logs Delete Data", "description": + "Delete data from your Logs, including entire indexes.", "created": "2022-02-25T18:51:34.198635+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005", "attributes": + {"name": "rum_generate_metrics", "display_name": "RUM Generate Metrics", "description": + "Create custom metrics from RUM events.", "created": "2022-04-11T16:26:30.469616+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "attributes": {"name": "aws_configurations_manage", "display_name": "AWS Configurations + Manage", "description": "Add or remove but not edit AWS integration configurations.", + "created": "2022-04-26T20:21:48.019179+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "7fbe2266-c59e-11ec-90fb-da7ad0900005", "attributes": {"name": "azure_configurations_manage", + "display_name": "Azure Configurations Manage", "description": "Add or remove + but not edit Azure integration configurations.", "created": "2022-04-26T20:21:48.031171+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "attributes": + {"name": "gcp_configurations_manage", "display_name": "GCP Configurations + Manage", "description": "Add or remove but not edit GCP integration configurations.", + "created": "2022-04-26T20:21:48.027662+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "attributes": {"name": "manage_integrations", + "display_name": "Integrations Manage", "description": "Install, uninstall, + and configure integrations.", "created": "2022-04-26T20:21:48.034453+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "attributes": + {"name": "usage_notifications_read", "display_name": "Usage Notifications + Read", "description": "Receive notifications and view currently configured + notification settings.", "created": "2022-05-17T13:56:29.090665+00:00", "group_name": + "Billing and Usage", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "attributes": + {"name": "usage_notifications_write", "display_name": "Usage Notifications + Write", "description": "Receive notifications and configure notification settings.", + "created": "2022-05-17T13:56:29.094457+00:00", "group_name": "Billing and + Usage", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "attributes": {"name": "generate_dashboard_reports", + "display_name": "Dashboards Report Write", "description": "Schedule PDF reports + from a dashboard.", "created": "2022-06-06T18:15:47.465864+00:00", "group_name": + "Dashboards", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "f33f74be-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_read", + "display_name": "SLOs Read", "description": "View SLOs and status corrections.", + "created": "2022-06-08T16:20:45.638848+00:00", "group_name": "Service Level + Objectives", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "f340161c-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_write", + "display_name": "SLOs Write", "description": "Create, edit, and delete SLOs.", + "created": "2022-06-08T16:20:45.643085+00:00", "group_name": "Service Level + Objectives", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_corrections", + "display_name": "SLOs Status Corrections", "description": "Apply, edit, and + delete SLO status corrections. A user with this permission can make status + corrections, even if they do not have permission to edit those SLOs.", "created": + "2022-06-08T16:20:45.632820+00:00", "group_name": "Service Level Objectives", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "3ad32264-f311-11ec-a058-da7ad0900005", "attributes": {"name": "monitor_config_policy_write", + "display_name": "Monitor Configuration Policy Write", "description": "Create, + update, and delete monitor configuration policies.", "created": "2022-06-23T16:26:26.854058+00:00", + "group_name": "Monitors", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f42ef088-173a-11ed-8654-da7ad0900005", "attributes": + {"name": "apm_service_catalog_write", "display_name": "Service Catalog Write", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "created": "2022-08-08T16:55:49.060954+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "attributes": + {"name": "apm_service_catalog_read", "display_name": "Service Catalog Read", + "description": "View service catalog and service definitions.", "created": + "2022-08-08T16:55:49.055930+00:00", "group_name": "APM", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", + "attributes": {"name": "logs_write_forwarding_rules", "display_name": "Logs + Write Forwarding Rules", "description": "Add and edit forwarding destinations + and rules for logs.", "created": "2022-08-08T21:30:48.328740+00:00", "group_name": + "Log Management", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005", "attributes": + {"name": "connections_resolve", "display_name": "Connections Resolve", "description": + "Resolve connections.", "created": "2022-08-25T15:26:23.943459+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_protect_read", "display_name": "Application + Security Management Protect Read", "description": "View blocked attackers.", + "created": "2022-10-27T09:25:59.057166+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "attributes": {"name": "appsec_protect_write", + "display_name": "Application Security Management Protect Write", "description": + "Manage blocked attackers.", "created": "2022-10-27T09:25:59.060959+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_activation_read", "display_name": "Application + Security Management 1-click Enablement Read", "description": "View whether + Application Security Management has been enabled or disabled on services via + 1-click enablement with Remote Configuration.", "created": "2022-10-27T09:25:59.047444+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_activation_write", "display_name": "Application + Security Management 1-click Enablement Write", "description": "Enable or disable + Application Security Management on services via 1-click enablement.", "created": + "2022-10-27T09:25:59.053394+00:00", "group_name": "Cloud Security Platform", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "c0490360-5a12-11ed-adbe-da7ad0900005", "attributes": {"name": "apps_run", + "display_name": "Apps View", "description": "View and run Apps in App Builder.", + "created": "2022-11-01T18:26:50.026179+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005", "attributes": + {"name": "apps_write", "display_name": "Apps Write", "description": "Create, + edit, and delete Apps in App Builder.", "created": "2022-11-01T18:26:50.036655+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "926612da-7a4c-11ed-b809-da7ad0900005", + "attributes": {"name": "cases_read", "display_name": "Cases Read", "description": + "View Cases.", "created": "2022-12-12T18:41:21.060748+00:00", "group_name": + "Case and Incident Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "attributes": + {"name": "cases_write", "display_name": "Cases Write", "description": "Create + and update cases.", "created": "2022-12-12T18:41:21.067150+00:00", "group_name": + "Case and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "attributes": + {"name": "apm_remote_configuration_write", "display_name": "APM Remote Configuration + Write", "description": "Edit APM Remote Configuration.", "created": "2022-12-12T20:21:20.723147+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "attributes": + {"name": "apm_remote_configuration_read", "display_name": "APM Remote Configuration + Read", "description": "View APM Remote Configuration.", "created": "2022-12-12T20:21:20.716560+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "attributes": + {"name": "ci_visibility_read", "display_name": "CI Visibility Read", "description": + "View CI Visibility.", "created": "2022-12-13T16:02:28.814628+00:00", "group_name": + "Software Delivery", "display_type": "read", "restricted": true}}, {"type": + "permissions", "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "attributes": + {"name": "ci_visibility_write", "display_name": "CI Visibility Tests Write", + "description": "Edit flaky tests and delete Test Services.", "created": "2022-12-13T16:02:28.821529+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "ci_provider_settings_write", "display_name": "CI Provider + Settings Write", "description": "Edit CI Provider settings. Manage GitHub + accounts and repositories for enabling CI Visibility and job logs collection.", + "created": "2022-12-13T16:02:28.806929+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "attributes": {"name": "ci_visibility_settings_write", + "display_name": "CI Visibility Settings Write", "description": "Configure + CI Visibility settings. Set a repository default branch, enable GitHub comments, + and delete test services.", "created": "2022-12-13T16:02:28.818035+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "intelligent_test_runner_activation_write", "display_name": + "Intelligent Test Runner Activation Write", "description": "Deprecated. Enable + or disable Intelligent Test Runner.", "created": "2022-12-13T16:02:28.826271+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "intelligent_test_runner_settings_write", "display_name": + "Intelligent Test Runner Settings Write", "description": "Deprecated. Edit + Intelligent Test Runner settings, such as modifying ITR excluded branch list.", + "created": "2022-12-13T16:02:28.830112+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "55f64460-7d61-11ed-9c36-da7ad0900005", "attributes": {"name": "continuous_profiler_read", + "display_name": "Continuous Profiler Read", "description": "View data in Continuous + Profiler.", "created": "2022-12-16T16:47:32.584514+00:00", "group_name": "APM", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005", "attributes": {"name": "teams_manage", + "display_name": "Teams Manage", "description": "Manage Teams. Create, delete, + rename, and edit metadata of all Teams. To control Team membership across + all Teams, use the User Access Manage permission.", "created": "2023-01-18T20:45:46.126002+00:00", + "group_name": "Teams", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005", "attributes": + {"name": "security_monitoring_findings_read", "display_name": "Security Monitoring + Findings Read", "description": "View a list of findings that include both + misconfigurations and identity risks.", "created": "2023-02-24T14:30:40.720618+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", + "attributes": {"name": "incident_notification_settings_read", "display_name": + "Incident Notification Settings Read", "description": "View Incidents Notification + settings.", "created": "2023-02-24T17:27:09.998449+00:00", "group_name": "Case + and Incident Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "attributes": + {"name": "incident_notification_settings_write", "display_name": "Incident + Notification Settings Write", "description": "Configure Incidents Notification + settings.", "created": "2023-02-24T17:27:09.998449+00:00", "group_name": "Case + and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "attributes": + {"name": "ci_ingestion_control_write", "display_name": "CI Visibility Ingestion + Control Write", "description": "Edit CI Ingestion Control exclusion filters.", + "created": "2023-03-24T10:25:52.891502+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005", "attributes": {"name": "error_tracking_write", + "display_name": "Error Tracking Issue Write", "description": "Edit Error Tracking + issues.", "created": "2023-03-27T16:55:39.540192+00:00", "group_name": "Error + Tracking", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "81e488c0-db35-11ed-a170-da7ad0900005", "attributes": {"name": "watchdog_alerts_write", + "display_name": "Watchdog Alerts Write", "description": "Manage Watchdog Alerts.", + "created": "2023-04-15T02:30:37.731056+00:00", "group_name": "Watchdog", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005", + "attributes": {"name": "saved_views_write", "display_name": "Saved Views Write", + "description": "Modify Saved Views across all Datadog products.", "created": + "2023-04-15T02:30:37.731056+00:00", "group_name": "Cross-Product Features", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "94c8a4da-de87-11ed-9e92-da7ad0900005", "attributes": {"name": "client_tokens_read", + "display_name": "Client Tokens Read", "description": "Read Client Tokens. + Unlike API keys, client tokens may be exposed client-side in JavaScript code + for web browsers and other clients to send data to Datadog.", "created": "2023-04-19T07:55:41.646942+00:00", + "group_name": "API and Application Keys", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "94c927e8-de87-11ed-9e92-da7ad0900005", + "attributes": {"name": "client_tokens_write", "display_name": "Client Tokens + Write", "description": "Create and edit Client Tokens. Unlike API keys, client + tokens may be exposed client-side in JavaScript code for web browsers and + other clients to send data to Datadog.", "created": "2023-04-19T07:55:41.646942+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "619b2642-f41b-11ed-b4e1-da7ad0900005", + "attributes": {"name": "event_correlation_config_read", "display_name": "Event + Correlation Config Read", "description": "Read Event Correlation Configuration + data such as Correlation Rules and Settings.", "created": "2023-05-16T18:56:35.719150+00:00", + "group_name": "Events", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "attributes": + {"name": "event_correlation_config_write", "display_name": "Event Correlation + Config Write", "description": "Manage Event Correlation Configuration such + as Correlation Rules and Settings.", "created": "2023-05-16T18:56:35.719150+00:00", + "group_name": "Events", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005", "attributes": + {"name": "event_config_write", "display_name": "Event Config Write", "description": + "Manage general event configuration such as API Emails.", "created": "2023-05-20T00:00:57.864864+00:00", + "group_name": "Events", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "attributes": + {"name": "security_monitoring_findings_write", "display_name": "Security Monitoring + Findings Write", "description": "Mute CSPM Findings.", "created": "2023-05-23T21:45:42.705754+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "attributes": {"name": "cloud_cost_management_read", "display_name": "Cloud + Cost Management Read", "description": "View Cloud Cost pages and the cloud + cost data source in dashboards and notebooks. For more details, see the Cloud + Cost Management docs.", "created": "2023-05-31T19:20:42.284425+00:00", "group_name": + "Cloud Cost Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "attributes": + {"name": "cloud_cost_management_write", "display_name": "Cloud Cost Management + Write", "description": "Configure cloud cost accounts and global customizations. + For more details, see the Cloud Cost Management docs.", "created": "2023-05-31T19:20:42.284425+00:00", + "group_name": "Cloud Cost Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", + "attributes": {"name": "host_tags_write", "display_name": "Host Tags Write", + "description": "Add and change tags on hosts.", "created": "2023-05-31T05:12:01.547070+00:00", + "group_name": "Metrics", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005", "attributes": + {"name": "ci_visibility_pipelines_write", "display_name": "CI Visibility Pipelines + Write", "description": "Create CI Visibility pipeline spans using the API.", + "created": "2023-06-01T10:15:50.891463+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "attributes": {"name": "quality_gate_rules_read", + "display_name": "Quality Gate Rules Read", "description": "View Quality Gate + Rules.", "created": "2023-06-19T16:27:34.826612+00:00", "group_name": "Software + Delivery", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "attributes": {"name": "quality_gate_rules_write", + "display_name": "Quality Gate Rules Write", "description": "Edit Quality Gate + Rules.", "created": "2023-06-19T16:27:34.826612+00:00", "group_name": "Software + Delivery", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "attributes": {"name": "metrics_metadata_write", + "display_name": "Metrics Metadata Write", "description": "Edit metadata on + metrics.", "created": "2023-06-23T16:21:25.009293+00:00", "group_name": "Metrics", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "4316b75c-093f-11ee-98e9-da7ad0900005", "attributes": {"name": "rum_delete_data", + "display_name": "RUM Delete Data", "description": "Delete data from RUM.", + "created": "2023-06-12T16:36:20.819036+00:00", "group_name": "Real User Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "4316826e-093f-11ee-98e9-da7ad0900005", "attributes": {"name": "appsec_vm_write", + "display_name": "Vulnerability Management Write", "description": "Update status + or assignee of vulnerabilities.", "created": "2023-06-12T16:36:20.819036+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "attributes": {"name": "reference_tables_write", "display_name": "Reference + Tables Write", "description": "Create or modify Reference Tables.", "created": + "2023-06-12T16:36:20.819036+00:00", "group_name": "Reference Tables", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "attributes": {"name": "rum_playlist_write", "display_name": "RUM Playlist + Write", "description": "Create, update, and delete RUM playlists. Add and + remove sessions from RUM playlists.", "created": "2023-07-07T16:26:50.792866+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", + "attributes": {"name": "observability_pipelines_delete", "display_name": "Observability + Pipelines Delete", "description": "Delete pipelines from your organization.", + "created": "2023-07-13T16:25:44.923503+00:00", "group_name": "Observability + Pipelines", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "attributes": {"name": "observability_pipelines_deploy", + "display_name": "Observability Pipelines Deploy", "description": "Deploy pipelines + in your organization.", "created": "2023-07-13T16:25:44.923503+00:00", "group_name": + "Observability Pipelines", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "attributes": + {"name": "processes_generate_metrics", "display_name": "Processes Generate + Metrics", "description": "Create custom metrics from processes.", "created": + "2023-07-12T16:27:03.457484+00:00", "group_name": "Processes", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "attributes": {"name": "api_keys_delete", "display_name": "API Keys Delete", + "description": "Delete API Keys for your organization.", "created": "2023-07-12T16:27:03.457484+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "attributes": {"name": "agent_flare_collection", "display_name": "Agent Flare + Collection", "description": "Collect an Agent flare with Fleet Automation.", + "created": "2023-07-13T16:25:44.923503+00:00", "group_name": "Fleet Automation", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005", "attributes": {"name": "org_connections_write", + "display_name": "Org Connections Write", "description": "Control which organizations + can query your organization''s data.", "created": "2023-07-20T16:25:38.185785+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005", + "attributes": {"name": "org_connections_read", "display_name": "Org Connections + Read", "description": "View which organizations can query data from your organization. + Query data from other organizations.", "created": "2023-07-20T16:25:38.185785+00:00", + "group_name": "Access Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "attributes": + {"name": "facets_write", "display_name": "Facets Write", "description": "Manage + facets for products other than Log Management, such as APM Traces. To modify + Log Facets, use Logs Write Facets.", "created": "2023-07-27T16:26:26.546986+00:00", + "group_name": "Cross-Product Features", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", + "attributes": {"name": "security_monitoring_suppressions_read", "display_name": + "Security Suppressions Read", "description": "Read Rule Suppressions.", "created": + "2023-08-17T16:25:26.209216+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "attributes": {"name": "security_monitoring_suppressions_write", + "display_name": "Security Suppressions Write", "description": "Write Rule + Suppressions.", "created": "2023-08-17T16:25:26.209216+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "attributes": + {"name": "static_analysis_settings_write", "display_name": "Static Analysis + Settings Write", "description": "Edit Static Analysis settings.", "created": + "2023-08-18T16:25:56.688500+00:00", "group_name": "Software Delivery", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005", + "attributes": {"name": "cd_visibility_read", "display_name": "CD Visibility + Read", "description": "View CD Visibility.", "created": "2023-09-08T23:01:01.285130+00:00", + "group_name": "Software Delivery", "display_type": "read", "restricted": true}}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "attributes": + {"name": "ndm_netflow_port_mappings_write", "display_name": "NDM Netflow Port + Mappings Write", "description": "Write NDM Netflow port mappings.", "created": + "2023-10-12T16:26:03.661255+00:00", "group_name": "Network Device Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "2de35000-69e5-11ee-996b-da7ad0900005", "attributes": {"name": "appsec_vm_read", + "display_name": "Vulnerability Management Read", "description": "View infrastructure, + application code and library vulnerabilities. This does not restrict access + to the vulnerability data source through the API or inventory SQL.", "created": + "2023-10-13T16:25:53.335225+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": true}}, {"type": "permissions", "id": + "54f38ef0-6f65-11ee-a094-da7ad0900005", "attributes": {"name": "debugger_capture_variables", + "display_name": "Dynamic Instrumentation Capture Variables", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "created": "2023-10-20T16:25:50.268064+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "f2cc9374-9841-11ee-a301-da7ad0900005", + "attributes": {"name": "error_tracking_settings_write", "display_name": "Error + Tracking Settings Write", "description": "Disable Error Tracking, edit inclusion + filters, and edit rate limit.", "created": "2023-12-11T16:25:50.880331+00:00", + "group_name": "Error Tracking", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "attributes": + {"name": "error_tracking_exclusion_filters_write", "display_name": "Error + Tracking Exclusion Filters Write", "description": "Add or change Error Tracking + exclusion filters.", "created": "2023-12-11T16:25:50.880331+00:00", "group_name": + "Error Tracking", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "attributes": + {"name": "integrations_read", "display_name": "Integrations Read", "description": + "View integrations and their configurations.", "created": "2024-01-23T16:26:45.209142+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "attributes": + {"name": "apm_api_catalog_write", "display_name": "API Catalog Write", "description": + "Add, modify, and delete API catalog definitions.", "created": "2024-02-02T16:25:57.659403+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "attributes": + {"name": "apm_api_catalog_read", "display_name": "API Catalog Read", "description": + "View API catalog and API definitions.", "created": "2024-02-02T16:25:57.659403+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "11280c24-cce8-11ee-af00-da7ad0900005", "attributes": + {"name": "containers_generate_image_metrics", "display_name": "Containers + Write Image Trend Metrics", "description": "Create or edit trend metrics from + container images.", "created": "2024-02-16T16:25:58.736360+00:00", "group_name": + "Containers", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "attributes": {"name": "rum_extend_retention", + "display_name": "RUM Session Replay Extend Retention", "description": "Extend + the retention of Session Replays.", "created": "2024-03-14T16:26:30.797793+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005", + "attributes": {"name": "on_prem_runner_read", "display_name": "Private Action + Runner Read", "description": "View and search Private Action Runners for Workflow + Automation and App Builder.", "created": "2024-03-18T16:26:33.583707+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", + "attributes": {"name": "on_prem_runner_use", "display_name": "Private Action + Runner Contribute", "description": "Attach a Private Action Runner to a connection.", + "created": "2024-03-18T16:26:33.583707+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "attributes": + {"name": "on_prem_runner_write", "display_name": "Private Action Runner Write", + "description": "Create and edit Private Action Runners for Workflow Automation + and App Builder.", "created": "2024-03-18T16:26:33.583707+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", + "attributes": {"name": "dora_settings_write", "display_name": "DORA Settings + Write", "description": "Edit the settings for DORA.", "created": "2024-04-08T16:25:58.692075+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", + "attributes": {"name": "agent_upgrade_write", "display_name": "Agent Upgrade", + "description": "Upgrade Datadog Agents with Fleet Automation.", "created": + "2024-04-22T16:25:53.208974+00:00", "group_name": "Fleet Automation", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", + "attributes": {"name": "continuous_profiler_pgo_read", "display_name": "Read + Continuous Profiler Profile-Guided Optimization (PGO) Data", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "created": "2024-04-23T16:30:30.492439+00:00", "group_name": "APM", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005", + "attributes": {"name": "oci_configurations_manage", "display_name": "OCI Configurations + Manage", "description": "Add or remove but not edit Oracle Cloud integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "attributes": {"name": "aws_configuration_read", + "display_name": "AWS Configuration Read", "description": "View but not add, + remove, or edit AWS integration configurations.", "created": "2024-04-23T16:30:30.492439+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "ccd09204-018e-11ef-afb6-da7ad0900005", "attributes": + {"name": "azure_configuration_read", "display_name": "Azure Configuration + Read", "description": "View but not add, remove, or edit Azure integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "attributes": {"name": "gcp_configuration_read", + "display_name": "GCP Configuration Read", "description": "View but not add, + remove, or edit GCP integration configurations.", "created": "2024-04-23T16:30:30.492439+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005", "attributes": + {"name": "oci_configuration_read", "display_name": "OCI Configuration Read", + "description": "View but not add, remove, or edit Oracle Cloud integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "attributes": {"name": "aws_configuration_edit", + "display_name": "AWS Configuration Edit", "description": "Edit but not add + or remove AWS integration configurations.", "created": "2024-05-02T16:26:19.141095+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "attributes": + {"name": "azure_configuration_edit", "display_name": "Azure Configuration + Edit", "description": "Edit but not add or remove Azure integration configurations.", + "created": "2024-05-02T16:26:19.141095+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005", "attributes": {"name": "gcp_configuration_edit", + "display_name": "GCP Configuration Edit", "description": "Edit but not add + or remove GCP integration configurations.", "created": "2024-05-02T16:26:19.141095+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "attributes": + {"name": "oci_configuration_edit", "display_name": "OCI Configuration Edit", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "created": "2024-05-02T16:26:19.141095+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "attributes": {"name": "llm_observability_read", + "display_name": "LLM Observability Read", "description": "View LLM Observability.", + "created": "2024-05-03T16:26:22.500447+00:00", "group_name": "LLM Observability", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ef950332-13a0-11ef-b582-da7ad0900005", "attributes": {"name": "flex_logs_config_write", + "display_name": "Flex Logs Configuration Write", "description": "Manage your + organization''s flex logs configuration.", "created": "2024-05-16T16:25:40.697830+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "21c5475c-228f-11ef-a00d-da7ad0900005", "attributes": + {"name": "reference_tables_read", "display_name": "Reference Tables Read", + "description": "View Reference Tables.", "created": "2024-06-04T16:26:01.400743+00:00", + "group_name": "Reference Tables", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "75066402-3890-11ef-bbb1-da7ad0900005", "attributes": + {"name": "fleet_policies_write", "display_name": "Agent Configuration Management", + "description": "Create and deploy Agent configurations.", "created": "2024-07-02T16:30:56.156267+00:00", + "group_name": "Fleet Automation", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005", "attributes": + {"name": "orchestration_custom_resource_definitions_write", "display_name": + "Custom Resource Definition Write", "description": "Enable, disable and update + custom resource indexing.", "created": "2024-07-02T16:30:56.156267+00:00", + "group_name": "Orchestration", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005", "attributes": + {"name": "code_analysis_read", "display_name": "Code Analysis Read", "description": + "View Code Analysis.", "created": "2024-08-06T16:26:25.858118+00:00", "group_name": + "Software Delivery", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005", "attributes": + {"name": "orchestration_workload_scaling_write", "display_name": "Workload + Scaling Write", "description": "Enable, disable, and configure workload autoscaling. + Apply workload scaling recommendations.", "created": "2024-08-06T16:26:25.858118+00:00", + "group_name": "Orchestration", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "06e3004e-5987-11ef-89c3-da7ad0900005", "attributes": + {"name": "llm_observability_write", "display_name": "LLM Observability Write", + "description": "Create, Update, and Delete LLM Observability resources including + User Defined Evaluations, OOTB Evaluations, and User Defined Topics.", "created": + "2024-08-13T15:16:34.275999+00:00", "group_name": "LLM Observability", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "attributes": {"name": "observability_pipelines_capture_read", "display_name": + "Observability Pipelines Live Capture Read", "description": "View captured + events of pipelines in your organization.", "created": "2024-08-27T16:50:39.669348+00:00", + "group_name": "Observability Pipelines", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005", + "attributes": {"name": "observability_pipelines_capture_write", "display_name": + "Observability Pipelines Live Capture Write", "description": "Capture live + events of pipelines in your organization.", "created": "2024-08-27T16:50:39.669348+00:00", + "group_name": "Observability Pipelines", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", + "attributes": {"name": "apps_datastore_read", "display_name": "Actions Datastore + Read", "description": "Allows read access to the data within the Actions Datastore.", + "created": "2024-08-22T16:25:15.890147+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "attributes": + {"name": "apps_datastore_write", "display_name": "Actions Datastore Write", + "description": "Allows modification of data within the Actions Datastore, + including adding, editing, and deleting records.", "created": "2024-08-22T16:25:15.890147+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", + "attributes": {"name": "apps_datastore_manage", "display_name": "Actions Datastore + Manage", "description": "Allows management of the Actions Datastore, including + creating, updating, and deleting the datastore itself.", "created": "2024-08-22T16:25:15.890147+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "attributes": {"name": "security_pipelines_read", "display_name": "Security + Pipelines Read", "description": "View Security Pipelines.", "created": "2024-08-30T16:25:36.779590+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "attributes": {"name": "security_pipelines_write", "display_name": "Security + Pipelines Write", "description": "Create, edit, and delete Security Pipelines.", + "created": "2024-08-30T16:25:36.779590+00:00", "group_name": "Cloud Security + Platform", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "8e9b2142-7511-11ef-b225-da7ad0900005", "attributes": {"name": "connection_groups_write", + "display_name": "Connection Groups Write", "description": "Create, delete + and update connection groups.", "created": "2024-09-17T16:26:13.918826+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "attributes": {"name": "quality_gates_evaluations_read", "display_name": "Quality + Gates Evaluations", "description": "Allow quality gates evaluations.", "created": + "2024-09-23T18:00:21.053557+00:00", "group_name": "Software Delivery", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "attributes": {"name": "connection_groups_read", "display_name": "Connection + Groups Read", "description": "Read and use connection groups.", "created": + "2024-09-26T14:35:22.139553+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "83fc9760-7c51-11ef-b846-da7ad0900005", "attributes": {"name": "security_monitoring_cws_agent_rules_actions", + "display_name": "Cloud Workload Security Agent Actions", "description": "Managing + actions on Cloud Workload Security Agent Rules.", "created": "2024-09-26T21:51:42.032795+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005", + "attributes": {"name": "rum_retention_filters_read", "display_name": "RUM + Retention Filters Read", "description": "View RUM Retention filters data.", + "created": "2024-10-02T23:15:17.740884+00:00", "group_name": "Real User Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "300f81cc-8114-11ef-84c0-da7ad0900005", "attributes": {"name": "rum_retention_filters_write", + "display_name": "RUM Retention Filters Write", "description": "Write RUM Retention + filters.", "created": "2024-10-02T23:15:17.740884+00:00", "group_name": "Real + User Monitoring", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005", "attributes": + {"name": "ddsql_editor_read", "display_name": "DDSQL Editor Read", "description": + "View and use DDSQL Editor.", "created": "2024-10-14T13:30:22.950954+00:00", + "group_name": "DDSQL Editor", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "attributes": + {"name": "disaster_recovery_status_read", "display_name": "Datadog Disaster + Recovery Read", "description": "View the disaster recovery status.", "created": + "2024-11-01T21:30:23.309658+00:00", "group_name": "Disaster Recovery", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "attributes": {"name": "disaster_recovery_status_write", "display_name": "Datadog + Disaster Recovery Write", "description": "Update the disaster recovery status.", + "created": "2024-11-01T21:30:23.309658+00:00", "group_name": "Disaster Recovery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "71949074-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "rum_settings_write", + "display_name": "RUM Settings Write", "description": "Write RUM Settings.", + "created": "2024-11-07T13:30:24.249160+00:00", "group_name": "Real User Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "71957e76-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "test_optimization_read", + "display_name": "Test Optimization Read", "description": "View Test Optimization.", + "created": "2024-11-07T13:30:24.249160+00:00", "group_name": "Software Delivery", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "71958024-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "test_optimization_write", + "display_name": "Test Optimization Write", "description": "Manage flaky tests + for Test Optimization.", "created": "2024-11-07T13:30:24.249160+00:00", "group_name": + "Software Delivery", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "attributes": + {"name": "test_optimization_settings_write", "display_name": "Test Optimization + Settings Write", "description": "Create, delete and update Test Optimization + settings.", "created": "2024-11-19T19:06:07.652237+00:00", "group_name": "Software + Delivery", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "attributes": {"name": "security_comments_write", + "display_name": "Security Comments Write", "description": "Write comments + into vulnerabilities.", "created": "2024-11-22T18:40:23.844837+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005", "attributes": + {"name": "security_comments_read", "display_name": "Security Comments Read", + "description": "Read comments of vulnerabilities.", "created": "2024-11-22T18:40:23.844837+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "attributes": {"name": "dashboards_invite_share", "display_name": "Shared + Dashboards Invite-only Write", "description": "Create, modify and delete shared + dashboards with share type ''Invite-only''. These dashboards can only be accessed + by user-specified email addresses.", "created": "2024-12-10T19:11:49.480076+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "attributes": + {"name": "dashboards_embed_share", "display_name": "Shared Dashboards Embed + Write", "description": "Create, modify and delete shared dashboards with share + type ''Embed''. These dashboards can be embedded on user-specified domains.", + "created": "2024-12-10T19:11:49.480076+00:00", "group_name": "Dashboards", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "attributes": {"name": "embeddable_graphs_share", + "display_name": "Shared Graphs Write", "description": "Generate public links + to share embeddable graphs externally.", "created": "2024-12-10T19:11:49.480076+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "attributes": + {"name": "logs_read_workspaces", "display_name": "Read Logs Workspaces", "description": + "View Logs Workspaces.", "created": "2024-12-11T19:21:44.137884+00:00", "group_name": + "Log Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "attributes": + {"name": "logs_write_workspaces", "display_name": "Write Logs Workspaces", + "description": "Create, update, and delete Logs Workspaces.", "created": "2024-12-11T19:21:44.137884+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "attributes": + {"name": "audience_management_read", "display_name": "Profiles Read", "description": + "View Audience Management data.", "created": "2025-01-07T18:36:31.392090+00:00", + "group_name": "Product Analytics", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "attributes": + {"name": "audience_management_write", "display_name": "Profiles Write", "description": + "Modify Audience Management data.", "created": "2025-01-07T18:36:31.392090+00:00", + "group_name": "Product Analytics", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005", + "attributes": {"name": "logs_read_config", "display_name": "Logs Configuration + Read", "description": "Read logs configuration.", "created": "2025-01-14T18:56:50.868001+00:00", + "group_name": "Log Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9b00426a-da87-11ef-9de6-da7ad0900005", "attributes": + {"name": "on_call_read", "display_name": "On-Call Read", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "created": + "2025-01-24T19:15:42.768282+00:00", "group_name": "On-Call", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "9b00ed28-da87-11ef-9de6-da7ad0900005", + "attributes": {"name": "on_call_write", "display_name": "On-Call Write", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "created": "2025-01-24T19:15:42.768282+00:00", "group_name": "On-Call", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "attributes": {"name": "on_call_page", "display_name": "On-Call Page", "description": + "Page On-Call teams and users.", "created": "2025-01-24T19:15:42.768282+00:00", + "group_name": "On-Call", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005", "attributes": + {"name": "error_tracking_read", "display_name": "Error Tracking Read", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "created": "2025-01-30T18:51:27.197297+00:00", "group_name": "Error Tracking", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "attributes": {"name": "on_call_respond", + "display_name": "On-Call Responder", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "created": "2025-02-03T23:42:07.592356+00:00", "group_name": "On-Call", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "attributes": {"name": "process_tags_read", "display_name": "Process Tags + Read", "description": "View Process Tag Rules.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Processes", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "attributes": + {"name": "process_tags_write", "display_name": "Process Tags Write", "description": + "Create, edit and delete Process Tag Rules.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Processes", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "attributes": + {"name": "network_connections_read", "display_name": "Network Connections + Read", "description": "Read Cloud Network Connections.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Cloud Network Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "attributes": {"name": "serverless_aws_instrumentation_read", "display_name": + "Serverless AWS Instrumentation Read", "description": "View remote instrumentation + configuration for serverless workloads.", "created": "2025-02-11T20:36:29.786935+00:00", + "group_name": "Serverless", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "attributes": + {"name": "serverless_aws_instrumentation_write", "display_name": "Serverless + AWS Instrumentation Write", "description": "Add, update, and remove remote + instrumentation configuration for serverless workloads.", "created": "2025-02-11T20:36:29.786935+00:00", + "group_name": "Serverless", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "attributes": + {"name": "coterm_write", "display_name": "CoTerm Write", "description": "Write + terminal recordings.", "created": "2025-02-28T19:06:40.038336+00:00", "group_name": + "CoTerm", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "attributes": {"name": "coterm_read", + "display_name": "CoTerm Read", "description": "Read terminal recordings.", + "created": "2025-02-28T19:06:40.038336+00:00", "group_name": "CoTerm", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "attributes": {"name": "data_streams_monitoring_capture_messages", "display_name": + "Data Streams Monitoring Capture Messages", "description": "Capture messages + from Kafka topics in the Data Streams Monitoring product.", "created": "2025-03-06T18:51:28.120564+00:00", + "group_name": "Data Streams Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "db45b75e-0360-11f0-8ac3-da7ad0900005", + "attributes": {"name": "cloudcraft_read", "display_name": "Cloudcraft Read", + "description": "View infrastructure diagrams in the Cloudcraft product.", + "created": "2025-03-17T18:51:37.899118+00:00", "group_name": "Infrastructure", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "9bb09240-0fee-11f0-958c-da7ad0900005", "attributes": {"name": "ndm_device_profiles_view", + "display_name": "NDM Device Profiles View", "description": "View NDM device + profiles.", "created": "2025-04-02T18:16:33.714415+00:00", "group_name": "Network + Device Monitoring", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "9bb09a10-0fee-11f0-958c-da7ad0900005", "attributes": + {"name": "ndm_device_profiles_edit", "display_name": "NDM Device Profiles + Edit", "description": "Edit NDM device profiles.", "created": "2025-04-02T18:16:33.714415+00:00", + "group_name": "Network Device Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "ndm_devices_read", "display_name": "NDM Read", "description": + "Read NDM data directly. Note: even without this permission, NDM data can + be retrieved via general infrastructure query APIs.", "created": "2025-04-24T21:30:24.005670+00:00", + "group_name": "Network Device Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "ndm_device_tags_write", "display_name": "NDM Device + Tags Write", "description": "Write NDM device tags.", "created": "2025-04-24T21:30:24.005670+00:00", + "group_name": "Network Device Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "orchestration_workload_scaling_read", "display_name": + "Workload Scaling Read", "description": "View workload autoscaling objects + and recommendations.", "created": "2025-04-24T21:30:24.005670+00:00", "group_name": + "Orchestration", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "attributes": {"name": "bits_investigations_read", + "display_name": "Bits Investigations Read", "description": "Read Bits investigations.", + "created": "2025-04-29T18:51:50.984055+00:00", "group_name": "Bits AI", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "attributes": {"name": "sheets_read", "display_name": "Sheets Read", "description": + "View Sheets.", "created": "2025-04-30T23:15:19.683852+00:00", "group_name": + "Sheets", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "fbf841c6-2618-11f0-8595-da7ad0900005", "attributes": {"name": "sheets_write", + "display_name": "Sheets Write", "description": "Create and change Sheets.", + "created": "2025-04-30T23:15:19.683852+00:00", "group_name": "Sheets", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", + "attributes": {"name": "orchestration_autoscaling_manage", "display_name": + "Autoscaling Manage", "description": "Manage autoscaling cluster level configuration.", + "created": "2025-05-19T18:00:40.454044+00:00", "group_name": "Orchestration", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "12465c5e-3a5c-11f0-becd-da7ad0900005", "attributes": {"name": "code_coverage_read", + "display_name": "Code Coverage read", "description": "View Code Coverage data.", + "created": "2025-05-26T18:05:56.647000+00:00", "group_name": "Software Delivery", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "attributes": {"name": "cases_shared_settings_write", + "display_name": "Case Management Shared Settings Write", "description": "Configure + shared settings for Case Management.", "created": "2025-06-17T18:22:00.814348+00:00", + "group_name": "Case and Incident Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", + "attributes": {"name": "actions_interface_run", "display_name": "Actions Interface + Run", "description": "Execute actions in the Bits AI Action Interface.", "created": + "2025-07-01T14:36:49.982499+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", "attributes": {"name": "ai_guard_evaluate", + "display_name": "AI Guard Evaluate", "description": "Evaluate AI Guard rules.", + "created": "2025-07-09T18:30:33.053855+00:00", "group_name": "Application + Security", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "attributes": {"name": "generate_ccm_report_schedules", + "display_name": "Cloud Cost Report Schedules Write", "description": "View + all report schedules and manage only the ones they''ve created.", "created": + "2025-07-10T18:40:35.388063+00:00", "group_name": "Cloud Cost Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "attributes": {"name": "manage_ccm_report_schedules", + "display_name": "Cloud Cost Report Schedules Manage", "description": "View, + create, and fully manage all report schedules across the organization.", "created": + "2025-07-10T18:40:35.388063+00:00", "group_name": "Cloud Cost Management", + "display_type": "write", "restricted": false}}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005", + "attributes": {"name": "Datadog Read Only Role", "managed": true, "created_at": + "2024-10-08T14:32:47.265744+00:00", "modified_at": "2024-10-08T14:32:47.266206+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": + "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", + "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": + "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", + "id": "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": + "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": + "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f33f74be-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": + "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", + "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": + "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", + "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", "id": + "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": + "permissions", "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", + "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", "id": + "3c002814-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", + "id": "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": + "35e4e288-df3b-11ef-886f-da7ad0900005"}, {"type": "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005"}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": + "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", + "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", "id": + "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", + "id": "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": + "12465c5e-3a5c-11f0-becd-da7ad0900005"}]}}}, {"type": "roles", "id": "693fe720-9569-11ef-969d-da7ad0900005", + "attributes": {"name": "Copy of Datadog Admin Role", "managed": false, "created_at": + "2024-10-28T20:15:44.156681+00:00", "modified_at": "2024-10-28T20:15:44.167199+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e"}, {"type": + "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": "permissions", + "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", "id": + "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": + "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": "permissions", + "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", "id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d"}, + {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19"}, {"type": + "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, {"type": "permissions", + "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": "permissions", "id": + "04668d0a-ec5c-11ea-9483-37d199df4587"}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, + {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc"}, {"type": + "permissions", "id": "04668f62-ec5c-11ea-9483-0fe541ab993f"}, {"type": "permissions", + "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02"}, {"type": "permissions", "id": + "046690de-ec5c-11ea-9483-bbcd905fcdca"}, {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf"}, + {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": + "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", + "id": "8b753262-f925-11ea-82fc-93f07fd96e76"}, {"type": "permissions", "id": + "9311970e-f925-11ea-ab4d-1760e76381c1"}, {"type": "permissions", "id": "998aabac-f925-11ea-b43d-8f1f42f3894e"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "72bc07d8-1472-11eb-a97b-8bff514d7382"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e"}, {"type": + "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": "permissions", + "id": "c8654332-2dce-11eb-9145-d33d26eeb65f"}, {"type": "permissions", "id": + "d23cc894-2dce-11eb-9145-37bf7b2dadc2"}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a"}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", "id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, + {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005"}, {"type": + "permissions", "id": "b39fb79a-90af-11eb-9428-da7ad0900005"}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "993b34d6-b16d-11eb-a891-da7ad0900005"}, + {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, {"type": + "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": + "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "c948b30a-16c7-11ec-88cc-da7ad0900005"}, + {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", + "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": + "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005"}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": + "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005"}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "3ad32264-f311-11ec-a058-da7ad0900005"}, {"type": "permissions", + "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005"}, + {"type": "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", + "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": + "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005"}, + {"type": "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": + "8b254e6a-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005"}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": "81e488c0-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", "id": + "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, + {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, + {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, {"type": + "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": + "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", "id": "4316b75c-093f-11ee-98e9-da7ad0900005"}, + {"type": "permissions", "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": + "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", + "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, {"type": "permissions", "id": + "eadf64b2-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": "eadf675a-2199-11ee-9a0e-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005"}, {"type": "permissions", + "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": + "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", + "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": + "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", + "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}, {"type": "permissions", "id": + "f2cc9374-9841-11ee-a301-da7ad0900005"}, {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005"}, + {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, {"type": + "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": + "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005"}, + {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": + "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", + "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": + "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd09204-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", + "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": + "permissions", "id": "ef950332-13a0-11ef-b582-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75066402-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005"}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", + "id": "06e3004e-5987-11ef-89c3-da7ad0900005"}, {"type": "permissions", "id": + "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", + "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005"}, + {"type": "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": + "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", + "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": + "83fc9760-7c51-11ef-b846-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "80ae7688-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": "71949074-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": + "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", + "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": "permissions", "id": + "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005"}, + {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", + "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", + "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", "id": + "35e4e288-df3b-11ef-886f-da7ad0900005"}]}}}, {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005", + "attributes": {"name": "Datadog Standard Role", "managed": true, "created_at": + "2024-10-08T14:32:47.215056+00:00", "modified_at": "2024-10-08T14:32:47.215828+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": + "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", + "id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, + {"type": "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": + "permissions", "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", + "id": "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": + "5de1e178-8536-11ea-968a-2fd9395bff90"}, {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, + {"type": "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": + "permissions", "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", + "id": "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": + "93654d1c-e706-11ea-9a85-d320ff02824d"}, {"type": "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, + {"type": "permissions", "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": + "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, {"type": "permissions", + "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": "permissions", "id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", "id": "9311970e-f925-11ea-ab4d-1760e76381c1"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": + "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", + "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, + {"type": "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "f07e4234-e894-11eb-ab79-da7ad0900005"}, {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": + "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": + "c948b30a-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, + {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": + "permissions", "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "cf873174-574f-11ec-9869-da7ad0900005"}, {"type": "permissions", "id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, + {"type": "permissions", "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": + "permissions", "id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", + "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": "permissions", "id": + "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": + "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", + "id": "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": + "permissions", "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, + {"type": "permissions", "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": + "permissions", "id": "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", + "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": "permissions", "id": + "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": + "81e488c0-db35-11ed-a170-da7ad0900005"}, {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": + "permissions", "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": + "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, + {"type": "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": + "permissions", "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", + "id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, + {"type": "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": + "permissions", "id": "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", + "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", "id": + "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", + "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": + "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, + {"type": "permissions", "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": + "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", + "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": "permissions", "id": + "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, + {"type": "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": + "permissions", "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": + "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, + {"type": "permissions", "id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": + "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09204-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, {"type": + "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75072806-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, + {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": + "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", + "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, + {"type": "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": + "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": "permissions", + "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", "id": + "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": + "permissions", "id": "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", + "id": "3c002814-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": + "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, + {"type": "permissions", "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", + "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": + "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, + {"type": "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": + "permissions", "id": "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", + "id": "9b00ed28-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": + "9b010d44-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005"}, + {"type": "permissions", "id": "7ad4419a-e288-11ef-bbbc-da7ad0900005"}, {"type": + "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", + "id": "4a6cadb6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": + "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, + {"type": "permissions", "id": "23f76dc4-f607-11ef-99cf-da7ad0900005"}, {"type": + "permissions", "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", + "id": "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", "id": + "9bb09240-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", "id": + "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": "fbf841c6-2618-11f0-8595-da7ad0900005"}, + {"type": "permissions", "id": "12465c5e-3a5c-11f0-becd-da7ad0900005"}, {"type": + "permissions", "id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005"}, {"type": "permissions", + "id": "d2c0335e-5688-11f0-ad5e-da7ad0900005"}, {"type": "permissions", "id": + "cc7517b0-5cf2-11f0-85d4-da7ad0900005"}, {"type": "permissions", "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005"}]}}}], + "meta": {"page": {"total_count": 8, "total_filtered_count": 8, "max_page_size": + 1000}}}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/roles?page%5Bnumber%5D=0&page%5Bsize%5D=100 + response: + body: + string: '{"data": [{"id": "693fe720-9569-11ef-969d-da7ad0900005", "type": "roles", + "attributes": {"created_at": "2024-10-28T20:15:44.156681Z", "created_by_handle": + "michael.richey@datadoghq.com", "modified_at": "2024-10-28T20:15:44.167199Z", + "modified_by_handle": "michael.richey@datadoghq.com", "name": "Copy of Datadog + Admin Role", "team_count": 0, "user_count": 2}, "relationships": {"permissions": + {"data": [{"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": "permissions"}, + {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": + "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", + "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions"}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": "permissions"}, + {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "type": "permissions"}, {"id": + "046690de-ec5c-11ea-9483-bbcd905fcdca", "type": "permissions"}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions"}, {"id": + "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions"}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions"}, {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": + "permissions"}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": + "c8654332-2dce-11eb-9145-d33d26eeb65f", "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", + "type": "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, + {"id": "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": + "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": "permissions"}, + {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": "permissions"}, {"id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "type": "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", + "type": "permissions"}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": + "permissions"}, {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, + {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions"}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions"}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, + {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": + "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions"}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": + "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions"}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": + "permissions"}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, + {"id": "f42ef088-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", + "type": "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": + "permissions"}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, + {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions"}, {"id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", + "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", "type": + "permissions"}, {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, + {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": "permissions"}, {"id": + "f40ff7be-966b-11ec-8253-da7ad0900005", "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions"}, + {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", + "type": "permissions"}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions"}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "type": "permissions"}, + {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": + "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", + "type": "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": "permissions"}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152", "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": + "permissions"}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, + {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005", "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions"}, {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": + "permissions"}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, + {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions"}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": + "permissions"}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, + {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": + "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", + "type": "permissions"}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions"}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, + {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions"}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions"}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, + {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", "type": "permissions"}, {"id": + "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": + "permissions"}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions"}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "ef44613e-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": + "permissions"}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", "type": "permissions"}, {"id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions"}, {"id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions"}, + {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": "permissions"}, {"id": + "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions"}, {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": + "permissions"}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, + {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": + "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": + "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, + {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", + "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": "permissions"}, + {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, {"id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions"}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005", "type": "permissions"}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", + "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, + {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": + "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": "permissions"}, + {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": + "c04a7614-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "type": "permissions"}, + {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", "type": "permissions"}, {"id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions"}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", + "type": "permissions"}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "type": + "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": + "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", + "type": "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": + "permissions"}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": "permissions"}, + {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, {"id": + "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions"}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, + {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": + "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions"}, {"id": "83fc9760-7c51-11ef-b846-da7ad0900005", "type": + "permissions"}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, + {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions"}, {"id": + "76e47222-8a30-11ef-8675-da7ad0900005", "type": "permissions"}, {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": + "permissions"}, {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions"}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", "type": "permissions"}, {"id": + "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", + "type": "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": + "permissions"}, {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": "permissions"}, {"id": + "7d962a3c-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", + "type": "permissions"}, {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": + "permissions"}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": + "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", + "type": "permissions"}, {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": + "permissions"}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "7d9641ac-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": + "permissions"}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": + "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions"}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions"}]}}}, {"id": "3020f50c-8582-11ef-ad61-da7ad0900005", "type": + "roles", "attributes": {"created_at": "2024-10-08T14:32:47.147289Z", "managed": + true, "modified_at": "2024-10-08T14:32:47.147932Z", "name": "Datadog Admin + Role", "team_count": 0, "user_count": 7}, "relationships": {"permissions": + {"data": [{"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": "permissions"}, + {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": + "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", + "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions"}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": "permissions"}, + {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "type": "permissions"}, {"id": + "046690de-ec5c-11ea-9483-bbcd905fcdca", "type": "permissions"}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions"}, {"id": + "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions"}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions"}, {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": + "permissions"}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": + "c8654332-2dce-11eb-9145-d33d26eeb65f", "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", + "type": "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, + {"id": "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": + "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": "permissions"}, + {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": "permissions"}, {"id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "type": "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", + "type": "permissions"}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": + "permissions"}, {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, + {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions"}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions"}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, + {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": + "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions"}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": + "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions"}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": + "permissions"}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, + {"id": "f42ef088-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", + "type": "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": + "permissions"}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, + {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions"}, {"id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", + "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", "type": + "permissions"}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, {"id": + "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": "permissions"}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions"}, {"id": + "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": + "permissions"}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": "permissions"}, + {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "type": "permissions"}, {"id": + "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", + "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions"}, + {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": "permissions"}, {"id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": "permissions"}, + {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, {"id": + "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", "type": + "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, {"id": + "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", + "type": "permissions"}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", "type": + "permissions"}, {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions"}, + {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, {"id": + "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", "type": + "permissions"}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, + {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": + "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", + "type": "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions"}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, + {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "type": + "permissions"}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, + {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": + "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", "type": "permissions"}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", + "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": "permissions"}, + {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions"}, {"id": + "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": + "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions"}, {"id": + "80ae7688-9898-11ef-8b23-da7ad0900005", "type": "permissions"}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", + "type": "permissions"}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "75066402-3890-11ef-bbb1-da7ad0900005", "type": "permissions"}, {"id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", + "type": "permissions"}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions"}, {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, + {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, {"id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions"}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions"}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions"}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions"}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, + {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions"}, {"id": + "cf873174-574f-11ec-9869-da7ad0900005", "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", + "type": "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": + "permissions"}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", "type": + "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": "permissions"}, + {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions"}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": + "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions"}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": "permissions"}, {"id": + "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions"}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "type": "permissions"}, {"id": + "48d8ce74-0065-11ee-9c16-da7ad0900005", "type": "permissions"}, {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", + "type": "permissions"}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": + "permissions"}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "type": "permissions"}, + {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, {"id": + "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", + "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": + "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions"}, + {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": "permissions"}, {"id": + "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", + "type": "permissions"}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, + {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, {"id": + "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": + "permissions"}, {"id": "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions"}, + {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": + "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": + "permissions"}, {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, + {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", + "type": "permissions"}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "ccd09f06-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": + "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions"}, {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": "permissions"}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": + "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", + "type": "permissions"}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", "type": + "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, + {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, {"id": + "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, + {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, {"id": + "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", + "type": "permissions"}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "7d9641ac-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": + "permissions"}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, {"id": + "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions"}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions"}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, + {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, {"id": + "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": "permissions"}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions"}, {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions"}, + {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, {"id": + "02e65e42-fabc-11ef-a653-da7ad0900005", "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions"}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions"}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions"}, + {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": + "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions"}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", "type": + "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions"}, + {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", "type": "permissions"}, {"id": + "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions"}]}}}, {"id": + "3032ffb8-8582-11ef-8bad-da7ad0900005", "type": "roles", "attributes": {"created_at": + "2024-10-08T14:32:47.265744Z", "managed": true, "modified_at": "2024-10-08T14:32:47.266206Z", + "name": "Datadog Read Only Role", "team_count": 0, "user_count": 2}, "relationships": + {"permissions": {"data": [{"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": "permissions"}, + {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions"}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", + "type": "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": "permissions"}, + {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, {"id": + "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": "permissions"}, + {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": "permissions"}, {"id": + "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", + "type": "permissions"}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": + "permissions"}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, + {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": "permissions"}, {"id": + "5de1e178-8536-11ea-968a-2fd9395bff90", "type": "permissions"}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": + "permissions"}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": + "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": + "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": "permissions"}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", + "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, + {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, + {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": "permissions"}, {"id": + "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": "permissions"}, {"id": + "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", + "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, + {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, {"id": + "54f98c32-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "type": "permissions"}]}}}, {"id": "302b4f34-8582-11ef-b6a4-da7ad0900005", + "type": "roles", "attributes": {"created_at": "2024-10-08T14:32:47.215056Z", + "managed": true, "modified_at": "2024-10-08T14:32:47.215828Z", "name": "Datadog + Standard Role", "team_count": 0, "user_count": 3}, "relationships": {"permissions": + {"data": [{"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, + {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": + "65eea998-f6a1-11ed-9953-da7ad0900005", "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions"}, {"id": + "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", + "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, + {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, {"id": + "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": "permissions"}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", + "type": "permissions"}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": + "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": "permissions"}, + {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, {"id": + "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", + "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": "permissions"}, {"id": + "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions"}, + {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions"}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions"}, {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, + {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": + "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", + "type": "permissions"}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions"}, {"id": + "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": "permissions"}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", + "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions"}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152", "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": + "permissions"}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, + {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005", "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "04668bde-ec5c-11ea-9483-fb6cb6586c6a", "type": "permissions"}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", + "type": "permissions"}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": + "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", "type": "permissions"}, + {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, {"id": + "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": + "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, + {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": + "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "type": "permissions"}, + {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": "permissions"}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions"}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "11280c24-cce8-11ee-af00-da7ad0900005", "type": "permissions"}, {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions"}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "type": + "permissions"}, {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions"}, + {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", "type": "permissions"}, {"id": + "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", + "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": + "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions"}, + {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": + "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", + "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": "permissions"}, + {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", "type": + "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": "permissions"}, + {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, {"id": + "e31cca10-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions"}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, + {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions"}, {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": + "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": + "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", + "type": "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": + "permissions"}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, + {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions"}, {"id": + "e31e6b54-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": + "permissions"}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, + {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": "permissions"}, {"id": + "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": + "permissions"}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": + "d039cfec-b44f-11ed-8db8-da7ad0900005", "type": "permissions"}, {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", + "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": + "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": "permissions"}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": + "permissions"}, {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, + {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": + "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, + {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions"}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", + "type": "permissions"}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions"}, {"id": + "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, {"id": + "9bb09240-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", + "type": "permissions"}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, + {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions"}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions"}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", + "type": "permissions"}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": + "permissions"}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, + {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": + "54f98c32-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "type": "permissions"}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", "type": + "permissions"}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions"}]}}}], + "meta": {"page": {"total_count": 4, "total_filtered_count": 4}}}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +version: 1 diff --git a/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_cleanup.frozen b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_cleanup.frozen new file mode 100644 index 000000000..f0f35514e --- /dev/null +++ b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_cleanup.frozen @@ -0,0 +1 @@ +2025-08-27T16:02:59.306356-04:00 \ No newline at end of file diff --git a/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_cleanup.yaml b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_cleanup.yaml new file mode 100644 index 000000000..92cd5cefa --- /dev/null +++ b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_cleanup.yaml @@ -0,0 +1,14114 @@ +interactions: +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/users?page%5Bnumber%5D=0&page%5Bsize%5D=500 + response: + body: + string: '{"data": [{"type": "users", "id": "6b69113d-6f18-11f0-9ad5-1ad15dd71168", + "attributes": {"name": "Ida Adjivon", "handle": "ida.adjivon@datadoghq.com", + "created_at": "2025-08-01T20:45:12.043180+00:00", "modified_at": "2025-08-01T21:35:25.635446+00:00", + "email": "ida.adjivon@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/d3ff11e3ff125d30050f4dfff3fa614c?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "81f6f2c7-923f-11ef-879a-6ee0822e247c", "attributes": {"name": "Justine + Lo", "handle": "justine.lo@datadoghq.com", "created_at": "2024-10-24T19:38:13.281489+00:00", + "modified_at": "2024-10-25T14:18:33.835459+00:00", "email": "justine.lo@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/7d75964971289cf50e6090d76b45e3f6?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "b301b340-8582-11ef-ba31-3219ecc6cb25", "attributes": {"name": "Louis + Cheynel", "handle": "louis.cheynel@datadoghq.com", "created_at": "2024-10-08T14:36:26.725077+00:00", + "modified_at": "2025-02-19T21:12:46.164959+00:00", "email": "louis.cheynel@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/791d1a56daa2bd0f5bb25ed286d3f8bb?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": true, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Disabled", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "30533c3c-8582-11ef-938f-cecf6f9ed4ad", "attributes": {"name": "Michael + Richey", "handle": "michael.richey+ddreu1@datadoghq.com", "created_at": "2024-10-08T14:32:47.477901+00:00", + "modified_at": "2024-10-08T14:32:47.477901+00:00", "email": "michael.richey+ddreu1@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/b5b0452adbe01caf57c1e5f6fb97a631?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "693fe720-9569-11ef-969d-da7ad0900005"}, {"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, + "org": {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "98fe080d-8fda-11ef-aa03-c6ac9d6cb0b0", "attributes": + {"name": "Michael Richey", "handle": "michael.richey@datadoghq.com", "created_at": + "2024-10-21T18:30:50.420260+00:00", "modified_at": "2025-03-03T15:47:53.789029+00:00", + "email": "michael.richey@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/3ae7b2387f1a71bbb857d6f03993bdf3?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "b32e572e-8582-11ef-98fe-f2a776cd34b8", "attributes": {"name": "Ron + Hay", "handle": "ron.hay@datadoghq.com", "created_at": "2024-10-08T14:36:27.017641+00:00", + "modified_at": "2025-06-10T13:33:23.138895+00:00", "email": "ron.hay@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/1c9c2a5daac55fc5ae86178cd5e7b9c2?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "265f9002-9b9e-11ef-9152-56a58ecd5b70", "attributes": + {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com", "created_at": + "2024-11-05T17:48:22.271026+00:00", "modified_at": "2025-01-23T19:52:06.634848+00:00", + "email": "sherzod.karimov@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/993f2cc00ad75833dbc76f2a93bb227d?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "693fe720-9569-11ef-969d-da7ad0900005"}, {"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "b32f283f-8582-11ef-be6e-1e59aae1ca5b", "attributes": + {"name": "Tim Alexander", "handle": "tim.alexander@datadoghq.com", "created_at": + "2024-10-08T14:36:27.022996+00:00", "modified_at": "2024-10-08T15:29:54.659973+00:00", + "email": "tim.alexander@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/6269dae26686287d4bdd307a26e33f34?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}], + "included": [{"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005", + "attributes": {"name": "Datadog Admin Role", "managed": true, "created_at": + "2024-10-08T14:32:47.147289+00:00", "modified_at": "2024-10-08T14:32:47.147932+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e"}, {"type": + "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": "permissions", + "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", "id": + "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": + "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": "permissions", + "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", "id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d"}, + {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19"}, {"type": + "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, {"type": "permissions", + "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": "permissions", "id": + "04668d0a-ec5c-11ea-9483-37d199df4587"}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, + {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc"}, {"type": + "permissions", "id": "04668f62-ec5c-11ea-9483-0fe541ab993f"}, {"type": "permissions", + "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02"}, {"type": "permissions", "id": + "046690de-ec5c-11ea-9483-bbcd905fcdca"}, {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf"}, + {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": + "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", + "id": "8b753262-f925-11ea-82fc-93f07fd96e76"}, {"type": "permissions", "id": + "9311970e-f925-11ea-ab4d-1760e76381c1"}, {"type": "permissions", "id": "998aabac-f925-11ea-b43d-8f1f42f3894e"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "72bc07d8-1472-11eb-a97b-8bff514d7382"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e"}, {"type": + "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": "permissions", + "id": "c8654332-2dce-11eb-9145-d33d26eeb65f"}, {"type": "permissions", "id": + "d23cc894-2dce-11eb-9145-37bf7b2dadc2"}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a"}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", "id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, + {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005"}, {"type": + "permissions", "id": "b39fb79a-90af-11eb-9428-da7ad0900005"}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "993b34d6-b16d-11eb-a891-da7ad0900005"}, + {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, {"type": + "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": + "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "c948b30a-16c7-11ec-88cc-da7ad0900005"}, + {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", + "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": + "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005"}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": + "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005"}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "3ad32264-f311-11ec-a058-da7ad0900005"}, {"type": "permissions", + "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005"}, + {"type": "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", + "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": + "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005"}, + {"type": "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": + "8b254e6a-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005"}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": "81e488c0-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", "id": + "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, + {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, + {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, {"type": + "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": + "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", "id": "4316b75c-093f-11ee-98e9-da7ad0900005"}, + {"type": "permissions", "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": + "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", + "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, {"type": "permissions", "id": + "eadf64b2-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": "eadf675a-2199-11ee-9a0e-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005"}, {"type": "permissions", + "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": + "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", + "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": + "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", + "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}, {"type": "permissions", "id": + "f2cc9374-9841-11ee-a301-da7ad0900005"}, {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005"}, + {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, {"type": + "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": + "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005"}, + {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": + "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", + "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": + "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd09204-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", + "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": + "permissions", "id": "ef950332-13a0-11ef-b582-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75066402-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005"}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", + "id": "06e3004e-5987-11ef-89c3-da7ad0900005"}, {"type": "permissions", "id": + "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", + "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005"}, + {"type": "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": + "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", + "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": + "83fc9760-7c51-11ef-b846-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "80ae7688-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": "71949074-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": + "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", + "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": "permissions", "id": + "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005"}, + {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", + "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", + "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", "id": + "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": "9b00ed28-da87-11ef-9de6-da7ad0900005"}, + {"type": "permissions", "id": "9b010d44-da87-11ef-9de6-da7ad0900005"}, {"type": + "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005"}, {"type": "permissions", + "id": "7ad4419a-e288-11ef-bbbc-da7ad0900005"}, {"type": "permissions", "id": + "4a6c29d6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": "4a6cadb6-e806-11ef-8710-da7ad0900005"}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": + "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", + "id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", "id": + "23f76dc4-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, + {"type": "permissions", "id": "02e65e42-fabc-11ef-a653-da7ad0900005"}, {"type": + "permissions", "id": "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", + "id": "9bb09240-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": + "9bb09a10-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", "id": + "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": "fbf841c6-2618-11f0-8595-da7ad0900005"}, + {"type": "permissions", "id": "2cead6ec-34db-11f0-9eb2-da7ad0900005"}, {"type": + "permissions", "id": "12465c5e-3a5c-11f0-becd-da7ad0900005"}, {"type": "permissions", + "id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005"}, {"type": "permissions", "id": + "d2c0335e-5688-11f0-ad5e-da7ad0900005"}, {"type": "permissions", "id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005"}, + {"type": "permissions", "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005"}, {"type": + "permissions", "id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005"}]}}}, {"type": + "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "attributes": + {"name": "logs_read_index_data", "display_name": "Logs Read Index Data", "description": + "Read log data, possibly scoped to one or more indexes. In order to read log + data, a user must have both this permission and Logs Read Data. This permission + can be granted in a limited capacity per index from the Logs interface or + APIs. If granted via the Roles interface or API the permission has global + scope. Restrictions are limited to the Log Management product.", "created": + "2018-10-31T14:00:23.650159+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", + "attributes": {"name": "logs_modify_indexes", "display_name": "Logs Modify + Indexes", "description": "Read and modify all indexes in your account. This + includes the ability to grant the Logs Read Index Data and Logs Write Exclusion + Filters permission to other roles, for some or all indexes.", "created": "2018-10-31T14:00:23.664332+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "attributes": + {"name": "logs_live_tail", "display_name": "Logs Live Tail", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "created": "2018-10-31T14:00:23.676180+00:00", "group_name": + "Log Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "attributes": + {"name": "logs_write_exclusion_filters", "display_name": "Logs Write Exclusion + Filters", "description": "Add and change exclusion filters for all or some + log indexes. Can be granted in a limited capacity per index to specific roles + via the Logs interface or API. If granted from the Roles interface or API, + the permission has global scope.", "created": "2018-10-31T14:00:23.699543+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "attributes": + {"name": "logs_write_pipelines", "display_name": "Logs Write Pipelines", "description": + "Add and change log pipeline configurations, including the ability to grant + the Logs Write Processors permission to other roles, for some or all pipelines.", + "created": "2018-10-31T14:00:23.710821+00:00", "group_name": "Log Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "505f4538-dd15-11e8-9308-47a4732f715f", "attributes": {"name": "logs_write_processors", + "display_name": "Logs Write Processors", "description": "Add and change some + or all log processor configurations. Can be granted in a limited capacity + per pipeline to specific roles via the Logs interface or API. If granted via + the Roles interface or API the permission has global scope.", "created": "2018-10-31T14:00:24.726927+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e", "attributes": + {"name": "logs_write_archives", "display_name": "Logs Write Archives", "description": + "Add and edit Log Archives.", "created": "2018-10-31T14:00:24.730570+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "attributes": + {"name": "logs_generate_metrics", "display_name": "Logs Generate Metrics", + "description": "Create custom metrics from logs.", "created": "2019-07-25T12:37:55.949477+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "attributes": + {"name": "dashboards_read", "display_name": "Dashboards Read", "description": + "View dashboards.", "created": "2019-09-10T14:41:53.120685+00:00", "group_name": + "Dashboards", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "attributes": {"name": "dashboards_write", + "display_name": "Dashboards Write", "description": "Create and change dashboards.", + "created": "2019-09-10T14:41:53.136336+00:00", "group_name": "Dashboards", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f", "attributes": {"name": "dashboards_public_share", + "display_name": "Shared Dashboards Public Write", "description": "Create, + modify and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "created": "2019-09-10T14:41:53.150548+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "attributes": + {"name": "monitors_read", "display_name": "Monitors Read", "description": + "View monitors.", "created": "2019-09-16T18:49:59.270746+00:00", "group_name": + "Monitors", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "attributes": {"name": "monitors_write", + "display_name": "Monitors Write", "description": "Edit and delete individual + monitors.", "created": "2019-09-16T18:50:07.944781+00:00", "group_name": "Monitors", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "d3159858-d8b2-11e9-a336-e363d6ef331b", "attributes": {"name": "monitors_downtime", + "display_name": "Manage Downtimes", "description": "Set downtimes to suppress + alerts from any monitor in an organization. Mute and unmute monitors. The + ability to write monitors is not required to set downtimes.", "created": "2019-09-16T18:50:16.869407+00:00", + "group_name": "Monitors", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "attributes": + {"name": "logs_read_data", "display_name": "Logs Read Data", "description": + "Read log data. In order to read log data, a user must have both this permission + and Logs Read Index Data. This permission can be restricted with restriction + queries. Restrictions are limited to the Log Management product.", "created": + "2020-04-06T16:29:12.337169+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "attributes": {"name": "logs_read_archives", "display_name": "Logs Read Archives", + "description": "Read Log Archives location and use it for rehydration.", "created": + "2020-04-23T07:45:13.801938+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "attributes": {"name": "security_monitoring_rules_read", "display_name": "Security + Rules Read", "description": "Read Detection Rules.", "created": "2020-06-09T13:55:12.166762+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", + "attributes": {"name": "security_monitoring_rules_write", "display_name": + "Security Rules Write", "description": "Create and edit Detection Rules.", + "created": "2020-06-09T13:55:21.036857+00:00", "group_name": "Cloud Security + Platform", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9", "attributes": {"name": "security_monitoring_signals_read", + "display_name": "Security Signals Read", "description": "View Security Signals.", + "created": "2020-06-09T13:55:29.398066+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", "attributes": {"name": "security_monitoring_signals_write", + "display_name": "Security Signals Write", "description": "Modify Security + Signals.", "created": "2021-08-17T15:11:19.976019+00:00", "group_name": "Cloud + Security Platform", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d", "attributes": + {"name": "user_access_invite", "display_name": "User Access Invite", "description": + "Invite other users to your organization.", "created": "2020-08-25T19:10:01.692112+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", + "attributes": {"name": "user_access_manage", "display_name": "User Access + Manage", "description": "Disable users, manage user roles, manage SAML-to-role + mappings, and configure logs restriction queries.", "created": "2020-08-25T19:10:12.116164+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30", + "attributes": {"name": "user_app_keys", "display_name": "User App Keys", "description": + "View and manage Application Keys owned by the user.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "attributes": {"name": "org_app_keys_read", "display_name": "Org App Keys + Read", "description": "View Application Keys owned by all users in the organization.", + "created": "2020-09-01T14:04:14.317866+00:00", "group_name": "API and Application + Keys", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "04668d0a-ec5c-11ea-9483-37d199df4587", "attributes": {"name": "org_app_keys_write", + "display_name": "Org App Keys Write", "description": "Manage Application Keys + owned by all users in the organization.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "attributes": {"name": "synthetics_private_location_read", "display_name": + "Synthetics Private Locations Read", "description": "View, search, and use + Synthetics private locations.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Synthetic Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", + "attributes": {"name": "synthetics_private_location_write", "display_name": + "Synthetics Private Locations Write", "description": "Create and delete private + locations in addition to having access to the associated installation guidelines.", + "created": "2020-09-01T14:04:14.317866+00:00", "group_name": "Synthetic Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "04668f62-ec5c-11ea-9483-0fe541ab993f", "attributes": {"name": "billing_read", + "display_name": "Billing Read", "description": "View your organization''s + subscription and payment method but not make edits.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "attributes": + {"name": "billing_edit", "display_name": "Billing Edit", "description": "Manage + your organization''s subscription and payment method.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "attributes": {"name": "usage_read", "display_name": "Usage Read", "description": + "View your organization''s usage and usage attribution.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf", "attributes": + {"name": "usage_edit", "display_name": "Usage Edit", "description": "Manage + your organization''s usage attribution set-up.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "attributes": {"name": "metric_tags_write", "display_name": "Metric Tags Write", + "description": "Edit and save tag configurations for custom metrics.", "created": + "2020-09-01T14:04:14.317866+00:00", "group_name": "Metrics", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "attributes": {"name": "logs_write_historical_view", "display_name": "Logs + Write Historical Views", "description": "Rehydrate logs from Archives.", "created": + "2020-09-16T08:42:43.928080+00:00", "group_name": "Log Management", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "attributes": {"name": "audit_logs_read", "display_name": "Audit Trail Read", + "description": "View Audit Trail in your organization.", "created": "2020-09-17T20:37:03.702585+00:00", + "group_name": "Compliance", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9311970e-f925-11ea-ab4d-1760e76381c1", "attributes": + {"name": "api_keys_read", "display_name": "API Keys Read", "description": + "List and retrieve the key values of all API Keys in your organization.", + "created": "2020-09-17T20:37:16.471514+00:00", "group_name": "API and Application + Keys", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "attributes": {"name": "api_keys_write", + "display_name": "API Keys Write", "description": "Create and rename API Keys + for your organization.", "created": "2020-09-17T20:37:27.331389+00:00", "group_name": + "API and Application Keys", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "attributes": + {"name": "synthetics_global_variable_read", "display_name": "Synthetics Global + Variable Read", "description": "View, search, and use Synthetics global variables.", + "created": "2020-09-17T20:37:50.165103+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", "attributes": {"name": "synthetics_global_variable_write", + "display_name": "Synthetics Global Variable Write", "description": "Create, + edit, and delete global variables for Synthetics.", "created": "2020-09-17T20:38:01.966230+00:00", + "group_name": "Synthetic Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "b6858556-f925-11ea-9222-1f47b8677b93", + "attributes": {"name": "synthetics_read", "display_name": "Synthetics Read", + "description": "List and view configured Synthetic tests and test results.", + "created": "2020-09-17T20:38:15.951574+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "attributes": {"name": "synthetics_write", + "display_name": "Synthetics Write", "description": "Create, edit, and delete + Synthetic tests.", "created": "2020-09-17T20:38:27.421632+00:00", "group_name": + "Synthetic Monitoring", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "attributes": + {"name": "synthetics_default_settings_read", "display_name": "Synthetics Default + Settings Read", "description": "View the default settings for Synthetic Monitoring.", + "created": "2020-09-17T20:38:49.527477+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "cf223140-f925-11ea-a3a2-df370532bcf7", "attributes": {"name": "synthetics_default_settings_write", + "display_name": "Synthetics Default Settings Write", "description": "Edit + the default settings for Synthetic Monitoring.", "created": "2020-09-17T20:38:57.244987+00:00", + "group_name": "Synthetic Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", + "attributes": {"name": "logs_write_facets", "display_name": "Logs Write Facets", + "description": "Create or edit Log Facets.", "created": "2020-10-14T12:54:16.607129+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "attributes": + {"name": "service_account_write", "display_name": "Service Account Write", + "description": "Create, disable, and use Service Accounts in your organization.", + "created": "2020-10-22T14:25:34.868208+00:00", "group_name": "Access Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "attributes": {"name": "apm_read", + "display_name": "APM Read", "description": "Read and query APM and Trace Analytics.", + "created": "2020-11-23T20:59:02.902692+00:00", "group_name": "APM", "display_type": + "read", "restricted": true}}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "attributes": {"name": "apm_retention_filter_read", "display_name": "APM Retention + Filters Read", "description": "Read trace retention filters. A user with this + permission can view the retention filters page, list of filters, their statistics, + and creation info.", "created": "2020-11-23T20:59:11.833795+00:00", "group_name": + "APM", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "attributes": {"name": "apm_retention_filter_write", + "display_name": "APM Retention Filters Write", "description": "Create, edit, + and delete trace retention filters. A user with this permission can create + new retention filters, and update or delete to existing retention filters.", + "created": "2020-11-23T20:59:19.531425+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", + "attributes": {"name": "apm_service_ingest_read", "display_name": "APM Service + Ingest Read", "description": "Access service ingestion pages. A user with + this permission can view the service ingestion page, list of root services, + their statistics, and creation info.", "created": "2020-11-23T20:59:25.933546+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "c8654332-2dce-11eb-9145-d33d26eeb65f", "attributes": + {"name": "apm_service_ingest_write", "display_name": "APM Service Ingest Write", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "created": "2020-11-23T20:59:31.352238+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "attributes": + {"name": "apm_apdex_manage_write", "display_name": "APM Apdex Manage Write", + "description": "Set Apdex T value on any service. A user with this permission + can set the T value from the Apdex graph on the service page.", "created": + "2020-11-23T20:59:47.864214+00:00", "group_name": "APM", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c", + "attributes": {"name": "apm_tag_management_write", "display_name": "APM Tag + Management Write", "description": "Edit second primary tag selection. A user + with this permission can modify the second primary tag dropdown in the APM + settings page.", "created": "2020-11-23T21:00:01.066421+00:00", "group_name": + "APM", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "attributes": {"name": "apm_primary_operation_write", + "display_name": "APM Primary Operation Write", "description": "Edit the operation + name value selection. A user with this permission can modify the operation + name list in the APM settings page and the operation name controller on the + service page.", "created": "2020-11-23T21:00:18.680068+00:00", "group_name": + "APM", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", "attributes": {"name": "audit_logs_write", + "display_name": "Audit Trail Write", "description": "Configure Audit Trail + in your organization.", "created": "2020-12-01T19:12:04.940111+00:00", "group_name": + "Compliance", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", "attributes": {"name": "rum_apps_write", + "display_name": "RUM Apps Write", "description": "Create, edit, and delete + RUM applications. Creating a RUM application automatically generates a Client + Token. In order to create Client Tokens directly, a user needs the Client + Tokens Write permission.", "created": "2021-01-11T19:07:15.721075+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "attributes": {"name": "debugger_write", "display_name": "Dynamic Instrumentation + Write", "description": "Edit Dynamic Instrumentation configuration. Create + or modify Dynamic Instrumentation probes that do not capture function state.", + "created": "2021-03-08T15:07:07.319753+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "attributes": {"name": "debugger_read", "display_name": "Dynamic Instrumentation + Read", "description": "View Dynamic Instrumentation configuration.", "created": + "2021-03-08T15:07:07.333513+00:00", "group_name": "APM", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005", + "attributes": {"name": "data_scanner_read", "display_name": "Data Scanner + Read", "description": "View Sensitive Data Scanner configurations and scanning + results.", "created": "2021-03-29T16:56:27.205044+00:00", "group_name": "Compliance", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "attributes": {"name": "data_scanner_write", + "display_name": "Data Scanner Write", "description": "Edit Sensitive Data + Scanner configurations.", "created": "2021-03-29T16:56:27.219481+00:00", "group_name": + "Compliance", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "attributes": {"name": "org_management", + "display_name": "Org Management", "description": "Edit org configurations, + including authentication and certain security preferences such as configuring + SAML, renaming an org, configuring allowed login methods, creating child orgs, + subscribing & unsubscribing from apps in the marketplace, and enabling & disabling + Remote Configuration for the entire organization.", "created": "2021-04-23T17:51:22.555499+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "99397470-b16d-11eb-a891-da7ad0900005", + "attributes": {"name": "security_monitoring_filters_read", "display_name": + "Security Filters Read", "description": "Read Security Filters.", "created": + "2021-05-10T08:56:24.514661+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "993b34d6-b16d-11eb-a891-da7ad0900005", "attributes": {"name": "security_monitoring_filters_write", + "display_name": "Security Filters Write", "description": "Create, edit, and + delete Security Filters.", "created": "2021-05-10T08:56:24.527411+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", + "attributes": {"name": "incident_read", "display_name": "Incidents Read", + "description": "View incidents in Datadog.", "created": "2021-06-22T15:11:07.986072+00:00", + "group_name": "Case and Incident Management", "display_type": "read", "restricted": + true}}, {"type": "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005", + "attributes": {"name": "incident_write", "display_name": "Incidents Write", + "description": "Create, view, and manage incidents in Datadog.", "created": + "2021-06-22T15:11:08.003239+00:00", "group_name": "Case and Incident Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "122f7508-d36c-11eb-b2bf-da7ad0900005", "attributes": {"name": "incident_settings_read", + "display_name": "Incident Settings Read", "description": "View Incident Settings.", + "created": "2021-06-22T15:11:07.995787+00:00", "group_name": "Case and Incident + Management", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "attributes": {"name": "incident_settings_write", + "display_name": "Incident Settings Write", "description": "Configure Incident + Settings.", "created": "2021-06-22T15:11:07.999194+00:00", "group_name": "Case + and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005", "attributes": + {"name": "appsec_event_rule_read", "display_name": "Application Security Management + Event Rules Read", "description": "View Application Security Management Event + Rules.", "created": "2021-07-19T13:26:35.252432+00:00", "group_name": "Cloud + Security Platform", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005", "attributes": + {"name": "appsec_event_rule_write", "display_name": "Application Security + Management Event Rules Write", "description": "Edit Application Security Management + Event Rules.", "created": "2021-07-19T13:26:35.260787+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "attributes": + {"name": "rum_apps_read", "display_name": "RUM Apps Read", "description": + "View RUM Applications data.", "created": "2021-08-02T09:46:22.567371+00:00", + "group_name": "Real User Monitoring", "display_type": "read", "restricted": + true}}, {"type": "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", + "attributes": {"name": "rum_session_replay_read", "display_name": "RUM Session + Replay Read", "description": "View Session Replays.", "created": "2021-08-02T09:46:22.572685+00:00", + "group_name": "Real User Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "c94811de-16c7-11ec-88cc-da7ad0900005", + "attributes": {"name": "security_monitoring_notification_profiles_read", "display_name": + "Security Notification Rules Read", "description": "Read Notification Rules.", + "created": "2021-09-16T08:26:27.288070+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "attributes": {"name": "security_monitoring_notification_profiles_write", + "display_name": "Security Notification Rules Write", "description": "Create, + edit, and delete Notification Rules.", "created": "2021-09-16T08:26:27.292835+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005", + "attributes": {"name": "apm_generate_metrics", "display_name": "APM Generate + Metrics", "description": "Create custom metrics from spans.", "created": "2021-09-16T15:31:28.639581+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005", "attributes": + {"name": "security_monitoring_cws_agent_rules_read", "display_name": "Cloud + Workload Security Agent Rules Read", "description": "Read Cloud Workload Security + Agent Rules.", "created": "2021-11-17T10:41:45.755009+00:00", "group_name": + "Cloud Security Platform", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "f5e1489a-4792-11ec-944b-da7ad0900005", "attributes": + {"name": "security_monitoring_cws_agent_rules_write", "display_name": "Cloud + Workload Security Agent Rules Write", "description": "Create, edit, and delete + Cloud Workload Security Agent Rules.", "created": "2021-11-17T10:41:45.761956+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", + "attributes": {"name": "apm_pipelines_write", "display_name": "APM Pipelines + Write", "description": "Add and change APM pipeline configurations.", "created": + "2021-12-06T14:51:25.389398+00:00", "group_name": "APM", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005", + "attributes": {"name": "apm_pipelines_read", "display_name": "APM Pipelines + Read", "description": "View APM pipeline configurations.", "created": "2021-12-07T11:21:23.741014+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "attributes": + {"name": "observability_pipelines_read", "display_name": "Observability Pipelines + Read", "description": "View pipelines in your organization.", "created": "2021-12-09T00:11:41.567875+00:00", + "group_name": "Observability Pipelines", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "attributes": {"name": "observability_pipelines_write", "display_name": "Observability + Pipelines Write", "description": "Edit pipelines in your organization.", "created": + "2021-12-09T00:11:41.572883+00:00", "group_name": "Observability Pipelines", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "e31e0056-8502-11ec-b266-da7ad0900005", "attributes": {"name": "workflows_read", + "display_name": "Workflows Read", "description": "View workflows.", "created": + "2022-02-03T15:06:38.846399+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "e31f0230-8502-11ec-b266-da7ad0900005", "attributes": {"name": "workflows_write", + "display_name": "Workflows Write", "description": "Create, edit, and delete + workflows.", "created": "2022-02-03T15:06:38.853003+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "workflows_run", "display_name": "Workflows Run", "description": + "Run workflows.", "created": "2022-02-03T15:06:38.849099+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "connections_read", "display_name": "Connections Read", + "description": "List and view available connections. Connections contain secrets + that cannot be revealed.", "created": "2022-02-03T15:06:38.837721+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "connections_write", "display_name": "Connections Write", + "description": "Create and delete connections.", "created": "2022-02-03T15:06:38.843395+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", + "attributes": {"name": "notebooks_read", "display_name": "Notebooks Read", + "description": "View notebooks.", "created": "2022-03-02T18:51:33.435297+00:00", + "group_name": "Notebooks", "display_type": "read", "restricted": true}}, {"type": + "permissions", "id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "attributes": + {"name": "notebooks_write", "display_name": "Notebooks Write", "description": + "Create and change notebooks.", "created": "2022-03-02T18:51:33.439640+00:00", + "group_name": "Notebooks", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005", "attributes": + {"name": "logs_delete_data", "display_name": "Logs Delete Data", "description": + "Delete data from your Logs, including entire indexes.", "created": "2022-02-25T18:51:34.198635+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005", "attributes": + {"name": "rum_generate_metrics", "display_name": "RUM Generate Metrics", "description": + "Create custom metrics from RUM events.", "created": "2022-04-11T16:26:30.469616+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "attributes": {"name": "aws_configurations_manage", "display_name": "AWS Configurations + Manage", "description": "Add or remove but not edit AWS integration configurations.", + "created": "2022-04-26T20:21:48.019179+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "7fbe2266-c59e-11ec-90fb-da7ad0900005", "attributes": {"name": "azure_configurations_manage", + "display_name": "Azure Configurations Manage", "description": "Add or remove + but not edit Azure integration configurations.", "created": "2022-04-26T20:21:48.031171+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "attributes": + {"name": "gcp_configurations_manage", "display_name": "GCP Configurations + Manage", "description": "Add or remove but not edit GCP integration configurations.", + "created": "2022-04-26T20:21:48.027662+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "attributes": {"name": "manage_integrations", + "display_name": "Integrations Manage", "description": "Install, uninstall, + and configure integrations.", "created": "2022-04-26T20:21:48.034453+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "attributes": + {"name": "usage_notifications_read", "display_name": "Usage Notifications + Read", "description": "Receive notifications and view currently configured + notification settings.", "created": "2022-05-17T13:56:29.090665+00:00", "group_name": + "Billing and Usage", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "attributes": + {"name": "usage_notifications_write", "display_name": "Usage Notifications + Write", "description": "Receive notifications and configure notification settings.", + "created": "2022-05-17T13:56:29.094457+00:00", "group_name": "Billing and + Usage", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "attributes": {"name": "generate_dashboard_reports", + "display_name": "Dashboards Report Write", "description": "Schedule PDF reports + from a dashboard.", "created": "2022-06-06T18:15:47.465864+00:00", "group_name": + "Dashboards", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "f33f74be-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_read", + "display_name": "SLOs Read", "description": "View SLOs and status corrections.", + "created": "2022-06-08T16:20:45.638848+00:00", "group_name": "Service Level + Objectives", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "f340161c-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_write", + "display_name": "SLOs Write", "description": "Create, edit, and delete SLOs.", + "created": "2022-06-08T16:20:45.643085+00:00", "group_name": "Service Level + Objectives", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_corrections", + "display_name": "SLOs Status Corrections", "description": "Apply, edit, and + delete SLO status corrections. A user with this permission can make status + corrections, even if they do not have permission to edit those SLOs.", "created": + "2022-06-08T16:20:45.632820+00:00", "group_name": "Service Level Objectives", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "3ad32264-f311-11ec-a058-da7ad0900005", "attributes": {"name": "monitor_config_policy_write", + "display_name": "Monitor Configuration Policy Write", "description": "Create, + update, and delete monitor configuration policies.", "created": "2022-06-23T16:26:26.854058+00:00", + "group_name": "Monitors", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f42ef088-173a-11ed-8654-da7ad0900005", "attributes": + {"name": "apm_service_catalog_write", "display_name": "Service Catalog Write", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "created": "2022-08-08T16:55:49.060954+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "attributes": + {"name": "apm_service_catalog_read", "display_name": "Service Catalog Read", + "description": "View service catalog and service definitions.", "created": + "2022-08-08T16:55:49.055930+00:00", "group_name": "APM", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", + "attributes": {"name": "logs_write_forwarding_rules", "display_name": "Logs + Write Forwarding Rules", "description": "Add and edit forwarding destinations + and rules for logs.", "created": "2022-08-08T21:30:48.328740+00:00", "group_name": + "Log Management", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005", "attributes": + {"name": "connections_resolve", "display_name": "Connections Resolve", "description": + "Resolve connections.", "created": "2022-08-25T15:26:23.943459+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_protect_read", "display_name": "Application + Security Management Protect Read", "description": "View blocked attackers.", + "created": "2022-10-27T09:25:59.057166+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "attributes": {"name": "appsec_protect_write", + "display_name": "Application Security Management Protect Write", "description": + "Manage blocked attackers.", "created": "2022-10-27T09:25:59.060959+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_activation_read", "display_name": "Application + Security Management 1-click Enablement Read", "description": "View whether + Application Security Management has been enabled or disabled on services via + 1-click enablement with Remote Configuration.", "created": "2022-10-27T09:25:59.047444+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_activation_write", "display_name": "Application + Security Management 1-click Enablement Write", "description": "Enable or disable + Application Security Management on services via 1-click enablement.", "created": + "2022-10-27T09:25:59.053394+00:00", "group_name": "Cloud Security Platform", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "c0490360-5a12-11ed-adbe-da7ad0900005", "attributes": {"name": "apps_run", + "display_name": "Apps View", "description": "View and run Apps in App Builder.", + "created": "2022-11-01T18:26:50.026179+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005", "attributes": + {"name": "apps_write", "display_name": "Apps Write", "description": "Create, + edit, and delete Apps in App Builder.", "created": "2022-11-01T18:26:50.036655+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "926612da-7a4c-11ed-b809-da7ad0900005", + "attributes": {"name": "cases_read", "display_name": "Cases Read", "description": + "View Cases.", "created": "2022-12-12T18:41:21.060748+00:00", "group_name": + "Case and Incident Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "attributes": + {"name": "cases_write", "display_name": "Cases Write", "description": "Create + and update cases.", "created": "2022-12-12T18:41:21.067150+00:00", "group_name": + "Case and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "attributes": + {"name": "apm_remote_configuration_write", "display_name": "APM Remote Configuration + Write", "description": "Edit APM Remote Configuration.", "created": "2022-12-12T20:21:20.723147+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "attributes": + {"name": "apm_remote_configuration_read", "display_name": "APM Remote Configuration + Read", "description": "View APM Remote Configuration.", "created": "2022-12-12T20:21:20.716560+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "attributes": + {"name": "ci_visibility_read", "display_name": "CI Visibility Read", "description": + "View CI Visibility.", "created": "2022-12-13T16:02:28.814628+00:00", "group_name": + "Software Delivery", "display_type": "read", "restricted": true}}, {"type": + "permissions", "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "attributes": + {"name": "ci_visibility_write", "display_name": "CI Visibility Tests Write", + "description": "Edit flaky tests and delete Test Services.", "created": "2022-12-13T16:02:28.821529+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "ci_provider_settings_write", "display_name": "CI Provider + Settings Write", "description": "Edit CI Provider settings. Manage GitHub + accounts and repositories for enabling CI Visibility and job logs collection.", + "created": "2022-12-13T16:02:28.806929+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "attributes": {"name": "ci_visibility_settings_write", + "display_name": "CI Visibility Settings Write", "description": "Configure + CI Visibility settings. Set a repository default branch, enable GitHub comments, + and delete test services.", "created": "2022-12-13T16:02:28.818035+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "intelligent_test_runner_activation_write", "display_name": + "Intelligent Test Runner Activation Write", "description": "Deprecated. Enable + or disable Intelligent Test Runner.", "created": "2022-12-13T16:02:28.826271+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "intelligent_test_runner_settings_write", "display_name": + "Intelligent Test Runner Settings Write", "description": "Deprecated. Edit + Intelligent Test Runner settings, such as modifying ITR excluded branch list.", + "created": "2022-12-13T16:02:28.830112+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "55f64460-7d61-11ed-9c36-da7ad0900005", "attributes": {"name": "continuous_profiler_read", + "display_name": "Continuous Profiler Read", "description": "View data in Continuous + Profiler.", "created": "2022-12-16T16:47:32.584514+00:00", "group_name": "APM", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005", "attributes": {"name": "teams_manage", + "display_name": "Teams Manage", "description": "Manage Teams. Create, delete, + rename, and edit metadata of all Teams. To control Team membership across + all Teams, use the User Access Manage permission.", "created": "2023-01-18T20:45:46.126002+00:00", + "group_name": "Teams", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005", "attributes": + {"name": "security_monitoring_findings_read", "display_name": "Security Monitoring + Findings Read", "description": "View a list of findings that include both + misconfigurations and identity risks.", "created": "2023-02-24T14:30:40.720618+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", + "attributes": {"name": "incident_notification_settings_read", "display_name": + "Incident Notification Settings Read", "description": "View Incidents Notification + settings.", "created": "2023-02-24T17:27:09.998449+00:00", "group_name": "Case + and Incident Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "attributes": + {"name": "incident_notification_settings_write", "display_name": "Incident + Notification Settings Write", "description": "Configure Incidents Notification + settings.", "created": "2023-02-24T17:27:09.998449+00:00", "group_name": "Case + and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "attributes": + {"name": "ci_ingestion_control_write", "display_name": "CI Visibility Ingestion + Control Write", "description": "Edit CI Ingestion Control exclusion filters.", + "created": "2023-03-24T10:25:52.891502+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005", "attributes": {"name": "error_tracking_write", + "display_name": "Error Tracking Issue Write", "description": "Edit Error Tracking + issues.", "created": "2023-03-27T16:55:39.540192+00:00", "group_name": "Error + Tracking", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "81e488c0-db35-11ed-a170-da7ad0900005", "attributes": {"name": "watchdog_alerts_write", + "display_name": "Watchdog Alerts Write", "description": "Manage Watchdog Alerts.", + "created": "2023-04-15T02:30:37.731056+00:00", "group_name": "Watchdog", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005", + "attributes": {"name": "saved_views_write", "display_name": "Saved Views Write", + "description": "Modify Saved Views across all Datadog products.", "created": + "2023-04-15T02:30:37.731056+00:00", "group_name": "Cross-Product Features", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "94c8a4da-de87-11ed-9e92-da7ad0900005", "attributes": {"name": "client_tokens_read", + "display_name": "Client Tokens Read", "description": "Read Client Tokens. + Unlike API keys, client tokens may be exposed client-side in JavaScript code + for web browsers and other clients to send data to Datadog.", "created": "2023-04-19T07:55:41.646942+00:00", + "group_name": "API and Application Keys", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "94c927e8-de87-11ed-9e92-da7ad0900005", + "attributes": {"name": "client_tokens_write", "display_name": "Client Tokens + Write", "description": "Create and edit Client Tokens. Unlike API keys, client + tokens may be exposed client-side in JavaScript code for web browsers and + other clients to send data to Datadog.", "created": "2023-04-19T07:55:41.646942+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "619b2642-f41b-11ed-b4e1-da7ad0900005", + "attributes": {"name": "event_correlation_config_read", "display_name": "Event + Correlation Config Read", "description": "Read Event Correlation Configuration + data such as Correlation Rules and Settings.", "created": "2023-05-16T18:56:35.719150+00:00", + "group_name": "Events", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "attributes": + {"name": "event_correlation_config_write", "display_name": "Event Correlation + Config Write", "description": "Manage Event Correlation Configuration such + as Correlation Rules and Settings.", "created": "2023-05-16T18:56:35.719150+00:00", + "group_name": "Events", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005", "attributes": + {"name": "event_config_write", "display_name": "Event Config Write", "description": + "Manage general event configuration such as API Emails.", "created": "2023-05-20T00:00:57.864864+00:00", + "group_name": "Events", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "attributes": + {"name": "security_monitoring_findings_write", "display_name": "Security Monitoring + Findings Write", "description": "Mute CSPM Findings.", "created": "2023-05-23T21:45:42.705754+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "attributes": {"name": "cloud_cost_management_read", "display_name": "Cloud + Cost Management Read", "description": "View Cloud Cost pages and the cloud + cost data source in dashboards and notebooks. For more details, see the Cloud + Cost Management docs.", "created": "2023-05-31T19:20:42.284425+00:00", "group_name": + "Cloud Cost Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "attributes": + {"name": "cloud_cost_management_write", "display_name": "Cloud Cost Management + Write", "description": "Configure cloud cost accounts and global customizations. + For more details, see the Cloud Cost Management docs.", "created": "2023-05-31T19:20:42.284425+00:00", + "group_name": "Cloud Cost Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", + "attributes": {"name": "host_tags_write", "display_name": "Host Tags Write", + "description": "Add and change tags on hosts.", "created": "2023-05-31T05:12:01.547070+00:00", + "group_name": "Metrics", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005", "attributes": + {"name": "ci_visibility_pipelines_write", "display_name": "CI Visibility Pipelines + Write", "description": "Create CI Visibility pipeline spans using the API.", + "created": "2023-06-01T10:15:50.891463+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "attributes": {"name": "quality_gate_rules_read", + "display_name": "Quality Gate Rules Read", "description": "View Quality Gate + Rules.", "created": "2023-06-19T16:27:34.826612+00:00", "group_name": "Software + Delivery", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "attributes": {"name": "quality_gate_rules_write", + "display_name": "Quality Gate Rules Write", "description": "Edit Quality Gate + Rules.", "created": "2023-06-19T16:27:34.826612+00:00", "group_name": "Software + Delivery", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "attributes": {"name": "metrics_metadata_write", + "display_name": "Metrics Metadata Write", "description": "Edit metadata on + metrics.", "created": "2023-06-23T16:21:25.009293+00:00", "group_name": "Metrics", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "4316b75c-093f-11ee-98e9-da7ad0900005", "attributes": {"name": "rum_delete_data", + "display_name": "RUM Delete Data", "description": "Delete data from RUM.", + "created": "2023-06-12T16:36:20.819036+00:00", "group_name": "Real User Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "4316826e-093f-11ee-98e9-da7ad0900005", "attributes": {"name": "appsec_vm_write", + "display_name": "Vulnerability Management Write", "description": "Update status + or assignee of vulnerabilities.", "created": "2023-06-12T16:36:20.819036+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "attributes": {"name": "reference_tables_write", "display_name": "Reference + Tables Write", "description": "Create or modify Reference Tables.", "created": + "2023-06-12T16:36:20.819036+00:00", "group_name": "Reference Tables", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "attributes": {"name": "rum_playlist_write", "display_name": "RUM Playlist + Write", "description": "Create, update, and delete RUM playlists. Add and + remove sessions from RUM playlists.", "created": "2023-07-07T16:26:50.792866+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", + "attributes": {"name": "observability_pipelines_delete", "display_name": "Observability + Pipelines Delete", "description": "Delete pipelines from your organization.", + "created": "2023-07-13T16:25:44.923503+00:00", "group_name": "Observability + Pipelines", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "attributes": {"name": "observability_pipelines_deploy", + "display_name": "Observability Pipelines Deploy", "description": "Deploy pipelines + in your organization.", "created": "2023-07-13T16:25:44.923503+00:00", "group_name": + "Observability Pipelines", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "attributes": + {"name": "processes_generate_metrics", "display_name": "Processes Generate + Metrics", "description": "Create custom metrics from processes.", "created": + "2023-07-12T16:27:03.457484+00:00", "group_name": "Processes", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "attributes": {"name": "api_keys_delete", "display_name": "API Keys Delete", + "description": "Delete API Keys for your organization.", "created": "2023-07-12T16:27:03.457484+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "attributes": {"name": "agent_flare_collection", "display_name": "Agent Flare + Collection", "description": "Collect an Agent flare with Fleet Automation.", + "created": "2023-07-13T16:25:44.923503+00:00", "group_name": "Fleet Automation", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005", "attributes": {"name": "org_connections_write", + "display_name": "Org Connections Write", "description": "Control which organizations + can query your organization''s data.", "created": "2023-07-20T16:25:38.185785+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005", + "attributes": {"name": "org_connections_read", "display_name": "Org Connections + Read", "description": "View which organizations can query data from your organization. + Query data from other organizations.", "created": "2023-07-20T16:25:38.185785+00:00", + "group_name": "Access Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "attributes": + {"name": "facets_write", "display_name": "Facets Write", "description": "Manage + facets for products other than Log Management, such as APM Traces. To modify + Log Facets, use Logs Write Facets.", "created": "2023-07-27T16:26:26.546986+00:00", + "group_name": "Cross-Product Features", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", + "attributes": {"name": "security_monitoring_suppressions_read", "display_name": + "Security Suppressions Read", "description": "Read Rule Suppressions.", "created": + "2023-08-17T16:25:26.209216+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "attributes": {"name": "security_monitoring_suppressions_write", + "display_name": "Security Suppressions Write", "description": "Write Rule + Suppressions.", "created": "2023-08-17T16:25:26.209216+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "attributes": + {"name": "static_analysis_settings_write", "display_name": "Static Analysis + Settings Write", "description": "Edit Static Analysis settings.", "created": + "2023-08-18T16:25:56.688500+00:00", "group_name": "Software Delivery", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005", + "attributes": {"name": "cd_visibility_read", "display_name": "CD Visibility + Read", "description": "View CD Visibility.", "created": "2023-09-08T23:01:01.285130+00:00", + "group_name": "Software Delivery", "display_type": "read", "restricted": true}}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "attributes": + {"name": "ndm_netflow_port_mappings_write", "display_name": "NDM Netflow Port + Mappings Write", "description": "Write NDM Netflow port mappings.", "created": + "2023-10-12T16:26:03.661255+00:00", "group_name": "Network Device Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "2de35000-69e5-11ee-996b-da7ad0900005", "attributes": {"name": "appsec_vm_read", + "display_name": "Vulnerability Management Read", "description": "View infrastructure, + application code and library vulnerabilities. This does not restrict access + to the vulnerability data source through the API or inventory SQL.", "created": + "2023-10-13T16:25:53.335225+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": true}}, {"type": "permissions", "id": + "54f38ef0-6f65-11ee-a094-da7ad0900005", "attributes": {"name": "debugger_capture_variables", + "display_name": "Dynamic Instrumentation Capture Variables", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "created": "2023-10-20T16:25:50.268064+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "f2cc9374-9841-11ee-a301-da7ad0900005", + "attributes": {"name": "error_tracking_settings_write", "display_name": "Error + Tracking Settings Write", "description": "Disable Error Tracking, edit inclusion + filters, and edit rate limit.", "created": "2023-12-11T16:25:50.880331+00:00", + "group_name": "Error Tracking", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "attributes": + {"name": "error_tracking_exclusion_filters_write", "display_name": "Error + Tracking Exclusion Filters Write", "description": "Add or change Error Tracking + exclusion filters.", "created": "2023-12-11T16:25:50.880331+00:00", "group_name": + "Error Tracking", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "attributes": + {"name": "integrations_read", "display_name": "Integrations Read", "description": + "View integrations and their configurations.", "created": "2024-01-23T16:26:45.209142+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "attributes": + {"name": "apm_api_catalog_write", "display_name": "API Catalog Write", "description": + "Add, modify, and delete API catalog definitions.", "created": "2024-02-02T16:25:57.659403+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "attributes": + {"name": "apm_api_catalog_read", "display_name": "API Catalog Read", "description": + "View API catalog and API definitions.", "created": "2024-02-02T16:25:57.659403+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "11280c24-cce8-11ee-af00-da7ad0900005", "attributes": + {"name": "containers_generate_image_metrics", "display_name": "Containers + Write Image Trend Metrics", "description": "Create or edit trend metrics from + container images.", "created": "2024-02-16T16:25:58.736360+00:00", "group_name": + "Containers", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "attributes": {"name": "rum_extend_retention", + "display_name": "RUM Session Replay Extend Retention", "description": "Extend + the retention of Session Replays.", "created": "2024-03-14T16:26:30.797793+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005", + "attributes": {"name": "on_prem_runner_read", "display_name": "Private Action + Runner Read", "description": "View and search Private Action Runners for Workflow + Automation and App Builder.", "created": "2024-03-18T16:26:33.583707+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", + "attributes": {"name": "on_prem_runner_use", "display_name": "Private Action + Runner Contribute", "description": "Attach a Private Action Runner to a connection.", + "created": "2024-03-18T16:26:33.583707+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "attributes": + {"name": "on_prem_runner_write", "display_name": "Private Action Runner Write", + "description": "Create and edit Private Action Runners for Workflow Automation + and App Builder.", "created": "2024-03-18T16:26:33.583707+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", + "attributes": {"name": "dora_settings_write", "display_name": "DORA Settings + Write", "description": "Edit the settings for DORA.", "created": "2024-04-08T16:25:58.692075+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", + "attributes": {"name": "agent_upgrade_write", "display_name": "Agent Upgrade", + "description": "Upgrade Datadog Agents with Fleet Automation.", "created": + "2024-04-22T16:25:53.208974+00:00", "group_name": "Fleet Automation", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", + "attributes": {"name": "continuous_profiler_pgo_read", "display_name": "Read + Continuous Profiler Profile-Guided Optimization (PGO) Data", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "created": "2024-04-23T16:30:30.492439+00:00", "group_name": "APM", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005", + "attributes": {"name": "oci_configurations_manage", "display_name": "OCI Configurations + Manage", "description": "Add or remove but not edit Oracle Cloud integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "attributes": {"name": "aws_configuration_read", + "display_name": "AWS Configuration Read", "description": "View but not add, + remove, or edit AWS integration configurations.", "created": "2024-04-23T16:30:30.492439+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "ccd09204-018e-11ef-afb6-da7ad0900005", "attributes": + {"name": "azure_configuration_read", "display_name": "Azure Configuration + Read", "description": "View but not add, remove, or edit Azure integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "attributes": {"name": "gcp_configuration_read", + "display_name": "GCP Configuration Read", "description": "View but not add, + remove, or edit GCP integration configurations.", "created": "2024-04-23T16:30:30.492439+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005", "attributes": + {"name": "oci_configuration_read", "display_name": "OCI Configuration Read", + "description": "View but not add, remove, or edit Oracle Cloud integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "attributes": {"name": "aws_configuration_edit", + "display_name": "AWS Configuration Edit", "description": "Edit but not add + or remove AWS integration configurations.", "created": "2024-05-02T16:26:19.141095+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "attributes": + {"name": "azure_configuration_edit", "display_name": "Azure Configuration + Edit", "description": "Edit but not add or remove Azure integration configurations.", + "created": "2024-05-02T16:26:19.141095+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005", "attributes": {"name": "gcp_configuration_edit", + "display_name": "GCP Configuration Edit", "description": "Edit but not add + or remove GCP integration configurations.", "created": "2024-05-02T16:26:19.141095+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "attributes": + {"name": "oci_configuration_edit", "display_name": "OCI Configuration Edit", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "created": "2024-05-02T16:26:19.141095+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "attributes": {"name": "llm_observability_read", + "display_name": "LLM Observability Read", "description": "View LLM Observability.", + "created": "2024-05-03T16:26:22.500447+00:00", "group_name": "LLM Observability", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ef950332-13a0-11ef-b582-da7ad0900005", "attributes": {"name": "flex_logs_config_write", + "display_name": "Flex Logs Configuration Write", "description": "Manage your + organization''s flex logs configuration.", "created": "2024-05-16T16:25:40.697830+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "21c5475c-228f-11ef-a00d-da7ad0900005", "attributes": + {"name": "reference_tables_read", "display_name": "Reference Tables Read", + "description": "View Reference Tables.", "created": "2024-06-04T16:26:01.400743+00:00", + "group_name": "Reference Tables", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "75066402-3890-11ef-bbb1-da7ad0900005", "attributes": + {"name": "fleet_policies_write", "display_name": "Agent Configuration Management", + "description": "Create and deploy Agent configurations.", "created": "2024-07-02T16:30:56.156267+00:00", + "group_name": "Fleet Automation", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005", "attributes": + {"name": "orchestration_custom_resource_definitions_write", "display_name": + "Custom Resource Definition Write", "description": "Enable, disable and update + custom resource indexing.", "created": "2024-07-02T16:30:56.156267+00:00", + "group_name": "Orchestration", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005", "attributes": + {"name": "code_analysis_read", "display_name": "Code Analysis Read", "description": + "View Code Analysis.", "created": "2024-08-06T16:26:25.858118+00:00", "group_name": + "Software Delivery", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005", "attributes": + {"name": "orchestration_workload_scaling_write", "display_name": "Workload + Scaling Write", "description": "Enable, disable, and configure workload autoscaling. + Apply workload scaling recommendations.", "created": "2024-08-06T16:26:25.858118+00:00", + "group_name": "Orchestration", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "06e3004e-5987-11ef-89c3-da7ad0900005", "attributes": + {"name": "llm_observability_write", "display_name": "LLM Observability Write", + "description": "Create, Update, and Delete LLM Observability resources including + User Defined Evaluations, OOTB Evaluations, and User Defined Topics.", "created": + "2024-08-13T15:16:34.275999+00:00", "group_name": "LLM Observability", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "attributes": {"name": "observability_pipelines_capture_read", "display_name": + "Observability Pipelines Live Capture Read", "description": "View captured + events of pipelines in your organization.", "created": "2024-08-27T16:50:39.669348+00:00", + "group_name": "Observability Pipelines", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005", + "attributes": {"name": "observability_pipelines_capture_write", "display_name": + "Observability Pipelines Live Capture Write", "description": "Capture live + events of pipelines in your organization.", "created": "2024-08-27T16:50:39.669348+00:00", + "group_name": "Observability Pipelines", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", + "attributes": {"name": "apps_datastore_read", "display_name": "Actions Datastore + Read", "description": "Allows read access to the data within the Actions Datastore.", + "created": "2024-08-22T16:25:15.890147+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "attributes": + {"name": "apps_datastore_write", "display_name": "Actions Datastore Write", + "description": "Allows modification of data within the Actions Datastore, + including adding, editing, and deleting records.", "created": "2024-08-22T16:25:15.890147+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", + "attributes": {"name": "apps_datastore_manage", "display_name": "Actions Datastore + Manage", "description": "Allows management of the Actions Datastore, including + creating, updating, and deleting the datastore itself.", "created": "2024-08-22T16:25:15.890147+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "attributes": {"name": "security_pipelines_read", "display_name": "Security + Pipelines Read", "description": "View Security Pipelines.", "created": "2024-08-30T16:25:36.779590+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "attributes": {"name": "security_pipelines_write", "display_name": "Security + Pipelines Write", "description": "Create, edit, and delete Security Pipelines.", + "created": "2024-08-30T16:25:36.779590+00:00", "group_name": "Cloud Security + Platform", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "8e9b2142-7511-11ef-b225-da7ad0900005", "attributes": {"name": "connection_groups_write", + "display_name": "Connection Groups Write", "description": "Create, delete + and update connection groups.", "created": "2024-09-17T16:26:13.918826+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "attributes": {"name": "quality_gates_evaluations_read", "display_name": "Quality + Gates Evaluations", "description": "Allow quality gates evaluations.", "created": + "2024-09-23T18:00:21.053557+00:00", "group_name": "Software Delivery", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "attributes": {"name": "connection_groups_read", "display_name": "Connection + Groups Read", "description": "Read and use connection groups.", "created": + "2024-09-26T14:35:22.139553+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "83fc9760-7c51-11ef-b846-da7ad0900005", "attributes": {"name": "security_monitoring_cws_agent_rules_actions", + "display_name": "Cloud Workload Security Agent Actions", "description": "Managing + actions on Cloud Workload Security Agent Rules.", "created": "2024-09-26T21:51:42.032795+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005", + "attributes": {"name": "rum_retention_filters_read", "display_name": "RUM + Retention Filters Read", "description": "View RUM Retention filters data.", + "created": "2024-10-02T23:15:17.740884+00:00", "group_name": "Real User Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "300f81cc-8114-11ef-84c0-da7ad0900005", "attributes": {"name": "rum_retention_filters_write", + "display_name": "RUM Retention Filters Write", "description": "Write RUM Retention + filters.", "created": "2024-10-02T23:15:17.740884+00:00", "group_name": "Real + User Monitoring", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005", "attributes": + {"name": "ddsql_editor_read", "display_name": "DDSQL Editor Read", "description": + "View and use DDSQL Editor.", "created": "2024-10-14T13:30:22.950954+00:00", + "group_name": "DDSQL Editor", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "attributes": + {"name": "disaster_recovery_status_read", "display_name": "Datadog Disaster + Recovery Read", "description": "View the disaster recovery status.", "created": + "2024-11-01T21:30:23.309658+00:00", "group_name": "Disaster Recovery", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "attributes": {"name": "disaster_recovery_status_write", "display_name": "Datadog + Disaster Recovery Write", "description": "Update the disaster recovery status.", + "created": "2024-11-01T21:30:23.309658+00:00", "group_name": "Disaster Recovery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "71949074-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "rum_settings_write", + "display_name": "RUM Settings Write", "description": "Write RUM Settings.", + "created": "2024-11-07T13:30:24.249160+00:00", "group_name": "Real User Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "71957e76-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "test_optimization_read", + "display_name": "Test Optimization Read", "description": "View Test Optimization.", + "created": "2024-11-07T13:30:24.249160+00:00", "group_name": "Software Delivery", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "71958024-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "test_optimization_write", + "display_name": "Test Optimization Write", "description": "Manage flaky tests + for Test Optimization.", "created": "2024-11-07T13:30:24.249160+00:00", "group_name": + "Software Delivery", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "attributes": + {"name": "test_optimization_settings_write", "display_name": "Test Optimization + Settings Write", "description": "Create, delete and update Test Optimization + settings.", "created": "2024-11-19T19:06:07.652237+00:00", "group_name": "Software + Delivery", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "attributes": {"name": "security_comments_write", + "display_name": "Security Comments Write", "description": "Write comments + into vulnerabilities.", "created": "2024-11-22T18:40:23.844837+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005", "attributes": + {"name": "security_comments_read", "display_name": "Security Comments Read", + "description": "Read comments of vulnerabilities.", "created": "2024-11-22T18:40:23.844837+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "attributes": {"name": "dashboards_invite_share", "display_name": "Shared + Dashboards Invite-only Write", "description": "Create, modify and delete shared + dashboards with share type ''Invite-only''. These dashboards can only be accessed + by user-specified email addresses.", "created": "2024-12-10T19:11:49.480076+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "attributes": + {"name": "dashboards_embed_share", "display_name": "Shared Dashboards Embed + Write", "description": "Create, modify and delete shared dashboards with share + type ''Embed''. These dashboards can be embedded on user-specified domains.", + "created": "2024-12-10T19:11:49.480076+00:00", "group_name": "Dashboards", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "attributes": {"name": "embeddable_graphs_share", + "display_name": "Shared Graphs Write", "description": "Generate public links + to share embeddable graphs externally.", "created": "2024-12-10T19:11:49.480076+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "attributes": + {"name": "logs_read_workspaces", "display_name": "Read Logs Workspaces", "description": + "View Logs Workspaces.", "created": "2024-12-11T19:21:44.137884+00:00", "group_name": + "Log Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "attributes": + {"name": "logs_write_workspaces", "display_name": "Write Logs Workspaces", + "description": "Create, update, and delete Logs Workspaces.", "created": "2024-12-11T19:21:44.137884+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "attributes": + {"name": "audience_management_read", "display_name": "Profiles Read", "description": + "View Audience Management data.", "created": "2025-01-07T18:36:31.392090+00:00", + "group_name": "Product Analytics", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "attributes": + {"name": "audience_management_write", "display_name": "Profiles Write", "description": + "Modify Audience Management data.", "created": "2025-01-07T18:36:31.392090+00:00", + "group_name": "Product Analytics", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005", + "attributes": {"name": "logs_read_config", "display_name": "Logs Configuration + Read", "description": "Read logs configuration.", "created": "2025-01-14T18:56:50.868001+00:00", + "group_name": "Log Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9b00426a-da87-11ef-9de6-da7ad0900005", "attributes": + {"name": "on_call_read", "display_name": "On-Call Read", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "created": + "2025-01-24T19:15:42.768282+00:00", "group_name": "On-Call", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "9b00ed28-da87-11ef-9de6-da7ad0900005", + "attributes": {"name": "on_call_write", "display_name": "On-Call Write", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "created": "2025-01-24T19:15:42.768282+00:00", "group_name": "On-Call", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "attributes": {"name": "on_call_page", "display_name": "On-Call Page", "description": + "Page On-Call teams and users.", "created": "2025-01-24T19:15:42.768282+00:00", + "group_name": "On-Call", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005", "attributes": + {"name": "error_tracking_read", "display_name": "Error Tracking Read", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "created": "2025-01-30T18:51:27.197297+00:00", "group_name": "Error Tracking", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "attributes": {"name": "on_call_respond", + "display_name": "On-Call Responder", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "created": "2025-02-03T23:42:07.592356+00:00", "group_name": "On-Call", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "attributes": {"name": "process_tags_read", "display_name": "Process Tags + Read", "description": "View Process Tag Rules.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Processes", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "attributes": + {"name": "process_tags_write", "display_name": "Process Tags Write", "description": + "Create, edit and delete Process Tag Rules.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Processes", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "attributes": + {"name": "network_connections_read", "display_name": "Network Connections + Read", "description": "Read Cloud Network Connections.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Cloud Network Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "attributes": {"name": "serverless_aws_instrumentation_read", "display_name": + "Serverless AWS Instrumentation Read", "description": "View remote instrumentation + configuration for serverless workloads.", "created": "2025-02-11T20:36:29.786935+00:00", + "group_name": "Serverless", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "attributes": + {"name": "serverless_aws_instrumentation_write", "display_name": "Serverless + AWS Instrumentation Write", "description": "Add, update, and remove remote + instrumentation configuration for serverless workloads.", "created": "2025-02-11T20:36:29.786935+00:00", + "group_name": "Serverless", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "attributes": + {"name": "coterm_write", "display_name": "CoTerm Write", "description": "Write + terminal recordings.", "created": "2025-02-28T19:06:40.038336+00:00", "group_name": + "CoTerm", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "attributes": {"name": "coterm_read", + "display_name": "CoTerm Read", "description": "Read terminal recordings.", + "created": "2025-02-28T19:06:40.038336+00:00", "group_name": "CoTerm", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "attributes": {"name": "data_streams_monitoring_capture_messages", "display_name": + "Data Streams Monitoring Capture Messages", "description": "Capture messages + from Kafka topics in the Data Streams Monitoring product.", "created": "2025-03-06T18:51:28.120564+00:00", + "group_name": "Data Streams Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "db45b75e-0360-11f0-8ac3-da7ad0900005", + "attributes": {"name": "cloudcraft_read", "display_name": "Cloudcraft Read", + "description": "View infrastructure diagrams in the Cloudcraft product.", + "created": "2025-03-17T18:51:37.899118+00:00", "group_name": "Infrastructure", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "9bb09240-0fee-11f0-958c-da7ad0900005", "attributes": {"name": "ndm_device_profiles_view", + "display_name": "NDM Device Profiles View", "description": "View NDM device + profiles.", "created": "2025-04-02T18:16:33.714415+00:00", "group_name": "Network + Device Monitoring", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "9bb09a10-0fee-11f0-958c-da7ad0900005", "attributes": + {"name": "ndm_device_profiles_edit", "display_name": "NDM Device Profiles + Edit", "description": "Edit NDM device profiles.", "created": "2025-04-02T18:16:33.714415+00:00", + "group_name": "Network Device Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "ndm_devices_read", "display_name": "NDM Read", "description": + "Read NDM data directly. Note: even without this permission, NDM data can + be retrieved via general infrastructure query APIs.", "created": "2025-04-24T21:30:24.005670+00:00", + "group_name": "Network Device Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "ndm_device_tags_write", "display_name": "NDM Device + Tags Write", "description": "Write NDM device tags.", "created": "2025-04-24T21:30:24.005670+00:00", + "group_name": "Network Device Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "orchestration_workload_scaling_read", "display_name": + "Workload Scaling Read", "description": "View workload autoscaling objects + and recommendations.", "created": "2025-04-24T21:30:24.005670+00:00", "group_name": + "Orchestration", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "attributes": {"name": "bits_investigations_read", + "display_name": "Bits Investigations Read", "description": "Read Bits investigations.", + "created": "2025-04-29T18:51:50.984055+00:00", "group_name": "Bits AI", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "attributes": {"name": "sheets_read", "display_name": "Sheets Read", "description": + "View Sheets.", "created": "2025-04-30T23:15:19.683852+00:00", "group_name": + "Sheets", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "fbf841c6-2618-11f0-8595-da7ad0900005", "attributes": {"name": "sheets_write", + "display_name": "Sheets Write", "description": "Create and change Sheets.", + "created": "2025-04-30T23:15:19.683852+00:00", "group_name": "Sheets", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", + "attributes": {"name": "orchestration_autoscaling_manage", "display_name": + "Autoscaling Manage", "description": "Manage autoscaling cluster level configuration.", + "created": "2025-05-19T18:00:40.454044+00:00", "group_name": "Orchestration", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "12465c5e-3a5c-11f0-becd-da7ad0900005", "attributes": {"name": "code_coverage_read", + "display_name": "Code Coverage read", "description": "View Code Coverage data.", + "created": "2025-05-26T18:05:56.647000+00:00", "group_name": "Software Delivery", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "attributes": {"name": "cases_shared_settings_write", + "display_name": "Case Management Shared Settings Write", "description": "Configure + shared settings for Case Management.", "created": "2025-06-17T18:22:00.814348+00:00", + "group_name": "Case and Incident Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", + "attributes": {"name": "actions_interface_run", "display_name": "Actions Interface + Run", "description": "Execute actions in the Bits AI Action Interface.", "created": + "2025-07-01T14:36:49.982499+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", "attributes": {"name": "ai_guard_evaluate", + "display_name": "AI Guard Evaluate", "description": "Evaluate AI Guard rules.", + "created": "2025-07-09T18:30:33.053855+00:00", "group_name": "Application + Security", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "attributes": {"name": "generate_ccm_report_schedules", + "display_name": "Cloud Cost Report Schedules Write", "description": "View + all report schedules and manage only the ones they''ve created.", "created": + "2025-07-10T18:40:35.388063+00:00", "group_name": "Cloud Cost Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "attributes": {"name": "manage_ccm_report_schedules", + "display_name": "Cloud Cost Report Schedules Manage", "description": "View, + create, and fully manage all report schedules across the organization.", "created": + "2025-07-10T18:40:35.388063+00:00", "group_name": "Cloud Cost Management", + "display_type": "write", "restricted": false}}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005", + "attributes": {"name": "Datadog Read Only Role", "managed": true, "created_at": + "2024-10-08T14:32:47.265744+00:00", "modified_at": "2024-10-08T14:32:47.266206+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": + "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", + "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": + "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", + "id": "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": + "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": + "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f33f74be-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": + "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", + "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": + "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", + "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", "id": + "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": + "permissions", "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", + "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", "id": + "3c002814-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", + "id": "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": + "35e4e288-df3b-11ef-886f-da7ad0900005"}, {"type": "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005"}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": + "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", + "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", "id": + "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", + "id": "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": + "12465c5e-3a5c-11f0-becd-da7ad0900005"}]}}}, {"type": "roles", "id": "693fe720-9569-11ef-969d-da7ad0900005", + "attributes": {"name": "Copy of Datadog Admin Role", "managed": false, "created_at": + "2024-10-28T20:15:44.156681+00:00", "modified_at": "2024-10-28T20:15:44.167199+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e"}, {"type": + "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": "permissions", + "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", "id": + "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": + "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": "permissions", + "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", "id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d"}, + {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19"}, {"type": + "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, {"type": "permissions", + "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": "permissions", "id": + "04668d0a-ec5c-11ea-9483-37d199df4587"}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, + {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc"}, {"type": + "permissions", "id": "04668f62-ec5c-11ea-9483-0fe541ab993f"}, {"type": "permissions", + "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02"}, {"type": "permissions", "id": + "046690de-ec5c-11ea-9483-bbcd905fcdca"}, {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf"}, + {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": + "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", + "id": "8b753262-f925-11ea-82fc-93f07fd96e76"}, {"type": "permissions", "id": + "9311970e-f925-11ea-ab4d-1760e76381c1"}, {"type": "permissions", "id": "998aabac-f925-11ea-b43d-8f1f42f3894e"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "72bc07d8-1472-11eb-a97b-8bff514d7382"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e"}, {"type": + "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": "permissions", + "id": "c8654332-2dce-11eb-9145-d33d26eeb65f"}, {"type": "permissions", "id": + "d23cc894-2dce-11eb-9145-37bf7b2dadc2"}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a"}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", "id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, + {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005"}, {"type": + "permissions", "id": "b39fb79a-90af-11eb-9428-da7ad0900005"}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "993b34d6-b16d-11eb-a891-da7ad0900005"}, + {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, {"type": + "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": + "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "c948b30a-16c7-11ec-88cc-da7ad0900005"}, + {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", + "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": + "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005"}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": + "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005"}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "3ad32264-f311-11ec-a058-da7ad0900005"}, {"type": "permissions", + "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005"}, + {"type": "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", + "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": + "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005"}, + {"type": "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": + "8b254e6a-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005"}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": "81e488c0-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", "id": + "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, + {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, + {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, {"type": + "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": + "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", "id": "4316b75c-093f-11ee-98e9-da7ad0900005"}, + {"type": "permissions", "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": + "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", + "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, {"type": "permissions", "id": + "eadf64b2-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": "eadf675a-2199-11ee-9a0e-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005"}, {"type": "permissions", + "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": + "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", + "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": + "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", + "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}, {"type": "permissions", "id": + "f2cc9374-9841-11ee-a301-da7ad0900005"}, {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005"}, + {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, {"type": + "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": + "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005"}, + {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": + "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", + "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": + "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd09204-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", + "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": + "permissions", "id": "ef950332-13a0-11ef-b582-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75066402-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005"}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", + "id": "06e3004e-5987-11ef-89c3-da7ad0900005"}, {"type": "permissions", "id": + "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", + "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005"}, + {"type": "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": + "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", + "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": + "83fc9760-7c51-11ef-b846-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "80ae7688-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": "71949074-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": + "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", + "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": "permissions", "id": + "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005"}, + {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", + "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", + "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", "id": + "35e4e288-df3b-11ef-886f-da7ad0900005"}]}}}, {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005", + "attributes": {"name": "Datadog Standard Role", "managed": true, "created_at": + "2024-10-08T14:32:47.215056+00:00", "modified_at": "2024-10-08T14:32:47.215828+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": + "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", + "id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, + {"type": "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": + "permissions", "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", + "id": "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": + "5de1e178-8536-11ea-968a-2fd9395bff90"}, {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, + {"type": "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": + "permissions", "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", + "id": "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": + "93654d1c-e706-11ea-9a85-d320ff02824d"}, {"type": "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, + {"type": "permissions", "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": + "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, {"type": "permissions", + "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": "permissions", "id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", "id": "9311970e-f925-11ea-ab4d-1760e76381c1"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": + "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", + "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, + {"type": "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "f07e4234-e894-11eb-ab79-da7ad0900005"}, {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": + "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": + "c948b30a-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, + {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": + "permissions", "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "cf873174-574f-11ec-9869-da7ad0900005"}, {"type": "permissions", "id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, + {"type": "permissions", "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": + "permissions", "id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", + "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": "permissions", "id": + "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": + "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", + "id": "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": + "permissions", "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, + {"type": "permissions", "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": + "permissions", "id": "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", + "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": "permissions", "id": + "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": + "81e488c0-db35-11ed-a170-da7ad0900005"}, {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": + "permissions", "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": + "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, + {"type": "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": + "permissions", "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", + "id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, + {"type": "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": + "permissions", "id": "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", + "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", "id": + "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", + "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": + "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, + {"type": "permissions", "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": + "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", + "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": "permissions", "id": + "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, + {"type": "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": + "permissions", "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": + "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, + {"type": "permissions", "id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": + "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09204-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, {"type": + "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75072806-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, + {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": + "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", + "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, + {"type": "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": + "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": "permissions", + "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", "id": + "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": + "permissions", "id": "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", + "id": "3c002814-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": + "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, + {"type": "permissions", "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", + "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": + "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, + {"type": "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": + "permissions", "id": "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", + "id": "9b00ed28-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": + "9b010d44-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005"}, + {"type": "permissions", "id": "7ad4419a-e288-11ef-bbbc-da7ad0900005"}, {"type": + "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", + "id": "4a6cadb6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": + "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, + {"type": "permissions", "id": "23f76dc4-f607-11ef-99cf-da7ad0900005"}, {"type": + "permissions", "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", + "id": "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", "id": + "9bb09240-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", "id": + "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": "fbf841c6-2618-11f0-8595-da7ad0900005"}, + {"type": "permissions", "id": "12465c5e-3a5c-11f0-becd-da7ad0900005"}, {"type": + "permissions", "id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005"}, {"type": "permissions", + "id": "d2c0335e-5688-11f0-ad5e-da7ad0900005"}, {"type": "permissions", "id": + "cc7517b0-5cf2-11f0-85d4-da7ad0900005"}, {"type": "permissions", "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005"}]}}}], + "meta": {"page": {"total_count": 8, "total_filtered_count": 8, "max_page_size": + 1000}}}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/roles?page%5Bnumber%5D=0&page%5Bsize%5D=100 + response: + body: + string: '{"data": [{"id": "693fe720-9569-11ef-969d-da7ad0900005", "type": "roles", + "attributes": {"created_at": "2024-10-28T20:15:44.156681Z", "created_by_handle": + "michael.richey@datadoghq.com", "modified_at": "2024-10-28T20:15:44.167199Z", + "modified_by_handle": "michael.richey@datadoghq.com", "name": "Copy of Datadog + Admin Role", "team_count": 0, "user_count": 2}, "relationships": {"permissions": + {"data": [{"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": "permissions"}, + {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": + "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", + "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions"}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": "permissions"}, + {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "type": "permissions"}, {"id": + "046690de-ec5c-11ea-9483-bbcd905fcdca", "type": "permissions"}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions"}, {"id": + "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions"}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions"}, {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": + "permissions"}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": + "c8654332-2dce-11eb-9145-d33d26eeb65f", "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", + "type": "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, + {"id": "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": + "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": "permissions"}, + {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": "permissions"}, {"id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "type": "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", + "type": "permissions"}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": + "permissions"}, {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, + {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions"}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions"}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, + {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": + "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions"}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": + "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions"}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": + "permissions"}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, + {"id": "f42ef088-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", + "type": "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": + "permissions"}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, + {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions"}, {"id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", + "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", "type": + "permissions"}, {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, + {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": "permissions"}, {"id": + "f40ff7be-966b-11ec-8253-da7ad0900005", "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions"}, + {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", + "type": "permissions"}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions"}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "type": "permissions"}, + {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": + "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", + "type": "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": "permissions"}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152", "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": + "permissions"}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, + {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005", "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions"}, {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": + "permissions"}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, + {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions"}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": + "permissions"}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, + {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": + "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", + "type": "permissions"}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions"}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, + {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions"}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions"}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, + {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", "type": "permissions"}, {"id": + "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": + "permissions"}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions"}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "ef44613e-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": + "permissions"}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", "type": "permissions"}, {"id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions"}, {"id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions"}, + {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": "permissions"}, {"id": + "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions"}, {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": + "permissions"}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, + {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": + "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": + "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, + {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", + "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": "permissions"}, + {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, {"id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions"}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005", "type": "permissions"}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", + "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, + {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": + "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": "permissions"}, + {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": + "c04a7614-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "type": "permissions"}, + {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", "type": "permissions"}, {"id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions"}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", + "type": "permissions"}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "type": + "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": + "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", + "type": "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": + "permissions"}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": "permissions"}, + {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, {"id": + "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions"}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, + {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": + "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions"}, {"id": "83fc9760-7c51-11ef-b846-da7ad0900005", "type": + "permissions"}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, + {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions"}, {"id": + "76e47222-8a30-11ef-8675-da7ad0900005", "type": "permissions"}, {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": + "permissions"}, {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions"}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", "type": "permissions"}, {"id": + "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", + "type": "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": + "permissions"}, {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": "permissions"}, {"id": + "7d962a3c-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", + "type": "permissions"}, {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": + "permissions"}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": + "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", + "type": "permissions"}, {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": + "permissions"}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "7d9641ac-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": + "permissions"}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": + "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions"}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions"}]}}}, {"id": "3020f50c-8582-11ef-ad61-da7ad0900005", "type": + "roles", "attributes": {"created_at": "2024-10-08T14:32:47.147289Z", "managed": + true, "modified_at": "2024-10-08T14:32:47.147932Z", "name": "Datadog Admin + Role", "team_count": 0, "user_count": 7}, "relationships": {"permissions": + {"data": [{"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": "permissions"}, + {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": + "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", + "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions"}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": "permissions"}, + {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "type": "permissions"}, {"id": + "046690de-ec5c-11ea-9483-bbcd905fcdca", "type": "permissions"}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions"}, {"id": + "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions"}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions"}, {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": + "permissions"}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": + "c8654332-2dce-11eb-9145-d33d26eeb65f", "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", + "type": "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, + {"id": "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": + "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": "permissions"}, + {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": "permissions"}, {"id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "type": "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", + "type": "permissions"}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": + "permissions"}, {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, + {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions"}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions"}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, + {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": + "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions"}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": + "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions"}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": + "permissions"}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, + {"id": "f42ef088-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", + "type": "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": + "permissions"}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, + {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions"}, {"id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", + "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", "type": + "permissions"}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, {"id": + "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": "permissions"}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions"}, {"id": + "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": + "permissions"}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": "permissions"}, + {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "type": "permissions"}, {"id": + "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", + "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions"}, + {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": "permissions"}, {"id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": "permissions"}, + {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, {"id": + "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", "type": + "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, {"id": + "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", + "type": "permissions"}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", "type": + "permissions"}, {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions"}, + {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, {"id": + "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", "type": + "permissions"}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, + {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": + "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", + "type": "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions"}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, + {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "type": + "permissions"}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, + {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": + "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", "type": "permissions"}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", + "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": "permissions"}, + {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions"}, {"id": + "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": + "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions"}, {"id": + "80ae7688-9898-11ef-8b23-da7ad0900005", "type": "permissions"}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", + "type": "permissions"}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "75066402-3890-11ef-bbb1-da7ad0900005", "type": "permissions"}, {"id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", + "type": "permissions"}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions"}, {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, + {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, {"id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions"}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions"}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions"}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions"}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, + {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions"}, {"id": + "cf873174-574f-11ec-9869-da7ad0900005", "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", + "type": "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": + "permissions"}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", "type": + "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": "permissions"}, + {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions"}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": + "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions"}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": "permissions"}, {"id": + "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions"}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "type": "permissions"}, {"id": + "48d8ce74-0065-11ee-9c16-da7ad0900005", "type": "permissions"}, {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", + "type": "permissions"}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": + "permissions"}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "type": "permissions"}, + {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, {"id": + "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", + "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": + "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions"}, + {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": "permissions"}, {"id": + "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", + "type": "permissions"}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, + {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, {"id": + "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": + "permissions"}, {"id": "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions"}, + {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": + "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": + "permissions"}, {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, + {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", + "type": "permissions"}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "ccd09f06-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": + "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions"}, {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": "permissions"}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": + "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", + "type": "permissions"}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", "type": + "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, + {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, {"id": + "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, + {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, {"id": + "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", + "type": "permissions"}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "7d9641ac-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": + "permissions"}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, {"id": + "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions"}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions"}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, + {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, {"id": + "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": "permissions"}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions"}, {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions"}, + {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, {"id": + "02e65e42-fabc-11ef-a653-da7ad0900005", "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions"}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions"}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions"}, + {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": + "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions"}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", "type": + "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions"}, + {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", "type": "permissions"}, {"id": + "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions"}]}}}, {"id": + "3032ffb8-8582-11ef-8bad-da7ad0900005", "type": "roles", "attributes": {"created_at": + "2024-10-08T14:32:47.265744Z", "managed": true, "modified_at": "2024-10-08T14:32:47.266206Z", + "name": "Datadog Read Only Role", "team_count": 0, "user_count": 2}, "relationships": + {"permissions": {"data": [{"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": "permissions"}, + {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions"}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", + "type": "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": "permissions"}, + {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, {"id": + "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": "permissions"}, + {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": "permissions"}, {"id": + "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", + "type": "permissions"}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": + "permissions"}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, + {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": "permissions"}, {"id": + "5de1e178-8536-11ea-968a-2fd9395bff90", "type": "permissions"}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": + "permissions"}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": + "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": + "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": "permissions"}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", + "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, + {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, + {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": "permissions"}, {"id": + "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": "permissions"}, {"id": + "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", + "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, + {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, {"id": + "54f98c32-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "type": "permissions"}]}}}, {"id": "302b4f34-8582-11ef-b6a4-da7ad0900005", + "type": "roles", "attributes": {"created_at": "2024-10-08T14:32:47.215056Z", + "managed": true, "modified_at": "2024-10-08T14:32:47.215828Z", "name": "Datadog + Standard Role", "team_count": 0, "user_count": 3}, "relationships": {"permissions": + {"data": [{"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, + {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": + "65eea998-f6a1-11ed-9953-da7ad0900005", "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions"}, {"id": + "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", + "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, + {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, {"id": + "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": "permissions"}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", + "type": "permissions"}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": + "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": "permissions"}, + {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, {"id": + "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", + "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": "permissions"}, {"id": + "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions"}, + {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions"}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions"}, {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, + {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": + "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", + "type": "permissions"}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions"}, {"id": + "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": "permissions"}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", + "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions"}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152", "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": + "permissions"}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, + {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005", "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "04668bde-ec5c-11ea-9483-fb6cb6586c6a", "type": "permissions"}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", + "type": "permissions"}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": + "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", "type": "permissions"}, + {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, {"id": + "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": + "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, + {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": + "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "type": "permissions"}, + {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": "permissions"}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions"}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "11280c24-cce8-11ee-af00-da7ad0900005", "type": "permissions"}, {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions"}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "type": + "permissions"}, {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions"}, + {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", "type": "permissions"}, {"id": + "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", + "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": + "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions"}, + {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": + "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", + "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": "permissions"}, + {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", "type": + "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": "permissions"}, + {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, {"id": + "e31cca10-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions"}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, + {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions"}, {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": + "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": + "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", + "type": "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": + "permissions"}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, + {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions"}, {"id": + "e31e6b54-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": + "permissions"}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, + {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": "permissions"}, {"id": + "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": + "permissions"}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": + "d039cfec-b44f-11ed-8db8-da7ad0900005", "type": "permissions"}, {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", + "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": + "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": "permissions"}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": + "permissions"}, {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, + {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": + "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, + {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions"}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", + "type": "permissions"}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions"}, {"id": + "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, {"id": + "9bb09240-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", + "type": "permissions"}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, + {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions"}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions"}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", + "type": "permissions"}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": + "permissions"}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, + {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": + "54f98c32-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "type": "permissions"}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", "type": + "permissions"}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions"}]}}}], + "meta": {"page": {"total_count": 4, "total_filtered_count": 4}}}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/users?page%5Bnumber%5D=0&page%5Bsize%5D=500 + response: + body: + string: '{"data": [{"type": "users", "id": "6b69113d-6f18-11f0-9ad5-1ad15dd71168", + "attributes": {"name": "Ida Adjivon", "handle": "ida.adjivon@datadoghq.com", + "created_at": "2025-08-01T20:45:12.043180+00:00", "modified_at": "2025-08-01T21:35:25.635446+00:00", + "email": "ida.adjivon@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/d3ff11e3ff125d30050f4dfff3fa614c?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "81f6f2c7-923f-11ef-879a-6ee0822e247c", "attributes": {"name": "Justine + Lo", "handle": "justine.lo@datadoghq.com", "created_at": "2024-10-24T19:38:13.281489+00:00", + "modified_at": "2024-10-25T14:18:33.835459+00:00", "email": "justine.lo@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/7d75964971289cf50e6090d76b45e3f6?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "b301b340-8582-11ef-ba31-3219ecc6cb25", "attributes": {"name": "Louis + Cheynel", "handle": "louis.cheynel@datadoghq.com", "created_at": "2024-10-08T14:36:26.725077+00:00", + "modified_at": "2025-02-19T21:12:46.164959+00:00", "email": "louis.cheynel@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/791d1a56daa2bd0f5bb25ed286d3f8bb?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": true, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Disabled", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "30533c3c-8582-11ef-938f-cecf6f9ed4ad", "attributes": {"name": "Michael + Richey", "handle": "michael.richey+ddreu1@datadoghq.com", "created_at": "2024-10-08T14:32:47.477901+00:00", + "modified_at": "2024-10-08T14:32:47.477901+00:00", "email": "michael.richey+ddreu1@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/b5b0452adbe01caf57c1e5f6fb97a631?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "693fe720-9569-11ef-969d-da7ad0900005"}, {"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, + "org": {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "98fe080d-8fda-11ef-aa03-c6ac9d6cb0b0", "attributes": + {"name": "Michael Richey", "handle": "michael.richey@datadoghq.com", "created_at": + "2024-10-21T18:30:50.420260+00:00", "modified_at": "2025-03-03T15:47:53.789029+00:00", + "email": "michael.richey@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/3ae7b2387f1a71bbb857d6f03993bdf3?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "b32e572e-8582-11ef-98fe-f2a776cd34b8", "attributes": {"name": "Ron + Hay", "handle": "ron.hay@datadoghq.com", "created_at": "2024-10-08T14:36:27.017641+00:00", + "modified_at": "2025-06-10T13:33:23.138895+00:00", "email": "ron.hay@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/1c9c2a5daac55fc5ae86178cd5e7b9c2?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "265f9002-9b9e-11ef-9152-56a58ecd5b70", "attributes": + {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com", "created_at": + "2024-11-05T17:48:22.271026+00:00", "modified_at": "2025-01-23T19:52:06.634848+00:00", + "email": "sherzod.karimov@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/993f2cc00ad75833dbc76f2a93bb227d?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "693fe720-9569-11ef-969d-da7ad0900005"}, {"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "b32f283f-8582-11ef-be6e-1e59aae1ca5b", "attributes": + {"name": "Tim Alexander", "handle": "tim.alexander@datadoghq.com", "created_at": + "2024-10-08T14:36:27.022996+00:00", "modified_at": "2024-10-08T15:29:54.659973+00:00", + "email": "tim.alexander@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/6269dae26686287d4bdd307a26e33f34?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}], + "included": [{"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005", + "attributes": {"name": "Datadog Admin Role", "managed": true, "created_at": + "2024-10-08T14:32:47.147289+00:00", "modified_at": "2024-10-08T14:32:47.147932+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e"}, {"type": + "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": "permissions", + "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", "id": + "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": + "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": "permissions", + "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", "id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d"}, + {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19"}, {"type": + "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, {"type": "permissions", + "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": "permissions", "id": + "04668d0a-ec5c-11ea-9483-37d199df4587"}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, + {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc"}, {"type": + "permissions", "id": "04668f62-ec5c-11ea-9483-0fe541ab993f"}, {"type": "permissions", + "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02"}, {"type": "permissions", "id": + "046690de-ec5c-11ea-9483-bbcd905fcdca"}, {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf"}, + {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": + "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", + "id": "8b753262-f925-11ea-82fc-93f07fd96e76"}, {"type": "permissions", "id": + "9311970e-f925-11ea-ab4d-1760e76381c1"}, {"type": "permissions", "id": "998aabac-f925-11ea-b43d-8f1f42f3894e"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "72bc07d8-1472-11eb-a97b-8bff514d7382"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e"}, {"type": + "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": "permissions", + "id": "c8654332-2dce-11eb-9145-d33d26eeb65f"}, {"type": "permissions", "id": + "d23cc894-2dce-11eb-9145-37bf7b2dadc2"}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a"}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", "id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, + {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005"}, {"type": + "permissions", "id": "b39fb79a-90af-11eb-9428-da7ad0900005"}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "993b34d6-b16d-11eb-a891-da7ad0900005"}, + {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, {"type": + "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": + "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "c948b30a-16c7-11ec-88cc-da7ad0900005"}, + {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", + "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": + "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005"}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": + "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005"}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "3ad32264-f311-11ec-a058-da7ad0900005"}, {"type": "permissions", + "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005"}, + {"type": "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", + "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": + "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005"}, + {"type": "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": + "8b254e6a-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005"}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": "81e488c0-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", "id": + "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, + {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, + {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, {"type": + "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": + "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", "id": "4316b75c-093f-11ee-98e9-da7ad0900005"}, + {"type": "permissions", "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": + "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", + "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, {"type": "permissions", "id": + "eadf64b2-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": "eadf675a-2199-11ee-9a0e-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005"}, {"type": "permissions", + "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": + "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", + "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": + "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", + "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}, {"type": "permissions", "id": + "f2cc9374-9841-11ee-a301-da7ad0900005"}, {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005"}, + {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, {"type": + "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": + "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005"}, + {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": + "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", + "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": + "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd09204-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", + "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": + "permissions", "id": "ef950332-13a0-11ef-b582-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75066402-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005"}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", + "id": "06e3004e-5987-11ef-89c3-da7ad0900005"}, {"type": "permissions", "id": + "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", + "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005"}, + {"type": "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": + "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", + "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": + "83fc9760-7c51-11ef-b846-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "80ae7688-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": "71949074-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": + "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", + "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": "permissions", "id": + "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005"}, + {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", + "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", + "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", "id": + "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": "9b00ed28-da87-11ef-9de6-da7ad0900005"}, + {"type": "permissions", "id": "9b010d44-da87-11ef-9de6-da7ad0900005"}, {"type": + "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005"}, {"type": "permissions", + "id": "7ad4419a-e288-11ef-bbbc-da7ad0900005"}, {"type": "permissions", "id": + "4a6c29d6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": "4a6cadb6-e806-11ef-8710-da7ad0900005"}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": + "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", + "id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", "id": + "23f76dc4-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, + {"type": "permissions", "id": "02e65e42-fabc-11ef-a653-da7ad0900005"}, {"type": + "permissions", "id": "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", + "id": "9bb09240-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": + "9bb09a10-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", "id": + "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": "fbf841c6-2618-11f0-8595-da7ad0900005"}, + {"type": "permissions", "id": "2cead6ec-34db-11f0-9eb2-da7ad0900005"}, {"type": + "permissions", "id": "12465c5e-3a5c-11f0-becd-da7ad0900005"}, {"type": "permissions", + "id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005"}, {"type": "permissions", "id": + "d2c0335e-5688-11f0-ad5e-da7ad0900005"}, {"type": "permissions", "id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005"}, + {"type": "permissions", "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005"}, {"type": + "permissions", "id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005"}]}}}, {"type": + "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "attributes": + {"name": "logs_read_index_data", "display_name": "Logs Read Index Data", "description": + "Read log data, possibly scoped to one or more indexes. In order to read log + data, a user must have both this permission and Logs Read Data. This permission + can be granted in a limited capacity per index from the Logs interface or + APIs. If granted via the Roles interface or API the permission has global + scope. Restrictions are limited to the Log Management product.", "created": + "2018-10-31T14:00:23.650159+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", + "attributes": {"name": "logs_modify_indexes", "display_name": "Logs Modify + Indexes", "description": "Read and modify all indexes in your account. This + includes the ability to grant the Logs Read Index Data and Logs Write Exclusion + Filters permission to other roles, for some or all indexes.", "created": "2018-10-31T14:00:23.664332+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "attributes": + {"name": "logs_live_tail", "display_name": "Logs Live Tail", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "created": "2018-10-31T14:00:23.676180+00:00", "group_name": + "Log Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "attributes": + {"name": "logs_write_exclusion_filters", "display_name": "Logs Write Exclusion + Filters", "description": "Add and change exclusion filters for all or some + log indexes. Can be granted in a limited capacity per index to specific roles + via the Logs interface or API. If granted from the Roles interface or API, + the permission has global scope.", "created": "2018-10-31T14:00:23.699543+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "attributes": + {"name": "logs_write_pipelines", "display_name": "Logs Write Pipelines", "description": + "Add and change log pipeline configurations, including the ability to grant + the Logs Write Processors permission to other roles, for some or all pipelines.", + "created": "2018-10-31T14:00:23.710821+00:00", "group_name": "Log Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "505f4538-dd15-11e8-9308-47a4732f715f", "attributes": {"name": "logs_write_processors", + "display_name": "Logs Write Processors", "description": "Add and change some + or all log processor configurations. Can be granted in a limited capacity + per pipeline to specific roles via the Logs interface or API. If granted via + the Roles interface or API the permission has global scope.", "created": "2018-10-31T14:00:24.726927+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e", "attributes": + {"name": "logs_write_archives", "display_name": "Logs Write Archives", "description": + "Add and edit Log Archives.", "created": "2018-10-31T14:00:24.730570+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "attributes": + {"name": "logs_generate_metrics", "display_name": "Logs Generate Metrics", + "description": "Create custom metrics from logs.", "created": "2019-07-25T12:37:55.949477+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "attributes": + {"name": "dashboards_read", "display_name": "Dashboards Read", "description": + "View dashboards.", "created": "2019-09-10T14:41:53.120685+00:00", "group_name": + "Dashboards", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "attributes": {"name": "dashboards_write", + "display_name": "Dashboards Write", "description": "Create and change dashboards.", + "created": "2019-09-10T14:41:53.136336+00:00", "group_name": "Dashboards", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f", "attributes": {"name": "dashboards_public_share", + "display_name": "Shared Dashboards Public Write", "description": "Create, + modify and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "created": "2019-09-10T14:41:53.150548+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "attributes": + {"name": "monitors_read", "display_name": "Monitors Read", "description": + "View monitors.", "created": "2019-09-16T18:49:59.270746+00:00", "group_name": + "Monitors", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "attributes": {"name": "monitors_write", + "display_name": "Monitors Write", "description": "Edit and delete individual + monitors.", "created": "2019-09-16T18:50:07.944781+00:00", "group_name": "Monitors", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "d3159858-d8b2-11e9-a336-e363d6ef331b", "attributes": {"name": "monitors_downtime", + "display_name": "Manage Downtimes", "description": "Set downtimes to suppress + alerts from any monitor in an organization. Mute and unmute monitors. The + ability to write monitors is not required to set downtimes.", "created": "2019-09-16T18:50:16.869407+00:00", + "group_name": "Monitors", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "attributes": + {"name": "logs_read_data", "display_name": "Logs Read Data", "description": + "Read log data. In order to read log data, a user must have both this permission + and Logs Read Index Data. This permission can be restricted with restriction + queries. Restrictions are limited to the Log Management product.", "created": + "2020-04-06T16:29:12.337169+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "attributes": {"name": "logs_read_archives", "display_name": "Logs Read Archives", + "description": "Read Log Archives location and use it for rehydration.", "created": + "2020-04-23T07:45:13.801938+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "attributes": {"name": "security_monitoring_rules_read", "display_name": "Security + Rules Read", "description": "Read Detection Rules.", "created": "2020-06-09T13:55:12.166762+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", + "attributes": {"name": "security_monitoring_rules_write", "display_name": + "Security Rules Write", "description": "Create and edit Detection Rules.", + "created": "2020-06-09T13:55:21.036857+00:00", "group_name": "Cloud Security + Platform", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9", "attributes": {"name": "security_monitoring_signals_read", + "display_name": "Security Signals Read", "description": "View Security Signals.", + "created": "2020-06-09T13:55:29.398066+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", "attributes": {"name": "security_monitoring_signals_write", + "display_name": "Security Signals Write", "description": "Modify Security + Signals.", "created": "2021-08-17T15:11:19.976019+00:00", "group_name": "Cloud + Security Platform", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d", "attributes": + {"name": "user_access_invite", "display_name": "User Access Invite", "description": + "Invite other users to your organization.", "created": "2020-08-25T19:10:01.692112+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", + "attributes": {"name": "user_access_manage", "display_name": "User Access + Manage", "description": "Disable users, manage user roles, manage SAML-to-role + mappings, and configure logs restriction queries.", "created": "2020-08-25T19:10:12.116164+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30", + "attributes": {"name": "user_app_keys", "display_name": "User App Keys", "description": + "View and manage Application Keys owned by the user.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "attributes": {"name": "org_app_keys_read", "display_name": "Org App Keys + Read", "description": "View Application Keys owned by all users in the organization.", + "created": "2020-09-01T14:04:14.317866+00:00", "group_name": "API and Application + Keys", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "04668d0a-ec5c-11ea-9483-37d199df4587", "attributes": {"name": "org_app_keys_write", + "display_name": "Org App Keys Write", "description": "Manage Application Keys + owned by all users in the organization.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "attributes": {"name": "synthetics_private_location_read", "display_name": + "Synthetics Private Locations Read", "description": "View, search, and use + Synthetics private locations.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Synthetic Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", + "attributes": {"name": "synthetics_private_location_write", "display_name": + "Synthetics Private Locations Write", "description": "Create and delete private + locations in addition to having access to the associated installation guidelines.", + "created": "2020-09-01T14:04:14.317866+00:00", "group_name": "Synthetic Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "04668f62-ec5c-11ea-9483-0fe541ab993f", "attributes": {"name": "billing_read", + "display_name": "Billing Read", "description": "View your organization''s + subscription and payment method but not make edits.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "attributes": + {"name": "billing_edit", "display_name": "Billing Edit", "description": "Manage + your organization''s subscription and payment method.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "attributes": {"name": "usage_read", "display_name": "Usage Read", "description": + "View your organization''s usage and usage attribution.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf", "attributes": + {"name": "usage_edit", "display_name": "Usage Edit", "description": "Manage + your organization''s usage attribution set-up.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "attributes": {"name": "metric_tags_write", "display_name": "Metric Tags Write", + "description": "Edit and save tag configurations for custom metrics.", "created": + "2020-09-01T14:04:14.317866+00:00", "group_name": "Metrics", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "attributes": {"name": "logs_write_historical_view", "display_name": "Logs + Write Historical Views", "description": "Rehydrate logs from Archives.", "created": + "2020-09-16T08:42:43.928080+00:00", "group_name": "Log Management", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "attributes": {"name": "audit_logs_read", "display_name": "Audit Trail Read", + "description": "View Audit Trail in your organization.", "created": "2020-09-17T20:37:03.702585+00:00", + "group_name": "Compliance", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9311970e-f925-11ea-ab4d-1760e76381c1", "attributes": + {"name": "api_keys_read", "display_name": "API Keys Read", "description": + "List and retrieve the key values of all API Keys in your organization.", + "created": "2020-09-17T20:37:16.471514+00:00", "group_name": "API and Application + Keys", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "attributes": {"name": "api_keys_write", + "display_name": "API Keys Write", "description": "Create and rename API Keys + for your organization.", "created": "2020-09-17T20:37:27.331389+00:00", "group_name": + "API and Application Keys", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "attributes": + {"name": "synthetics_global_variable_read", "display_name": "Synthetics Global + Variable Read", "description": "View, search, and use Synthetics global variables.", + "created": "2020-09-17T20:37:50.165103+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", "attributes": {"name": "synthetics_global_variable_write", + "display_name": "Synthetics Global Variable Write", "description": "Create, + edit, and delete global variables for Synthetics.", "created": "2020-09-17T20:38:01.966230+00:00", + "group_name": "Synthetic Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "b6858556-f925-11ea-9222-1f47b8677b93", + "attributes": {"name": "synthetics_read", "display_name": "Synthetics Read", + "description": "List and view configured Synthetic tests and test results.", + "created": "2020-09-17T20:38:15.951574+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "attributes": {"name": "synthetics_write", + "display_name": "Synthetics Write", "description": "Create, edit, and delete + Synthetic tests.", "created": "2020-09-17T20:38:27.421632+00:00", "group_name": + "Synthetic Monitoring", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "attributes": + {"name": "synthetics_default_settings_read", "display_name": "Synthetics Default + Settings Read", "description": "View the default settings for Synthetic Monitoring.", + "created": "2020-09-17T20:38:49.527477+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "cf223140-f925-11ea-a3a2-df370532bcf7", "attributes": {"name": "synthetics_default_settings_write", + "display_name": "Synthetics Default Settings Write", "description": "Edit + the default settings for Synthetic Monitoring.", "created": "2020-09-17T20:38:57.244987+00:00", + "group_name": "Synthetic Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", + "attributes": {"name": "logs_write_facets", "display_name": "Logs Write Facets", + "description": "Create or edit Log Facets.", "created": "2020-10-14T12:54:16.607129+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "attributes": + {"name": "service_account_write", "display_name": "Service Account Write", + "description": "Create, disable, and use Service Accounts in your organization.", + "created": "2020-10-22T14:25:34.868208+00:00", "group_name": "Access Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "attributes": {"name": "apm_read", + "display_name": "APM Read", "description": "Read and query APM and Trace Analytics.", + "created": "2020-11-23T20:59:02.902692+00:00", "group_name": "APM", "display_type": + "read", "restricted": true}}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "attributes": {"name": "apm_retention_filter_read", "display_name": "APM Retention + Filters Read", "description": "Read trace retention filters. A user with this + permission can view the retention filters page, list of filters, their statistics, + and creation info.", "created": "2020-11-23T20:59:11.833795+00:00", "group_name": + "APM", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "attributes": {"name": "apm_retention_filter_write", + "display_name": "APM Retention Filters Write", "description": "Create, edit, + and delete trace retention filters. A user with this permission can create + new retention filters, and update or delete to existing retention filters.", + "created": "2020-11-23T20:59:19.531425+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", + "attributes": {"name": "apm_service_ingest_read", "display_name": "APM Service + Ingest Read", "description": "Access service ingestion pages. A user with + this permission can view the service ingestion page, list of root services, + their statistics, and creation info.", "created": "2020-11-23T20:59:25.933546+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "c8654332-2dce-11eb-9145-d33d26eeb65f", "attributes": + {"name": "apm_service_ingest_write", "display_name": "APM Service Ingest Write", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "created": "2020-11-23T20:59:31.352238+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "attributes": + {"name": "apm_apdex_manage_write", "display_name": "APM Apdex Manage Write", + "description": "Set Apdex T value on any service. A user with this permission + can set the T value from the Apdex graph on the service page.", "created": + "2020-11-23T20:59:47.864214+00:00", "group_name": "APM", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c", + "attributes": {"name": "apm_tag_management_write", "display_name": "APM Tag + Management Write", "description": "Edit second primary tag selection. A user + with this permission can modify the second primary tag dropdown in the APM + settings page.", "created": "2020-11-23T21:00:01.066421+00:00", "group_name": + "APM", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "attributes": {"name": "apm_primary_operation_write", + "display_name": "APM Primary Operation Write", "description": "Edit the operation + name value selection. A user with this permission can modify the operation + name list in the APM settings page and the operation name controller on the + service page.", "created": "2020-11-23T21:00:18.680068+00:00", "group_name": + "APM", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", "attributes": {"name": "audit_logs_write", + "display_name": "Audit Trail Write", "description": "Configure Audit Trail + in your organization.", "created": "2020-12-01T19:12:04.940111+00:00", "group_name": + "Compliance", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", "attributes": {"name": "rum_apps_write", + "display_name": "RUM Apps Write", "description": "Create, edit, and delete + RUM applications. Creating a RUM application automatically generates a Client + Token. In order to create Client Tokens directly, a user needs the Client + Tokens Write permission.", "created": "2021-01-11T19:07:15.721075+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "attributes": {"name": "debugger_write", "display_name": "Dynamic Instrumentation + Write", "description": "Edit Dynamic Instrumentation configuration. Create + or modify Dynamic Instrumentation probes that do not capture function state.", + "created": "2021-03-08T15:07:07.319753+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "attributes": {"name": "debugger_read", "display_name": "Dynamic Instrumentation + Read", "description": "View Dynamic Instrumentation configuration.", "created": + "2021-03-08T15:07:07.333513+00:00", "group_name": "APM", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005", + "attributes": {"name": "data_scanner_read", "display_name": "Data Scanner + Read", "description": "View Sensitive Data Scanner configurations and scanning + results.", "created": "2021-03-29T16:56:27.205044+00:00", "group_name": "Compliance", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "attributes": {"name": "data_scanner_write", + "display_name": "Data Scanner Write", "description": "Edit Sensitive Data + Scanner configurations.", "created": "2021-03-29T16:56:27.219481+00:00", "group_name": + "Compliance", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "attributes": {"name": "org_management", + "display_name": "Org Management", "description": "Edit org configurations, + including authentication and certain security preferences such as configuring + SAML, renaming an org, configuring allowed login methods, creating child orgs, + subscribing & unsubscribing from apps in the marketplace, and enabling & disabling + Remote Configuration for the entire organization.", "created": "2021-04-23T17:51:22.555499+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "99397470-b16d-11eb-a891-da7ad0900005", + "attributes": {"name": "security_monitoring_filters_read", "display_name": + "Security Filters Read", "description": "Read Security Filters.", "created": + "2021-05-10T08:56:24.514661+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "993b34d6-b16d-11eb-a891-da7ad0900005", "attributes": {"name": "security_monitoring_filters_write", + "display_name": "Security Filters Write", "description": "Create, edit, and + delete Security Filters.", "created": "2021-05-10T08:56:24.527411+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", + "attributes": {"name": "incident_read", "display_name": "Incidents Read", + "description": "View incidents in Datadog.", "created": "2021-06-22T15:11:07.986072+00:00", + "group_name": "Case and Incident Management", "display_type": "read", "restricted": + true}}, {"type": "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005", + "attributes": {"name": "incident_write", "display_name": "Incidents Write", + "description": "Create, view, and manage incidents in Datadog.", "created": + "2021-06-22T15:11:08.003239+00:00", "group_name": "Case and Incident Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "122f7508-d36c-11eb-b2bf-da7ad0900005", "attributes": {"name": "incident_settings_read", + "display_name": "Incident Settings Read", "description": "View Incident Settings.", + "created": "2021-06-22T15:11:07.995787+00:00", "group_name": "Case and Incident + Management", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "attributes": {"name": "incident_settings_write", + "display_name": "Incident Settings Write", "description": "Configure Incident + Settings.", "created": "2021-06-22T15:11:07.999194+00:00", "group_name": "Case + and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005", "attributes": + {"name": "appsec_event_rule_read", "display_name": "Application Security Management + Event Rules Read", "description": "View Application Security Management Event + Rules.", "created": "2021-07-19T13:26:35.252432+00:00", "group_name": "Cloud + Security Platform", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005", "attributes": + {"name": "appsec_event_rule_write", "display_name": "Application Security + Management Event Rules Write", "description": "Edit Application Security Management + Event Rules.", "created": "2021-07-19T13:26:35.260787+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "attributes": + {"name": "rum_apps_read", "display_name": "RUM Apps Read", "description": + "View RUM Applications data.", "created": "2021-08-02T09:46:22.567371+00:00", + "group_name": "Real User Monitoring", "display_type": "read", "restricted": + true}}, {"type": "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", + "attributes": {"name": "rum_session_replay_read", "display_name": "RUM Session + Replay Read", "description": "View Session Replays.", "created": "2021-08-02T09:46:22.572685+00:00", + "group_name": "Real User Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "c94811de-16c7-11ec-88cc-da7ad0900005", + "attributes": {"name": "security_monitoring_notification_profiles_read", "display_name": + "Security Notification Rules Read", "description": "Read Notification Rules.", + "created": "2021-09-16T08:26:27.288070+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "attributes": {"name": "security_monitoring_notification_profiles_write", + "display_name": "Security Notification Rules Write", "description": "Create, + edit, and delete Notification Rules.", "created": "2021-09-16T08:26:27.292835+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005", + "attributes": {"name": "apm_generate_metrics", "display_name": "APM Generate + Metrics", "description": "Create custom metrics from spans.", "created": "2021-09-16T15:31:28.639581+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005", "attributes": + {"name": "security_monitoring_cws_agent_rules_read", "display_name": "Cloud + Workload Security Agent Rules Read", "description": "Read Cloud Workload Security + Agent Rules.", "created": "2021-11-17T10:41:45.755009+00:00", "group_name": + "Cloud Security Platform", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "f5e1489a-4792-11ec-944b-da7ad0900005", "attributes": + {"name": "security_monitoring_cws_agent_rules_write", "display_name": "Cloud + Workload Security Agent Rules Write", "description": "Create, edit, and delete + Cloud Workload Security Agent Rules.", "created": "2021-11-17T10:41:45.761956+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", + "attributes": {"name": "apm_pipelines_write", "display_name": "APM Pipelines + Write", "description": "Add and change APM pipeline configurations.", "created": + "2021-12-06T14:51:25.389398+00:00", "group_name": "APM", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005", + "attributes": {"name": "apm_pipelines_read", "display_name": "APM Pipelines + Read", "description": "View APM pipeline configurations.", "created": "2021-12-07T11:21:23.741014+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "attributes": + {"name": "observability_pipelines_read", "display_name": "Observability Pipelines + Read", "description": "View pipelines in your organization.", "created": "2021-12-09T00:11:41.567875+00:00", + "group_name": "Observability Pipelines", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "attributes": {"name": "observability_pipelines_write", "display_name": "Observability + Pipelines Write", "description": "Edit pipelines in your organization.", "created": + "2021-12-09T00:11:41.572883+00:00", "group_name": "Observability Pipelines", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "e31e0056-8502-11ec-b266-da7ad0900005", "attributes": {"name": "workflows_read", + "display_name": "Workflows Read", "description": "View workflows.", "created": + "2022-02-03T15:06:38.846399+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "e31f0230-8502-11ec-b266-da7ad0900005", "attributes": {"name": "workflows_write", + "display_name": "Workflows Write", "description": "Create, edit, and delete + workflows.", "created": "2022-02-03T15:06:38.853003+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "workflows_run", "display_name": "Workflows Run", "description": + "Run workflows.", "created": "2022-02-03T15:06:38.849099+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "connections_read", "display_name": "Connections Read", + "description": "List and view available connections. Connections contain secrets + that cannot be revealed.", "created": "2022-02-03T15:06:38.837721+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "connections_write", "display_name": "Connections Write", + "description": "Create and delete connections.", "created": "2022-02-03T15:06:38.843395+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", + "attributes": {"name": "notebooks_read", "display_name": "Notebooks Read", + "description": "View notebooks.", "created": "2022-03-02T18:51:33.435297+00:00", + "group_name": "Notebooks", "display_type": "read", "restricted": true}}, {"type": + "permissions", "id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "attributes": + {"name": "notebooks_write", "display_name": "Notebooks Write", "description": + "Create and change notebooks.", "created": "2022-03-02T18:51:33.439640+00:00", + "group_name": "Notebooks", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005", "attributes": + {"name": "logs_delete_data", "display_name": "Logs Delete Data", "description": + "Delete data from your Logs, including entire indexes.", "created": "2022-02-25T18:51:34.198635+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005", "attributes": + {"name": "rum_generate_metrics", "display_name": "RUM Generate Metrics", "description": + "Create custom metrics from RUM events.", "created": "2022-04-11T16:26:30.469616+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "attributes": {"name": "aws_configurations_manage", "display_name": "AWS Configurations + Manage", "description": "Add or remove but not edit AWS integration configurations.", + "created": "2022-04-26T20:21:48.019179+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "7fbe2266-c59e-11ec-90fb-da7ad0900005", "attributes": {"name": "azure_configurations_manage", + "display_name": "Azure Configurations Manage", "description": "Add or remove + but not edit Azure integration configurations.", "created": "2022-04-26T20:21:48.031171+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "attributes": + {"name": "gcp_configurations_manage", "display_name": "GCP Configurations + Manage", "description": "Add or remove but not edit GCP integration configurations.", + "created": "2022-04-26T20:21:48.027662+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "attributes": {"name": "manage_integrations", + "display_name": "Integrations Manage", "description": "Install, uninstall, + and configure integrations.", "created": "2022-04-26T20:21:48.034453+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "attributes": + {"name": "usage_notifications_read", "display_name": "Usage Notifications + Read", "description": "Receive notifications and view currently configured + notification settings.", "created": "2022-05-17T13:56:29.090665+00:00", "group_name": + "Billing and Usage", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "attributes": + {"name": "usage_notifications_write", "display_name": "Usage Notifications + Write", "description": "Receive notifications and configure notification settings.", + "created": "2022-05-17T13:56:29.094457+00:00", "group_name": "Billing and + Usage", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "attributes": {"name": "generate_dashboard_reports", + "display_name": "Dashboards Report Write", "description": "Schedule PDF reports + from a dashboard.", "created": "2022-06-06T18:15:47.465864+00:00", "group_name": + "Dashboards", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "f33f74be-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_read", + "display_name": "SLOs Read", "description": "View SLOs and status corrections.", + "created": "2022-06-08T16:20:45.638848+00:00", "group_name": "Service Level + Objectives", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "f340161c-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_write", + "display_name": "SLOs Write", "description": "Create, edit, and delete SLOs.", + "created": "2022-06-08T16:20:45.643085+00:00", "group_name": "Service Level + Objectives", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_corrections", + "display_name": "SLOs Status Corrections", "description": "Apply, edit, and + delete SLO status corrections. A user with this permission can make status + corrections, even if they do not have permission to edit those SLOs.", "created": + "2022-06-08T16:20:45.632820+00:00", "group_name": "Service Level Objectives", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "3ad32264-f311-11ec-a058-da7ad0900005", "attributes": {"name": "monitor_config_policy_write", + "display_name": "Monitor Configuration Policy Write", "description": "Create, + update, and delete monitor configuration policies.", "created": "2022-06-23T16:26:26.854058+00:00", + "group_name": "Monitors", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f42ef088-173a-11ed-8654-da7ad0900005", "attributes": + {"name": "apm_service_catalog_write", "display_name": "Service Catalog Write", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "created": "2022-08-08T16:55:49.060954+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "attributes": + {"name": "apm_service_catalog_read", "display_name": "Service Catalog Read", + "description": "View service catalog and service definitions.", "created": + "2022-08-08T16:55:49.055930+00:00", "group_name": "APM", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", + "attributes": {"name": "logs_write_forwarding_rules", "display_name": "Logs + Write Forwarding Rules", "description": "Add and edit forwarding destinations + and rules for logs.", "created": "2022-08-08T21:30:48.328740+00:00", "group_name": + "Log Management", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005", "attributes": + {"name": "connections_resolve", "display_name": "Connections Resolve", "description": + "Resolve connections.", "created": "2022-08-25T15:26:23.943459+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_protect_read", "display_name": "Application + Security Management Protect Read", "description": "View blocked attackers.", + "created": "2022-10-27T09:25:59.057166+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "attributes": {"name": "appsec_protect_write", + "display_name": "Application Security Management Protect Write", "description": + "Manage blocked attackers.", "created": "2022-10-27T09:25:59.060959+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_activation_read", "display_name": "Application + Security Management 1-click Enablement Read", "description": "View whether + Application Security Management has been enabled or disabled on services via + 1-click enablement with Remote Configuration.", "created": "2022-10-27T09:25:59.047444+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_activation_write", "display_name": "Application + Security Management 1-click Enablement Write", "description": "Enable or disable + Application Security Management on services via 1-click enablement.", "created": + "2022-10-27T09:25:59.053394+00:00", "group_name": "Cloud Security Platform", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "c0490360-5a12-11ed-adbe-da7ad0900005", "attributes": {"name": "apps_run", + "display_name": "Apps View", "description": "View and run Apps in App Builder.", + "created": "2022-11-01T18:26:50.026179+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005", "attributes": + {"name": "apps_write", "display_name": "Apps Write", "description": "Create, + edit, and delete Apps in App Builder.", "created": "2022-11-01T18:26:50.036655+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "926612da-7a4c-11ed-b809-da7ad0900005", + "attributes": {"name": "cases_read", "display_name": "Cases Read", "description": + "View Cases.", "created": "2022-12-12T18:41:21.060748+00:00", "group_name": + "Case and Incident Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "attributes": + {"name": "cases_write", "display_name": "Cases Write", "description": "Create + and update cases.", "created": "2022-12-12T18:41:21.067150+00:00", "group_name": + "Case and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "attributes": + {"name": "apm_remote_configuration_write", "display_name": "APM Remote Configuration + Write", "description": "Edit APM Remote Configuration.", "created": "2022-12-12T20:21:20.723147+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "attributes": + {"name": "apm_remote_configuration_read", "display_name": "APM Remote Configuration + Read", "description": "View APM Remote Configuration.", "created": "2022-12-12T20:21:20.716560+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "attributes": + {"name": "ci_visibility_read", "display_name": "CI Visibility Read", "description": + "View CI Visibility.", "created": "2022-12-13T16:02:28.814628+00:00", "group_name": + "Software Delivery", "display_type": "read", "restricted": true}}, {"type": + "permissions", "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "attributes": + {"name": "ci_visibility_write", "display_name": "CI Visibility Tests Write", + "description": "Edit flaky tests and delete Test Services.", "created": "2022-12-13T16:02:28.821529+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "ci_provider_settings_write", "display_name": "CI Provider + Settings Write", "description": "Edit CI Provider settings. Manage GitHub + accounts and repositories for enabling CI Visibility and job logs collection.", + "created": "2022-12-13T16:02:28.806929+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "attributes": {"name": "ci_visibility_settings_write", + "display_name": "CI Visibility Settings Write", "description": "Configure + CI Visibility settings. Set a repository default branch, enable GitHub comments, + and delete test services.", "created": "2022-12-13T16:02:28.818035+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "intelligent_test_runner_activation_write", "display_name": + "Intelligent Test Runner Activation Write", "description": "Deprecated. Enable + or disable Intelligent Test Runner.", "created": "2022-12-13T16:02:28.826271+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "intelligent_test_runner_settings_write", "display_name": + "Intelligent Test Runner Settings Write", "description": "Deprecated. Edit + Intelligent Test Runner settings, such as modifying ITR excluded branch list.", + "created": "2022-12-13T16:02:28.830112+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "55f64460-7d61-11ed-9c36-da7ad0900005", "attributes": {"name": "continuous_profiler_read", + "display_name": "Continuous Profiler Read", "description": "View data in Continuous + Profiler.", "created": "2022-12-16T16:47:32.584514+00:00", "group_name": "APM", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005", "attributes": {"name": "teams_manage", + "display_name": "Teams Manage", "description": "Manage Teams. Create, delete, + rename, and edit metadata of all Teams. To control Team membership across + all Teams, use the User Access Manage permission.", "created": "2023-01-18T20:45:46.126002+00:00", + "group_name": "Teams", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005", "attributes": + {"name": "security_monitoring_findings_read", "display_name": "Security Monitoring + Findings Read", "description": "View a list of findings that include both + misconfigurations and identity risks.", "created": "2023-02-24T14:30:40.720618+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", + "attributes": {"name": "incident_notification_settings_read", "display_name": + "Incident Notification Settings Read", "description": "View Incidents Notification + settings.", "created": "2023-02-24T17:27:09.998449+00:00", "group_name": "Case + and Incident Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "attributes": + {"name": "incident_notification_settings_write", "display_name": "Incident + Notification Settings Write", "description": "Configure Incidents Notification + settings.", "created": "2023-02-24T17:27:09.998449+00:00", "group_name": "Case + and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "attributes": + {"name": "ci_ingestion_control_write", "display_name": "CI Visibility Ingestion + Control Write", "description": "Edit CI Ingestion Control exclusion filters.", + "created": "2023-03-24T10:25:52.891502+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005", "attributes": {"name": "error_tracking_write", + "display_name": "Error Tracking Issue Write", "description": "Edit Error Tracking + issues.", "created": "2023-03-27T16:55:39.540192+00:00", "group_name": "Error + Tracking", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "81e488c0-db35-11ed-a170-da7ad0900005", "attributes": {"name": "watchdog_alerts_write", + "display_name": "Watchdog Alerts Write", "description": "Manage Watchdog Alerts.", + "created": "2023-04-15T02:30:37.731056+00:00", "group_name": "Watchdog", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005", + "attributes": {"name": "saved_views_write", "display_name": "Saved Views Write", + "description": "Modify Saved Views across all Datadog products.", "created": + "2023-04-15T02:30:37.731056+00:00", "group_name": "Cross-Product Features", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "94c8a4da-de87-11ed-9e92-da7ad0900005", "attributes": {"name": "client_tokens_read", + "display_name": "Client Tokens Read", "description": "Read Client Tokens. + Unlike API keys, client tokens may be exposed client-side in JavaScript code + for web browsers and other clients to send data to Datadog.", "created": "2023-04-19T07:55:41.646942+00:00", + "group_name": "API and Application Keys", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "94c927e8-de87-11ed-9e92-da7ad0900005", + "attributes": {"name": "client_tokens_write", "display_name": "Client Tokens + Write", "description": "Create and edit Client Tokens. Unlike API keys, client + tokens may be exposed client-side in JavaScript code for web browsers and + other clients to send data to Datadog.", "created": "2023-04-19T07:55:41.646942+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "619b2642-f41b-11ed-b4e1-da7ad0900005", + "attributes": {"name": "event_correlation_config_read", "display_name": "Event + Correlation Config Read", "description": "Read Event Correlation Configuration + data such as Correlation Rules and Settings.", "created": "2023-05-16T18:56:35.719150+00:00", + "group_name": "Events", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "attributes": + {"name": "event_correlation_config_write", "display_name": "Event Correlation + Config Write", "description": "Manage Event Correlation Configuration such + as Correlation Rules and Settings.", "created": "2023-05-16T18:56:35.719150+00:00", + "group_name": "Events", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005", "attributes": + {"name": "event_config_write", "display_name": "Event Config Write", "description": + "Manage general event configuration such as API Emails.", "created": "2023-05-20T00:00:57.864864+00:00", + "group_name": "Events", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "attributes": + {"name": "security_monitoring_findings_write", "display_name": "Security Monitoring + Findings Write", "description": "Mute CSPM Findings.", "created": "2023-05-23T21:45:42.705754+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "attributes": {"name": "cloud_cost_management_read", "display_name": "Cloud + Cost Management Read", "description": "View Cloud Cost pages and the cloud + cost data source in dashboards and notebooks. For more details, see the Cloud + Cost Management docs.", "created": "2023-05-31T19:20:42.284425+00:00", "group_name": + "Cloud Cost Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "attributes": + {"name": "cloud_cost_management_write", "display_name": "Cloud Cost Management + Write", "description": "Configure cloud cost accounts and global customizations. + For more details, see the Cloud Cost Management docs.", "created": "2023-05-31T19:20:42.284425+00:00", + "group_name": "Cloud Cost Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", + "attributes": {"name": "host_tags_write", "display_name": "Host Tags Write", + "description": "Add and change tags on hosts.", "created": "2023-05-31T05:12:01.547070+00:00", + "group_name": "Metrics", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005", "attributes": + {"name": "ci_visibility_pipelines_write", "display_name": "CI Visibility Pipelines + Write", "description": "Create CI Visibility pipeline spans using the API.", + "created": "2023-06-01T10:15:50.891463+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "attributes": {"name": "quality_gate_rules_read", + "display_name": "Quality Gate Rules Read", "description": "View Quality Gate + Rules.", "created": "2023-06-19T16:27:34.826612+00:00", "group_name": "Software + Delivery", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "attributes": {"name": "quality_gate_rules_write", + "display_name": "Quality Gate Rules Write", "description": "Edit Quality Gate + Rules.", "created": "2023-06-19T16:27:34.826612+00:00", "group_name": "Software + Delivery", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "attributes": {"name": "metrics_metadata_write", + "display_name": "Metrics Metadata Write", "description": "Edit metadata on + metrics.", "created": "2023-06-23T16:21:25.009293+00:00", "group_name": "Metrics", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "4316b75c-093f-11ee-98e9-da7ad0900005", "attributes": {"name": "rum_delete_data", + "display_name": "RUM Delete Data", "description": "Delete data from RUM.", + "created": "2023-06-12T16:36:20.819036+00:00", "group_name": "Real User Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "4316826e-093f-11ee-98e9-da7ad0900005", "attributes": {"name": "appsec_vm_write", + "display_name": "Vulnerability Management Write", "description": "Update status + or assignee of vulnerabilities.", "created": "2023-06-12T16:36:20.819036+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "attributes": {"name": "reference_tables_write", "display_name": "Reference + Tables Write", "description": "Create or modify Reference Tables.", "created": + "2023-06-12T16:36:20.819036+00:00", "group_name": "Reference Tables", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "attributes": {"name": "rum_playlist_write", "display_name": "RUM Playlist + Write", "description": "Create, update, and delete RUM playlists. Add and + remove sessions from RUM playlists.", "created": "2023-07-07T16:26:50.792866+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", + "attributes": {"name": "observability_pipelines_delete", "display_name": "Observability + Pipelines Delete", "description": "Delete pipelines from your organization.", + "created": "2023-07-13T16:25:44.923503+00:00", "group_name": "Observability + Pipelines", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "attributes": {"name": "observability_pipelines_deploy", + "display_name": "Observability Pipelines Deploy", "description": "Deploy pipelines + in your organization.", "created": "2023-07-13T16:25:44.923503+00:00", "group_name": + "Observability Pipelines", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "attributes": + {"name": "processes_generate_metrics", "display_name": "Processes Generate + Metrics", "description": "Create custom metrics from processes.", "created": + "2023-07-12T16:27:03.457484+00:00", "group_name": "Processes", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "attributes": {"name": "api_keys_delete", "display_name": "API Keys Delete", + "description": "Delete API Keys for your organization.", "created": "2023-07-12T16:27:03.457484+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "attributes": {"name": "agent_flare_collection", "display_name": "Agent Flare + Collection", "description": "Collect an Agent flare with Fleet Automation.", + "created": "2023-07-13T16:25:44.923503+00:00", "group_name": "Fleet Automation", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005", "attributes": {"name": "org_connections_write", + "display_name": "Org Connections Write", "description": "Control which organizations + can query your organization''s data.", "created": "2023-07-20T16:25:38.185785+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005", + "attributes": {"name": "org_connections_read", "display_name": "Org Connections + Read", "description": "View which organizations can query data from your organization. + Query data from other organizations.", "created": "2023-07-20T16:25:38.185785+00:00", + "group_name": "Access Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "attributes": + {"name": "facets_write", "display_name": "Facets Write", "description": "Manage + facets for products other than Log Management, such as APM Traces. To modify + Log Facets, use Logs Write Facets.", "created": "2023-07-27T16:26:26.546986+00:00", + "group_name": "Cross-Product Features", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", + "attributes": {"name": "security_monitoring_suppressions_read", "display_name": + "Security Suppressions Read", "description": "Read Rule Suppressions.", "created": + "2023-08-17T16:25:26.209216+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "attributes": {"name": "security_monitoring_suppressions_write", + "display_name": "Security Suppressions Write", "description": "Write Rule + Suppressions.", "created": "2023-08-17T16:25:26.209216+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "attributes": + {"name": "static_analysis_settings_write", "display_name": "Static Analysis + Settings Write", "description": "Edit Static Analysis settings.", "created": + "2023-08-18T16:25:56.688500+00:00", "group_name": "Software Delivery", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005", + "attributes": {"name": "cd_visibility_read", "display_name": "CD Visibility + Read", "description": "View CD Visibility.", "created": "2023-09-08T23:01:01.285130+00:00", + "group_name": "Software Delivery", "display_type": "read", "restricted": true}}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "attributes": + {"name": "ndm_netflow_port_mappings_write", "display_name": "NDM Netflow Port + Mappings Write", "description": "Write NDM Netflow port mappings.", "created": + "2023-10-12T16:26:03.661255+00:00", "group_name": "Network Device Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "2de35000-69e5-11ee-996b-da7ad0900005", "attributes": {"name": "appsec_vm_read", + "display_name": "Vulnerability Management Read", "description": "View infrastructure, + application code and library vulnerabilities. This does not restrict access + to the vulnerability data source through the API or inventory SQL.", "created": + "2023-10-13T16:25:53.335225+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": true}}, {"type": "permissions", "id": + "54f38ef0-6f65-11ee-a094-da7ad0900005", "attributes": {"name": "debugger_capture_variables", + "display_name": "Dynamic Instrumentation Capture Variables", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "created": "2023-10-20T16:25:50.268064+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "f2cc9374-9841-11ee-a301-da7ad0900005", + "attributes": {"name": "error_tracking_settings_write", "display_name": "Error + Tracking Settings Write", "description": "Disable Error Tracking, edit inclusion + filters, and edit rate limit.", "created": "2023-12-11T16:25:50.880331+00:00", + "group_name": "Error Tracking", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "attributes": + {"name": "error_tracking_exclusion_filters_write", "display_name": "Error + Tracking Exclusion Filters Write", "description": "Add or change Error Tracking + exclusion filters.", "created": "2023-12-11T16:25:50.880331+00:00", "group_name": + "Error Tracking", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "attributes": + {"name": "integrations_read", "display_name": "Integrations Read", "description": + "View integrations and their configurations.", "created": "2024-01-23T16:26:45.209142+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "attributes": + {"name": "apm_api_catalog_write", "display_name": "API Catalog Write", "description": + "Add, modify, and delete API catalog definitions.", "created": "2024-02-02T16:25:57.659403+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "attributes": + {"name": "apm_api_catalog_read", "display_name": "API Catalog Read", "description": + "View API catalog and API definitions.", "created": "2024-02-02T16:25:57.659403+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "11280c24-cce8-11ee-af00-da7ad0900005", "attributes": + {"name": "containers_generate_image_metrics", "display_name": "Containers + Write Image Trend Metrics", "description": "Create or edit trend metrics from + container images.", "created": "2024-02-16T16:25:58.736360+00:00", "group_name": + "Containers", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "attributes": {"name": "rum_extend_retention", + "display_name": "RUM Session Replay Extend Retention", "description": "Extend + the retention of Session Replays.", "created": "2024-03-14T16:26:30.797793+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005", + "attributes": {"name": "on_prem_runner_read", "display_name": "Private Action + Runner Read", "description": "View and search Private Action Runners for Workflow + Automation and App Builder.", "created": "2024-03-18T16:26:33.583707+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", + "attributes": {"name": "on_prem_runner_use", "display_name": "Private Action + Runner Contribute", "description": "Attach a Private Action Runner to a connection.", + "created": "2024-03-18T16:26:33.583707+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "attributes": + {"name": "on_prem_runner_write", "display_name": "Private Action Runner Write", + "description": "Create and edit Private Action Runners for Workflow Automation + and App Builder.", "created": "2024-03-18T16:26:33.583707+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", + "attributes": {"name": "dora_settings_write", "display_name": "DORA Settings + Write", "description": "Edit the settings for DORA.", "created": "2024-04-08T16:25:58.692075+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", + "attributes": {"name": "agent_upgrade_write", "display_name": "Agent Upgrade", + "description": "Upgrade Datadog Agents with Fleet Automation.", "created": + "2024-04-22T16:25:53.208974+00:00", "group_name": "Fleet Automation", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", + "attributes": {"name": "continuous_profiler_pgo_read", "display_name": "Read + Continuous Profiler Profile-Guided Optimization (PGO) Data", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "created": "2024-04-23T16:30:30.492439+00:00", "group_name": "APM", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005", + "attributes": {"name": "oci_configurations_manage", "display_name": "OCI Configurations + Manage", "description": "Add or remove but not edit Oracle Cloud integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "attributes": {"name": "aws_configuration_read", + "display_name": "AWS Configuration Read", "description": "View but not add, + remove, or edit AWS integration configurations.", "created": "2024-04-23T16:30:30.492439+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "ccd09204-018e-11ef-afb6-da7ad0900005", "attributes": + {"name": "azure_configuration_read", "display_name": "Azure Configuration + Read", "description": "View but not add, remove, or edit Azure integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "attributes": {"name": "gcp_configuration_read", + "display_name": "GCP Configuration Read", "description": "View but not add, + remove, or edit GCP integration configurations.", "created": "2024-04-23T16:30:30.492439+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005", "attributes": + {"name": "oci_configuration_read", "display_name": "OCI Configuration Read", + "description": "View but not add, remove, or edit Oracle Cloud integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "attributes": {"name": "aws_configuration_edit", + "display_name": "AWS Configuration Edit", "description": "Edit but not add + or remove AWS integration configurations.", "created": "2024-05-02T16:26:19.141095+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "attributes": + {"name": "azure_configuration_edit", "display_name": "Azure Configuration + Edit", "description": "Edit but not add or remove Azure integration configurations.", + "created": "2024-05-02T16:26:19.141095+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005", "attributes": {"name": "gcp_configuration_edit", + "display_name": "GCP Configuration Edit", "description": "Edit but not add + or remove GCP integration configurations.", "created": "2024-05-02T16:26:19.141095+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "attributes": + {"name": "oci_configuration_edit", "display_name": "OCI Configuration Edit", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "created": "2024-05-02T16:26:19.141095+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "attributes": {"name": "llm_observability_read", + "display_name": "LLM Observability Read", "description": "View LLM Observability.", + "created": "2024-05-03T16:26:22.500447+00:00", "group_name": "LLM Observability", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ef950332-13a0-11ef-b582-da7ad0900005", "attributes": {"name": "flex_logs_config_write", + "display_name": "Flex Logs Configuration Write", "description": "Manage your + organization''s flex logs configuration.", "created": "2024-05-16T16:25:40.697830+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "21c5475c-228f-11ef-a00d-da7ad0900005", "attributes": + {"name": "reference_tables_read", "display_name": "Reference Tables Read", + "description": "View Reference Tables.", "created": "2024-06-04T16:26:01.400743+00:00", + "group_name": "Reference Tables", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "75066402-3890-11ef-bbb1-da7ad0900005", "attributes": + {"name": "fleet_policies_write", "display_name": "Agent Configuration Management", + "description": "Create and deploy Agent configurations.", "created": "2024-07-02T16:30:56.156267+00:00", + "group_name": "Fleet Automation", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005", "attributes": + {"name": "orchestration_custom_resource_definitions_write", "display_name": + "Custom Resource Definition Write", "description": "Enable, disable and update + custom resource indexing.", "created": "2024-07-02T16:30:56.156267+00:00", + "group_name": "Orchestration", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005", "attributes": + {"name": "code_analysis_read", "display_name": "Code Analysis Read", "description": + "View Code Analysis.", "created": "2024-08-06T16:26:25.858118+00:00", "group_name": + "Software Delivery", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005", "attributes": + {"name": "orchestration_workload_scaling_write", "display_name": "Workload + Scaling Write", "description": "Enable, disable, and configure workload autoscaling. + Apply workload scaling recommendations.", "created": "2024-08-06T16:26:25.858118+00:00", + "group_name": "Orchestration", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "06e3004e-5987-11ef-89c3-da7ad0900005", "attributes": + {"name": "llm_observability_write", "display_name": "LLM Observability Write", + "description": "Create, Update, and Delete LLM Observability resources including + User Defined Evaluations, OOTB Evaluations, and User Defined Topics.", "created": + "2024-08-13T15:16:34.275999+00:00", "group_name": "LLM Observability", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "attributes": {"name": "observability_pipelines_capture_read", "display_name": + "Observability Pipelines Live Capture Read", "description": "View captured + events of pipelines in your organization.", "created": "2024-08-27T16:50:39.669348+00:00", + "group_name": "Observability Pipelines", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005", + "attributes": {"name": "observability_pipelines_capture_write", "display_name": + "Observability Pipelines Live Capture Write", "description": "Capture live + events of pipelines in your organization.", "created": "2024-08-27T16:50:39.669348+00:00", + "group_name": "Observability Pipelines", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", + "attributes": {"name": "apps_datastore_read", "display_name": "Actions Datastore + Read", "description": "Allows read access to the data within the Actions Datastore.", + "created": "2024-08-22T16:25:15.890147+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "attributes": + {"name": "apps_datastore_write", "display_name": "Actions Datastore Write", + "description": "Allows modification of data within the Actions Datastore, + including adding, editing, and deleting records.", "created": "2024-08-22T16:25:15.890147+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", + "attributes": {"name": "apps_datastore_manage", "display_name": "Actions Datastore + Manage", "description": "Allows management of the Actions Datastore, including + creating, updating, and deleting the datastore itself.", "created": "2024-08-22T16:25:15.890147+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "attributes": {"name": "security_pipelines_read", "display_name": "Security + Pipelines Read", "description": "View Security Pipelines.", "created": "2024-08-30T16:25:36.779590+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "attributes": {"name": "security_pipelines_write", "display_name": "Security + Pipelines Write", "description": "Create, edit, and delete Security Pipelines.", + "created": "2024-08-30T16:25:36.779590+00:00", "group_name": "Cloud Security + Platform", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "8e9b2142-7511-11ef-b225-da7ad0900005", "attributes": {"name": "connection_groups_write", + "display_name": "Connection Groups Write", "description": "Create, delete + and update connection groups.", "created": "2024-09-17T16:26:13.918826+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "attributes": {"name": "quality_gates_evaluations_read", "display_name": "Quality + Gates Evaluations", "description": "Allow quality gates evaluations.", "created": + "2024-09-23T18:00:21.053557+00:00", "group_name": "Software Delivery", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "attributes": {"name": "connection_groups_read", "display_name": "Connection + Groups Read", "description": "Read and use connection groups.", "created": + "2024-09-26T14:35:22.139553+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "83fc9760-7c51-11ef-b846-da7ad0900005", "attributes": {"name": "security_monitoring_cws_agent_rules_actions", + "display_name": "Cloud Workload Security Agent Actions", "description": "Managing + actions on Cloud Workload Security Agent Rules.", "created": "2024-09-26T21:51:42.032795+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005", + "attributes": {"name": "rum_retention_filters_read", "display_name": "RUM + Retention Filters Read", "description": "View RUM Retention filters data.", + "created": "2024-10-02T23:15:17.740884+00:00", "group_name": "Real User Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "300f81cc-8114-11ef-84c0-da7ad0900005", "attributes": {"name": "rum_retention_filters_write", + "display_name": "RUM Retention Filters Write", "description": "Write RUM Retention + filters.", "created": "2024-10-02T23:15:17.740884+00:00", "group_name": "Real + User Monitoring", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005", "attributes": + {"name": "ddsql_editor_read", "display_name": "DDSQL Editor Read", "description": + "View and use DDSQL Editor.", "created": "2024-10-14T13:30:22.950954+00:00", + "group_name": "DDSQL Editor", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "attributes": + {"name": "disaster_recovery_status_read", "display_name": "Datadog Disaster + Recovery Read", "description": "View the disaster recovery status.", "created": + "2024-11-01T21:30:23.309658+00:00", "group_name": "Disaster Recovery", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "attributes": {"name": "disaster_recovery_status_write", "display_name": "Datadog + Disaster Recovery Write", "description": "Update the disaster recovery status.", + "created": "2024-11-01T21:30:23.309658+00:00", "group_name": "Disaster Recovery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "71949074-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "rum_settings_write", + "display_name": "RUM Settings Write", "description": "Write RUM Settings.", + "created": "2024-11-07T13:30:24.249160+00:00", "group_name": "Real User Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "71957e76-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "test_optimization_read", + "display_name": "Test Optimization Read", "description": "View Test Optimization.", + "created": "2024-11-07T13:30:24.249160+00:00", "group_name": "Software Delivery", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "71958024-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "test_optimization_write", + "display_name": "Test Optimization Write", "description": "Manage flaky tests + for Test Optimization.", "created": "2024-11-07T13:30:24.249160+00:00", "group_name": + "Software Delivery", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "attributes": + {"name": "test_optimization_settings_write", "display_name": "Test Optimization + Settings Write", "description": "Create, delete and update Test Optimization + settings.", "created": "2024-11-19T19:06:07.652237+00:00", "group_name": "Software + Delivery", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "attributes": {"name": "security_comments_write", + "display_name": "Security Comments Write", "description": "Write comments + into vulnerabilities.", "created": "2024-11-22T18:40:23.844837+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005", "attributes": + {"name": "security_comments_read", "display_name": "Security Comments Read", + "description": "Read comments of vulnerabilities.", "created": "2024-11-22T18:40:23.844837+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "attributes": {"name": "dashboards_invite_share", "display_name": "Shared + Dashboards Invite-only Write", "description": "Create, modify and delete shared + dashboards with share type ''Invite-only''. These dashboards can only be accessed + by user-specified email addresses.", "created": "2024-12-10T19:11:49.480076+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "attributes": + {"name": "dashboards_embed_share", "display_name": "Shared Dashboards Embed + Write", "description": "Create, modify and delete shared dashboards with share + type ''Embed''. These dashboards can be embedded on user-specified domains.", + "created": "2024-12-10T19:11:49.480076+00:00", "group_name": "Dashboards", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "attributes": {"name": "embeddable_graphs_share", + "display_name": "Shared Graphs Write", "description": "Generate public links + to share embeddable graphs externally.", "created": "2024-12-10T19:11:49.480076+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "attributes": + {"name": "logs_read_workspaces", "display_name": "Read Logs Workspaces", "description": + "View Logs Workspaces.", "created": "2024-12-11T19:21:44.137884+00:00", "group_name": + "Log Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "attributes": + {"name": "logs_write_workspaces", "display_name": "Write Logs Workspaces", + "description": "Create, update, and delete Logs Workspaces.", "created": "2024-12-11T19:21:44.137884+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "attributes": + {"name": "audience_management_read", "display_name": "Profiles Read", "description": + "View Audience Management data.", "created": "2025-01-07T18:36:31.392090+00:00", + "group_name": "Product Analytics", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "attributes": + {"name": "audience_management_write", "display_name": "Profiles Write", "description": + "Modify Audience Management data.", "created": "2025-01-07T18:36:31.392090+00:00", + "group_name": "Product Analytics", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005", + "attributes": {"name": "logs_read_config", "display_name": "Logs Configuration + Read", "description": "Read logs configuration.", "created": "2025-01-14T18:56:50.868001+00:00", + "group_name": "Log Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9b00426a-da87-11ef-9de6-da7ad0900005", "attributes": + {"name": "on_call_read", "display_name": "On-Call Read", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "created": + "2025-01-24T19:15:42.768282+00:00", "group_name": "On-Call", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "9b00ed28-da87-11ef-9de6-da7ad0900005", + "attributes": {"name": "on_call_write", "display_name": "On-Call Write", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "created": "2025-01-24T19:15:42.768282+00:00", "group_name": "On-Call", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "attributes": {"name": "on_call_page", "display_name": "On-Call Page", "description": + "Page On-Call teams and users.", "created": "2025-01-24T19:15:42.768282+00:00", + "group_name": "On-Call", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005", "attributes": + {"name": "error_tracking_read", "display_name": "Error Tracking Read", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "created": "2025-01-30T18:51:27.197297+00:00", "group_name": "Error Tracking", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "attributes": {"name": "on_call_respond", + "display_name": "On-Call Responder", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "created": "2025-02-03T23:42:07.592356+00:00", "group_name": "On-Call", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "attributes": {"name": "process_tags_read", "display_name": "Process Tags + Read", "description": "View Process Tag Rules.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Processes", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "attributes": + {"name": "process_tags_write", "display_name": "Process Tags Write", "description": + "Create, edit and delete Process Tag Rules.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Processes", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "attributes": + {"name": "network_connections_read", "display_name": "Network Connections + Read", "description": "Read Cloud Network Connections.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Cloud Network Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "attributes": {"name": "serverless_aws_instrumentation_read", "display_name": + "Serverless AWS Instrumentation Read", "description": "View remote instrumentation + configuration for serverless workloads.", "created": "2025-02-11T20:36:29.786935+00:00", + "group_name": "Serverless", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "attributes": + {"name": "serverless_aws_instrumentation_write", "display_name": "Serverless + AWS Instrumentation Write", "description": "Add, update, and remove remote + instrumentation configuration for serverless workloads.", "created": "2025-02-11T20:36:29.786935+00:00", + "group_name": "Serverless", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "attributes": + {"name": "coterm_write", "display_name": "CoTerm Write", "description": "Write + terminal recordings.", "created": "2025-02-28T19:06:40.038336+00:00", "group_name": + "CoTerm", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "attributes": {"name": "coterm_read", + "display_name": "CoTerm Read", "description": "Read terminal recordings.", + "created": "2025-02-28T19:06:40.038336+00:00", "group_name": "CoTerm", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "attributes": {"name": "data_streams_monitoring_capture_messages", "display_name": + "Data Streams Monitoring Capture Messages", "description": "Capture messages + from Kafka topics in the Data Streams Monitoring product.", "created": "2025-03-06T18:51:28.120564+00:00", + "group_name": "Data Streams Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "db45b75e-0360-11f0-8ac3-da7ad0900005", + "attributes": {"name": "cloudcraft_read", "display_name": "Cloudcraft Read", + "description": "View infrastructure diagrams in the Cloudcraft product.", + "created": "2025-03-17T18:51:37.899118+00:00", "group_name": "Infrastructure", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "9bb09240-0fee-11f0-958c-da7ad0900005", "attributes": {"name": "ndm_device_profiles_view", + "display_name": "NDM Device Profiles View", "description": "View NDM device + profiles.", "created": "2025-04-02T18:16:33.714415+00:00", "group_name": "Network + Device Monitoring", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "9bb09a10-0fee-11f0-958c-da7ad0900005", "attributes": + {"name": "ndm_device_profiles_edit", "display_name": "NDM Device Profiles + Edit", "description": "Edit NDM device profiles.", "created": "2025-04-02T18:16:33.714415+00:00", + "group_name": "Network Device Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "ndm_devices_read", "display_name": "NDM Read", "description": + "Read NDM data directly. Note: even without this permission, NDM data can + be retrieved via general infrastructure query APIs.", "created": "2025-04-24T21:30:24.005670+00:00", + "group_name": "Network Device Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "ndm_device_tags_write", "display_name": "NDM Device + Tags Write", "description": "Write NDM device tags.", "created": "2025-04-24T21:30:24.005670+00:00", + "group_name": "Network Device Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "orchestration_workload_scaling_read", "display_name": + "Workload Scaling Read", "description": "View workload autoscaling objects + and recommendations.", "created": "2025-04-24T21:30:24.005670+00:00", "group_name": + "Orchestration", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "attributes": {"name": "bits_investigations_read", + "display_name": "Bits Investigations Read", "description": "Read Bits investigations.", + "created": "2025-04-29T18:51:50.984055+00:00", "group_name": "Bits AI", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "attributes": {"name": "sheets_read", "display_name": "Sheets Read", "description": + "View Sheets.", "created": "2025-04-30T23:15:19.683852+00:00", "group_name": + "Sheets", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "fbf841c6-2618-11f0-8595-da7ad0900005", "attributes": {"name": "sheets_write", + "display_name": "Sheets Write", "description": "Create and change Sheets.", + "created": "2025-04-30T23:15:19.683852+00:00", "group_name": "Sheets", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", + "attributes": {"name": "orchestration_autoscaling_manage", "display_name": + "Autoscaling Manage", "description": "Manage autoscaling cluster level configuration.", + "created": "2025-05-19T18:00:40.454044+00:00", "group_name": "Orchestration", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "12465c5e-3a5c-11f0-becd-da7ad0900005", "attributes": {"name": "code_coverage_read", + "display_name": "Code Coverage read", "description": "View Code Coverage data.", + "created": "2025-05-26T18:05:56.647000+00:00", "group_name": "Software Delivery", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "attributes": {"name": "cases_shared_settings_write", + "display_name": "Case Management Shared Settings Write", "description": "Configure + shared settings for Case Management.", "created": "2025-06-17T18:22:00.814348+00:00", + "group_name": "Case and Incident Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", + "attributes": {"name": "actions_interface_run", "display_name": "Actions Interface + Run", "description": "Execute actions in the Bits AI Action Interface.", "created": + "2025-07-01T14:36:49.982499+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", "attributes": {"name": "ai_guard_evaluate", + "display_name": "AI Guard Evaluate", "description": "Evaluate AI Guard rules.", + "created": "2025-07-09T18:30:33.053855+00:00", "group_name": "Application + Security", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "attributes": {"name": "generate_ccm_report_schedules", + "display_name": "Cloud Cost Report Schedules Write", "description": "View + all report schedules and manage only the ones they''ve created.", "created": + "2025-07-10T18:40:35.388063+00:00", "group_name": "Cloud Cost Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "attributes": {"name": "manage_ccm_report_schedules", + "display_name": "Cloud Cost Report Schedules Manage", "description": "View, + create, and fully manage all report schedules across the organization.", "created": + "2025-07-10T18:40:35.388063+00:00", "group_name": "Cloud Cost Management", + "display_type": "write", "restricted": false}}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005", + "attributes": {"name": "Datadog Read Only Role", "managed": true, "created_at": + "2024-10-08T14:32:47.265744+00:00", "modified_at": "2024-10-08T14:32:47.266206+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": + "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", + "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": + "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", + "id": "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": + "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": + "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f33f74be-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": + "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", + "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": + "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", + "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", "id": + "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": + "permissions", "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", + "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", "id": + "3c002814-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", + "id": "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": + "35e4e288-df3b-11ef-886f-da7ad0900005"}, {"type": "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005"}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": + "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", + "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", "id": + "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", + "id": "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": + "12465c5e-3a5c-11f0-becd-da7ad0900005"}]}}}, {"type": "roles", "id": "693fe720-9569-11ef-969d-da7ad0900005", + "attributes": {"name": "Copy of Datadog Admin Role", "managed": false, "created_at": + "2024-10-28T20:15:44.156681+00:00", "modified_at": "2024-10-28T20:15:44.167199+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e"}, {"type": + "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": "permissions", + "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", "id": + "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": + "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": "permissions", + "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", "id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d"}, + {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19"}, {"type": + "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, {"type": "permissions", + "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": "permissions", "id": + "04668d0a-ec5c-11ea-9483-37d199df4587"}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, + {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc"}, {"type": + "permissions", "id": "04668f62-ec5c-11ea-9483-0fe541ab993f"}, {"type": "permissions", + "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02"}, {"type": "permissions", "id": + "046690de-ec5c-11ea-9483-bbcd905fcdca"}, {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf"}, + {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": + "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", + "id": "8b753262-f925-11ea-82fc-93f07fd96e76"}, {"type": "permissions", "id": + "9311970e-f925-11ea-ab4d-1760e76381c1"}, {"type": "permissions", "id": "998aabac-f925-11ea-b43d-8f1f42f3894e"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "72bc07d8-1472-11eb-a97b-8bff514d7382"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e"}, {"type": + "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": "permissions", + "id": "c8654332-2dce-11eb-9145-d33d26eeb65f"}, {"type": "permissions", "id": + "d23cc894-2dce-11eb-9145-37bf7b2dadc2"}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a"}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", "id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, + {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005"}, {"type": + "permissions", "id": "b39fb79a-90af-11eb-9428-da7ad0900005"}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "993b34d6-b16d-11eb-a891-da7ad0900005"}, + {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, {"type": + "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": + "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "c948b30a-16c7-11ec-88cc-da7ad0900005"}, + {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", + "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": + "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005"}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": + "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005"}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "3ad32264-f311-11ec-a058-da7ad0900005"}, {"type": "permissions", + "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005"}, + {"type": "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", + "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": + "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005"}, + {"type": "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": + "8b254e6a-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005"}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": "81e488c0-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", "id": + "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, + {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, + {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, {"type": + "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": + "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", "id": "4316b75c-093f-11ee-98e9-da7ad0900005"}, + {"type": "permissions", "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": + "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", + "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, {"type": "permissions", "id": + "eadf64b2-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": "eadf675a-2199-11ee-9a0e-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005"}, {"type": "permissions", + "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": + "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", + "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": + "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", + "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}, {"type": "permissions", "id": + "f2cc9374-9841-11ee-a301-da7ad0900005"}, {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005"}, + {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, {"type": + "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": + "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005"}, + {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": + "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", + "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": + "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd09204-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", + "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": + "permissions", "id": "ef950332-13a0-11ef-b582-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75066402-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005"}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", + "id": "06e3004e-5987-11ef-89c3-da7ad0900005"}, {"type": "permissions", "id": + "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", + "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005"}, + {"type": "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": + "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", + "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": + "83fc9760-7c51-11ef-b846-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "80ae7688-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": "71949074-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": + "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", + "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": "permissions", "id": + "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005"}, + {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", + "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", + "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", "id": + "35e4e288-df3b-11ef-886f-da7ad0900005"}]}}}, {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005", + "attributes": {"name": "Datadog Standard Role", "managed": true, "created_at": + "2024-10-08T14:32:47.215056+00:00", "modified_at": "2024-10-08T14:32:47.215828+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": + "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", + "id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, + {"type": "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": + "permissions", "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", + "id": "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": + "5de1e178-8536-11ea-968a-2fd9395bff90"}, {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, + {"type": "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": + "permissions", "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", + "id": "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": + "93654d1c-e706-11ea-9a85-d320ff02824d"}, {"type": "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, + {"type": "permissions", "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": + "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, {"type": "permissions", + "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": "permissions", "id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", "id": "9311970e-f925-11ea-ab4d-1760e76381c1"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": + "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", + "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, + {"type": "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "f07e4234-e894-11eb-ab79-da7ad0900005"}, {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": + "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": + "c948b30a-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, + {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": + "permissions", "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "cf873174-574f-11ec-9869-da7ad0900005"}, {"type": "permissions", "id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, + {"type": "permissions", "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": + "permissions", "id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", + "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": "permissions", "id": + "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": + "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", + "id": "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": + "permissions", "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, + {"type": "permissions", "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": + "permissions", "id": "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", + "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": "permissions", "id": + "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": + "81e488c0-db35-11ed-a170-da7ad0900005"}, {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": + "permissions", "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": + "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, + {"type": "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": + "permissions", "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", + "id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, + {"type": "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": + "permissions", "id": "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", + "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", "id": + "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", + "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": + "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, + {"type": "permissions", "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": + "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", + "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": "permissions", "id": + "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, + {"type": "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": + "permissions", "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": + "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, + {"type": "permissions", "id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": + "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09204-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, {"type": + "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75072806-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, + {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": + "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", + "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, + {"type": "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": + "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": "permissions", + "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", "id": + "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": + "permissions", "id": "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", + "id": "3c002814-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": + "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, + {"type": "permissions", "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", + "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": + "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, + {"type": "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": + "permissions", "id": "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", + "id": "9b00ed28-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": + "9b010d44-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005"}, + {"type": "permissions", "id": "7ad4419a-e288-11ef-bbbc-da7ad0900005"}, {"type": + "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", + "id": "4a6cadb6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": + "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, + {"type": "permissions", "id": "23f76dc4-f607-11ef-99cf-da7ad0900005"}, {"type": + "permissions", "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", + "id": "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", "id": + "9bb09240-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", "id": + "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": "fbf841c6-2618-11f0-8595-da7ad0900005"}, + {"type": "permissions", "id": "12465c5e-3a5c-11f0-becd-da7ad0900005"}, {"type": + "permissions", "id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005"}, {"type": "permissions", + "id": "d2c0335e-5688-11f0-ad5e-da7ad0900005"}, {"type": "permissions", "id": + "cc7517b0-5cf2-11f0-85d4-da7ad0900005"}, {"type": "permissions", "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005"}]}}}], + "meta": {"page": {"total_count": 8, "total_filtered_count": 8, "max_page_size": + 1000}}}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/roles?page%5Bnumber%5D=0&page%5Bsize%5D=100 + response: + body: + string: '{"data": [{"id": "693fe720-9569-11ef-969d-da7ad0900005", "type": "roles", + "attributes": {"created_at": "2024-10-28T20:15:44.156681Z", "created_by_handle": + "michael.richey@datadoghq.com", "modified_at": "2024-10-28T20:15:44.167199Z", + "modified_by_handle": "michael.richey@datadoghq.com", "name": "Copy of Datadog + Admin Role", "team_count": 0, "user_count": 2}, "relationships": {"permissions": + {"data": [{"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": "permissions"}, + {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": + "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", + "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions"}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": "permissions"}, + {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "type": "permissions"}, {"id": + "046690de-ec5c-11ea-9483-bbcd905fcdca", "type": "permissions"}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions"}, {"id": + "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions"}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions"}, {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": + "permissions"}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": + "c8654332-2dce-11eb-9145-d33d26eeb65f", "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", + "type": "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, + {"id": "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": + "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": "permissions"}, + {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": "permissions"}, {"id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "type": "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", + "type": "permissions"}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": + "permissions"}, {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, + {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions"}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions"}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, + {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": + "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions"}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": + "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions"}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": + "permissions"}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, + {"id": "f42ef088-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", + "type": "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": + "permissions"}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, + {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions"}, {"id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", + "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", "type": + "permissions"}, {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, + {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": "permissions"}, {"id": + "f40ff7be-966b-11ec-8253-da7ad0900005", "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions"}, + {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", + "type": "permissions"}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions"}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "type": "permissions"}, + {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": + "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", + "type": "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": "permissions"}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152", "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": + "permissions"}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, + {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005", "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions"}, {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": + "permissions"}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, + {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions"}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": + "permissions"}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, + {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": + "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", + "type": "permissions"}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions"}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, + {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions"}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions"}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, + {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", "type": "permissions"}, {"id": + "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": + "permissions"}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions"}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "ef44613e-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": + "permissions"}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", "type": "permissions"}, {"id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions"}, {"id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions"}, + {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": "permissions"}, {"id": + "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions"}, {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": + "permissions"}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, + {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": + "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": + "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, + {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", + "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": "permissions"}, + {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, {"id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions"}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005", "type": "permissions"}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", + "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, + {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": + "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": "permissions"}, + {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": + "c04a7614-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "type": "permissions"}, + {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", "type": "permissions"}, {"id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions"}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", + "type": "permissions"}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "type": + "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": + "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", + "type": "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": + "permissions"}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": "permissions"}, + {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, {"id": + "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions"}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, + {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": + "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions"}, {"id": "83fc9760-7c51-11ef-b846-da7ad0900005", "type": + "permissions"}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, + {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions"}, {"id": + "76e47222-8a30-11ef-8675-da7ad0900005", "type": "permissions"}, {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": + "permissions"}, {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions"}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", "type": "permissions"}, {"id": + "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", + "type": "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": + "permissions"}, {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": "permissions"}, {"id": + "7d962a3c-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", + "type": "permissions"}, {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": + "permissions"}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": + "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", + "type": "permissions"}, {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": + "permissions"}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "7d9641ac-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": + "permissions"}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": + "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions"}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions"}]}}}, {"id": "3020f50c-8582-11ef-ad61-da7ad0900005", "type": + "roles", "attributes": {"created_at": "2024-10-08T14:32:47.147289Z", "managed": + true, "modified_at": "2024-10-08T14:32:47.147932Z", "name": "Datadog Admin + Role", "team_count": 0, "user_count": 7}, "relationships": {"permissions": + {"data": [{"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": "permissions"}, + {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": + "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", + "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions"}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": "permissions"}, + {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "type": "permissions"}, {"id": + "046690de-ec5c-11ea-9483-bbcd905fcdca", "type": "permissions"}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions"}, {"id": + "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions"}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions"}, {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": + "permissions"}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": + "c8654332-2dce-11eb-9145-d33d26eeb65f", "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", + "type": "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, + {"id": "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": + "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": "permissions"}, + {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": "permissions"}, {"id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "type": "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", + "type": "permissions"}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": + "permissions"}, {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, + {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions"}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions"}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, + {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": + "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions"}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": + "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions"}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": + "permissions"}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, + {"id": "f42ef088-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", + "type": "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": + "permissions"}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, + {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions"}, {"id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", + "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", "type": + "permissions"}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, {"id": + "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": "permissions"}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions"}, {"id": + "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": + "permissions"}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": "permissions"}, + {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "type": "permissions"}, {"id": + "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", + "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions"}, + {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": "permissions"}, {"id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": "permissions"}, + {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, {"id": + "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", "type": + "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, {"id": + "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", + "type": "permissions"}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", "type": + "permissions"}, {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions"}, + {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, {"id": + "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", "type": + "permissions"}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, + {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": + "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", + "type": "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions"}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, + {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "type": + "permissions"}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, + {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": + "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", "type": "permissions"}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", + "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": "permissions"}, + {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions"}, {"id": + "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": + "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions"}, {"id": + "80ae7688-9898-11ef-8b23-da7ad0900005", "type": "permissions"}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", + "type": "permissions"}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "75066402-3890-11ef-bbb1-da7ad0900005", "type": "permissions"}, {"id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", + "type": "permissions"}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions"}, {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, + {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, {"id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions"}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions"}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions"}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions"}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, + {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions"}, {"id": + "cf873174-574f-11ec-9869-da7ad0900005", "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", + "type": "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": + "permissions"}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", "type": + "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": "permissions"}, + {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions"}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": + "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions"}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": "permissions"}, {"id": + "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions"}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "type": "permissions"}, {"id": + "48d8ce74-0065-11ee-9c16-da7ad0900005", "type": "permissions"}, {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", + "type": "permissions"}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": + "permissions"}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "type": "permissions"}, + {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, {"id": + "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", + "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": + "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions"}, + {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": "permissions"}, {"id": + "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", + "type": "permissions"}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, + {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, {"id": + "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": + "permissions"}, {"id": "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions"}, + {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": + "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": + "permissions"}, {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, + {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", + "type": "permissions"}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "ccd09f06-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": + "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions"}, {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": "permissions"}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": + "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", + "type": "permissions"}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", "type": + "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, + {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, {"id": + "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, + {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, {"id": + "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", + "type": "permissions"}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "7d9641ac-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": + "permissions"}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, {"id": + "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions"}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions"}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, + {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, {"id": + "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": "permissions"}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions"}, {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions"}, + {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, {"id": + "02e65e42-fabc-11ef-a653-da7ad0900005", "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions"}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions"}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions"}, + {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": + "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions"}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", "type": + "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions"}, + {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", "type": "permissions"}, {"id": + "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions"}]}}}, {"id": + "3032ffb8-8582-11ef-8bad-da7ad0900005", "type": "roles", "attributes": {"created_at": + "2024-10-08T14:32:47.265744Z", "managed": true, "modified_at": "2024-10-08T14:32:47.266206Z", + "name": "Datadog Read Only Role", "team_count": 0, "user_count": 2}, "relationships": + {"permissions": {"data": [{"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": "permissions"}, + {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions"}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", + "type": "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": "permissions"}, + {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, {"id": + "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": "permissions"}, + {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": "permissions"}, {"id": + "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", + "type": "permissions"}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": + "permissions"}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, + {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": "permissions"}, {"id": + "5de1e178-8536-11ea-968a-2fd9395bff90", "type": "permissions"}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": + "permissions"}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": + "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": + "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": "permissions"}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", + "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, + {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, + {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": "permissions"}, {"id": + "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": "permissions"}, {"id": + "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", + "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, + {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, {"id": + "54f98c32-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "type": "permissions"}]}}}, {"id": "302b4f34-8582-11ef-b6a4-da7ad0900005", + "type": "roles", "attributes": {"created_at": "2024-10-08T14:32:47.215056Z", + "managed": true, "modified_at": "2024-10-08T14:32:47.215828Z", "name": "Datadog + Standard Role", "team_count": 0, "user_count": 3}, "relationships": {"permissions": + {"data": [{"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, + {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": + "65eea998-f6a1-11ed-9953-da7ad0900005", "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions"}, {"id": + "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", + "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, + {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, {"id": + "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": "permissions"}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", + "type": "permissions"}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": + "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": "permissions"}, + {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, {"id": + "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", + "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": "permissions"}, {"id": + "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions"}, + {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions"}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions"}, {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, + {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": + "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", + "type": "permissions"}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions"}, {"id": + "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": "permissions"}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", + "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions"}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152", "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": + "permissions"}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, + {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005", "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "04668bde-ec5c-11ea-9483-fb6cb6586c6a", "type": "permissions"}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", + "type": "permissions"}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": + "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", "type": "permissions"}, + {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, {"id": + "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": + "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, + {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": + "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "type": "permissions"}, + {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": "permissions"}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions"}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "11280c24-cce8-11ee-af00-da7ad0900005", "type": "permissions"}, {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions"}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "type": + "permissions"}, {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions"}, + {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", "type": "permissions"}, {"id": + "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", + "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": + "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions"}, + {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": + "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", + "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": "permissions"}, + {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", "type": + "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": "permissions"}, + {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, {"id": + "e31cca10-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions"}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, + {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions"}, {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": + "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": + "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", + "type": "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": + "permissions"}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, + {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions"}, {"id": + "e31e6b54-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": + "permissions"}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, + {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": "permissions"}, {"id": + "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": + "permissions"}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": + "d039cfec-b44f-11ed-8db8-da7ad0900005", "type": "permissions"}, {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", + "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": + "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": "permissions"}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": + "permissions"}, {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, + {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": + "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, + {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions"}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", + "type": "permissions"}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions"}, {"id": + "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, {"id": + "9bb09240-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", + "type": "permissions"}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, + {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions"}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions"}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", + "type": "permissions"}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": + "permissions"}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, + {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": + "54f98c32-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "type": "permissions"}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", "type": + "permissions"}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions"}]}}}], + "meta": {"page": {"total_count": 4, "total_filtered_count": 4}}}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +version: 1 diff --git a/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_import.frozen b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_import.frozen new file mode 100644 index 000000000..2dd09b0de --- /dev/null +++ b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_import.frozen @@ -0,0 +1 @@ +2025-08-27T16:02:51.102965-04:00 \ No newline at end of file diff --git a/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_import.yaml b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_import.yaml new file mode 100644 index 000000000..2f33914bb --- /dev/null +++ b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_import.yaml @@ -0,0 +1,7106 @@ +interactions: +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/rum/applications + response: + body: + string: '{"data": [{"type": "rum_application", "attributes": {"is_active": true, + "org_id": 1000315894, "application_id": "16371816-ab2a-41aa-b12a-40ec4d9628e8", + "created_at": 1756321641996, "created_by_handle": "michael.richey@datadoghq.com", + "product_analytics_replay_sample_rate": 100, "updated_by_handle": "Datadog", + "updated_at": 1756321932553, "tags": [], "product_scales": {"product_analytics_retention_scale": + {"state": "NONE", "last_modified_at": 1756321641996}, "rum_event_processing_scale": + {"state": "ALL", "last_modified_at": 1756321641996}}, "type": "browser", "name": + "Test RUM Application", "remote_config_id": "0256b730-312e-419a-904f-2ab6d9836eba"}, + "id": "16371816-ab2a-41aa-b12a-40ec4d9628e8"}]}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/rum/applications/16371816-ab2a-41aa-b12a-40ec4d9628e8 + response: + body: + string: '{"data": {"type": "rum_application", "attributes": {"org_id": 1000315894, + "type": "browser", "updated_by_handle": "Datadog", "application_id": "16371816-ab2a-41aa-b12a-40ec4d9628e8", + "name": "Test RUM Application", "tags": [], "client_token": "pubcfef5fa71c23a0c961cc1f1f69db5a32", + "product_analytics_replay_sample_rate": 100, "hash": "pubcfef5fa71c23a0c961cc1f1f69db5a32", + "created_by_handle": "michael.richey@datadoghq.com", "updated_at": 1756321932553, + "is_active": true, "created_at": 1756321641996, "product_scales": {"rum_event_processing_scale": + {"last_modified_at": 1756321641996, "state": "ALL"}, "product_analytics_retention_scale": + {"last_modified_at": 1756321641996, "state": "NONE"}}, "remote_config_id": + "0256b730-312e-419a-904f-2ab6d9836eba"}, "id": "16371816-ab2a-41aa-b12a-40ec4d9628e8"}}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/users?page%5Bnumber%5D=0&page%5Bsize%5D=500 + response: + body: + string: '{"data": [{"type": "users", "id": "6b69113d-6f18-11f0-9ad5-1ad15dd71168", + "attributes": {"name": "Ida Adjivon", "handle": "ida.adjivon@datadoghq.com", + "created_at": "2025-08-01T20:45:12.043180+00:00", "modified_at": "2025-08-01T21:35:25.635446+00:00", + "email": "ida.adjivon@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/d3ff11e3ff125d30050f4dfff3fa614c?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "81f6f2c7-923f-11ef-879a-6ee0822e247c", "attributes": {"name": "Justine + Lo", "handle": "justine.lo@datadoghq.com", "created_at": "2024-10-24T19:38:13.281489+00:00", + "modified_at": "2024-10-25T14:18:33.835459+00:00", "email": "justine.lo@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/7d75964971289cf50e6090d76b45e3f6?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "b301b340-8582-11ef-ba31-3219ecc6cb25", "attributes": {"name": "Louis + Cheynel", "handle": "louis.cheynel@datadoghq.com", "created_at": "2024-10-08T14:36:26.725077+00:00", + "modified_at": "2025-02-19T21:12:46.164959+00:00", "email": "louis.cheynel@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/791d1a56daa2bd0f5bb25ed286d3f8bb?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": true, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Disabled", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "30533c3c-8582-11ef-938f-cecf6f9ed4ad", "attributes": {"name": "Michael + Richey", "handle": "michael.richey+ddreu1@datadoghq.com", "created_at": "2024-10-08T14:32:47.477901+00:00", + "modified_at": "2024-10-08T14:32:47.477901+00:00", "email": "michael.richey+ddreu1@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/b5b0452adbe01caf57c1e5f6fb97a631?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "693fe720-9569-11ef-969d-da7ad0900005"}, {"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, + "org": {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "98fe080d-8fda-11ef-aa03-c6ac9d6cb0b0", "attributes": + {"name": "Michael Richey", "handle": "michael.richey@datadoghq.com", "created_at": + "2024-10-21T18:30:50.420260+00:00", "modified_at": "2025-03-03T15:47:53.789029+00:00", + "email": "michael.richey@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/3ae7b2387f1a71bbb857d6f03993bdf3?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "b32e572e-8582-11ef-98fe-f2a776cd34b8", "attributes": {"name": "Ron + Hay", "handle": "ron.hay@datadoghq.com", "created_at": "2024-10-08T14:36:27.017641+00:00", + "modified_at": "2025-06-10T13:33:23.138895+00:00", "email": "ron.hay@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/1c9c2a5daac55fc5ae86178cd5e7b9c2?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "265f9002-9b9e-11ef-9152-56a58ecd5b70", "attributes": + {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com", "created_at": + "2024-11-05T17:48:22.271026+00:00", "modified_at": "2025-01-23T19:52:06.634848+00:00", + "email": "sherzod.karimov@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/993f2cc00ad75833dbc76f2a93bb227d?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "693fe720-9569-11ef-969d-da7ad0900005"}, {"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "b32f283f-8582-11ef-be6e-1e59aae1ca5b", "attributes": + {"name": "Tim Alexander", "handle": "tim.alexander@datadoghq.com", "created_at": + "2024-10-08T14:36:27.022996+00:00", "modified_at": "2024-10-08T15:29:54.659973+00:00", + "email": "tim.alexander@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/6269dae26686287d4bdd307a26e33f34?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}], + "included": [{"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005", + "attributes": {"name": "Datadog Admin Role", "managed": true, "created_at": + "2024-10-08T14:32:47.147289+00:00", "modified_at": "2024-10-08T14:32:47.147932+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e"}, {"type": + "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": "permissions", + "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", "id": + "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": + "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": "permissions", + "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", "id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d"}, + {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19"}, {"type": + "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, {"type": "permissions", + "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": "permissions", "id": + "04668d0a-ec5c-11ea-9483-37d199df4587"}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, + {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc"}, {"type": + "permissions", "id": "04668f62-ec5c-11ea-9483-0fe541ab993f"}, {"type": "permissions", + "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02"}, {"type": "permissions", "id": + "046690de-ec5c-11ea-9483-bbcd905fcdca"}, {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf"}, + {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": + "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", + "id": "8b753262-f925-11ea-82fc-93f07fd96e76"}, {"type": "permissions", "id": + "9311970e-f925-11ea-ab4d-1760e76381c1"}, {"type": "permissions", "id": "998aabac-f925-11ea-b43d-8f1f42f3894e"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "72bc07d8-1472-11eb-a97b-8bff514d7382"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e"}, {"type": + "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": "permissions", + "id": "c8654332-2dce-11eb-9145-d33d26eeb65f"}, {"type": "permissions", "id": + "d23cc894-2dce-11eb-9145-37bf7b2dadc2"}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a"}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", "id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, + {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005"}, {"type": + "permissions", "id": "b39fb79a-90af-11eb-9428-da7ad0900005"}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "993b34d6-b16d-11eb-a891-da7ad0900005"}, + {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, {"type": + "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": + "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "c948b30a-16c7-11ec-88cc-da7ad0900005"}, + {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", + "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": + "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005"}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": + "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005"}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "3ad32264-f311-11ec-a058-da7ad0900005"}, {"type": "permissions", + "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005"}, + {"type": "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", + "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": + "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005"}, + {"type": "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": + "8b254e6a-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005"}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": "81e488c0-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", "id": + "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, + {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, + {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, {"type": + "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": + "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", "id": "4316b75c-093f-11ee-98e9-da7ad0900005"}, + {"type": "permissions", "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": + "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", + "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, {"type": "permissions", "id": + "eadf64b2-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": "eadf675a-2199-11ee-9a0e-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005"}, {"type": "permissions", + "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": + "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", + "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": + "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", + "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}, {"type": "permissions", "id": + "f2cc9374-9841-11ee-a301-da7ad0900005"}, {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005"}, + {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, {"type": + "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": + "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005"}, + {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": + "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", + "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": + "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd09204-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", + "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": + "permissions", "id": "ef950332-13a0-11ef-b582-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75066402-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005"}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", + "id": "06e3004e-5987-11ef-89c3-da7ad0900005"}, {"type": "permissions", "id": + "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", + "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005"}, + {"type": "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": + "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", + "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": + "83fc9760-7c51-11ef-b846-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "80ae7688-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": "71949074-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": + "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", + "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": "permissions", "id": + "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005"}, + {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", + "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", + "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", "id": + "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": "9b00ed28-da87-11ef-9de6-da7ad0900005"}, + {"type": "permissions", "id": "9b010d44-da87-11ef-9de6-da7ad0900005"}, {"type": + "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005"}, {"type": "permissions", + "id": "7ad4419a-e288-11ef-bbbc-da7ad0900005"}, {"type": "permissions", "id": + "4a6c29d6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": "4a6cadb6-e806-11ef-8710-da7ad0900005"}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": + "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", + "id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", "id": + "23f76dc4-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, + {"type": "permissions", "id": "02e65e42-fabc-11ef-a653-da7ad0900005"}, {"type": + "permissions", "id": "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", + "id": "9bb09240-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": + "9bb09a10-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", "id": + "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": "fbf841c6-2618-11f0-8595-da7ad0900005"}, + {"type": "permissions", "id": "2cead6ec-34db-11f0-9eb2-da7ad0900005"}, {"type": + "permissions", "id": "12465c5e-3a5c-11f0-becd-da7ad0900005"}, {"type": "permissions", + "id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005"}, {"type": "permissions", "id": + "d2c0335e-5688-11f0-ad5e-da7ad0900005"}, {"type": "permissions", "id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005"}, + {"type": "permissions", "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005"}, {"type": + "permissions", "id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005"}]}}}, {"type": + "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "attributes": + {"name": "logs_read_index_data", "display_name": "Logs Read Index Data", "description": + "Read log data, possibly scoped to one or more indexes. In order to read log + data, a user must have both this permission and Logs Read Data. This permission + can be granted in a limited capacity per index from the Logs interface or + APIs. If granted via the Roles interface or API the permission has global + scope. Restrictions are limited to the Log Management product.", "created": + "2018-10-31T14:00:23.650159+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", + "attributes": {"name": "logs_modify_indexes", "display_name": "Logs Modify + Indexes", "description": "Read and modify all indexes in your account. This + includes the ability to grant the Logs Read Index Data and Logs Write Exclusion + Filters permission to other roles, for some or all indexes.", "created": "2018-10-31T14:00:23.664332+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "attributes": + {"name": "logs_live_tail", "display_name": "Logs Live Tail", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "created": "2018-10-31T14:00:23.676180+00:00", "group_name": + "Log Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "attributes": + {"name": "logs_write_exclusion_filters", "display_name": "Logs Write Exclusion + Filters", "description": "Add and change exclusion filters for all or some + log indexes. Can be granted in a limited capacity per index to specific roles + via the Logs interface or API. If granted from the Roles interface or API, + the permission has global scope.", "created": "2018-10-31T14:00:23.699543+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "attributes": + {"name": "logs_write_pipelines", "display_name": "Logs Write Pipelines", "description": + "Add and change log pipeline configurations, including the ability to grant + the Logs Write Processors permission to other roles, for some or all pipelines.", + "created": "2018-10-31T14:00:23.710821+00:00", "group_name": "Log Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "505f4538-dd15-11e8-9308-47a4732f715f", "attributes": {"name": "logs_write_processors", + "display_name": "Logs Write Processors", "description": "Add and change some + or all log processor configurations. Can be granted in a limited capacity + per pipeline to specific roles via the Logs interface or API. If granted via + the Roles interface or API the permission has global scope.", "created": "2018-10-31T14:00:24.726927+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e", "attributes": + {"name": "logs_write_archives", "display_name": "Logs Write Archives", "description": + "Add and edit Log Archives.", "created": "2018-10-31T14:00:24.730570+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "attributes": + {"name": "logs_generate_metrics", "display_name": "Logs Generate Metrics", + "description": "Create custom metrics from logs.", "created": "2019-07-25T12:37:55.949477+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "attributes": + {"name": "dashboards_read", "display_name": "Dashboards Read", "description": + "View dashboards.", "created": "2019-09-10T14:41:53.120685+00:00", "group_name": + "Dashboards", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "attributes": {"name": "dashboards_write", + "display_name": "Dashboards Write", "description": "Create and change dashboards.", + "created": "2019-09-10T14:41:53.136336+00:00", "group_name": "Dashboards", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f", "attributes": {"name": "dashboards_public_share", + "display_name": "Shared Dashboards Public Write", "description": "Create, + modify and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "created": "2019-09-10T14:41:53.150548+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "attributes": + {"name": "monitors_read", "display_name": "Monitors Read", "description": + "View monitors.", "created": "2019-09-16T18:49:59.270746+00:00", "group_name": + "Monitors", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "attributes": {"name": "monitors_write", + "display_name": "Monitors Write", "description": "Edit and delete individual + monitors.", "created": "2019-09-16T18:50:07.944781+00:00", "group_name": "Monitors", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "d3159858-d8b2-11e9-a336-e363d6ef331b", "attributes": {"name": "monitors_downtime", + "display_name": "Manage Downtimes", "description": "Set downtimes to suppress + alerts from any monitor in an organization. Mute and unmute monitors. The + ability to write monitors is not required to set downtimes.", "created": "2019-09-16T18:50:16.869407+00:00", + "group_name": "Monitors", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "attributes": + {"name": "logs_read_data", "display_name": "Logs Read Data", "description": + "Read log data. In order to read log data, a user must have both this permission + and Logs Read Index Data. This permission can be restricted with restriction + queries. Restrictions are limited to the Log Management product.", "created": + "2020-04-06T16:29:12.337169+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "attributes": {"name": "logs_read_archives", "display_name": "Logs Read Archives", + "description": "Read Log Archives location and use it for rehydration.", "created": + "2020-04-23T07:45:13.801938+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "attributes": {"name": "security_monitoring_rules_read", "display_name": "Security + Rules Read", "description": "Read Detection Rules.", "created": "2020-06-09T13:55:12.166762+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", + "attributes": {"name": "security_monitoring_rules_write", "display_name": + "Security Rules Write", "description": "Create and edit Detection Rules.", + "created": "2020-06-09T13:55:21.036857+00:00", "group_name": "Cloud Security + Platform", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9", "attributes": {"name": "security_monitoring_signals_read", + "display_name": "Security Signals Read", "description": "View Security Signals.", + "created": "2020-06-09T13:55:29.398066+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", "attributes": {"name": "security_monitoring_signals_write", + "display_name": "Security Signals Write", "description": "Modify Security + Signals.", "created": "2021-08-17T15:11:19.976019+00:00", "group_name": "Cloud + Security Platform", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d", "attributes": + {"name": "user_access_invite", "display_name": "User Access Invite", "description": + "Invite other users to your organization.", "created": "2020-08-25T19:10:01.692112+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", + "attributes": {"name": "user_access_manage", "display_name": "User Access + Manage", "description": "Disable users, manage user roles, manage SAML-to-role + mappings, and configure logs restriction queries.", "created": "2020-08-25T19:10:12.116164+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30", + "attributes": {"name": "user_app_keys", "display_name": "User App Keys", "description": + "View and manage Application Keys owned by the user.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "attributes": {"name": "org_app_keys_read", "display_name": "Org App Keys + Read", "description": "View Application Keys owned by all users in the organization.", + "created": "2020-09-01T14:04:14.317866+00:00", "group_name": "API and Application + Keys", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "04668d0a-ec5c-11ea-9483-37d199df4587", "attributes": {"name": "org_app_keys_write", + "display_name": "Org App Keys Write", "description": "Manage Application Keys + owned by all users in the organization.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "attributes": {"name": "synthetics_private_location_read", "display_name": + "Synthetics Private Locations Read", "description": "View, search, and use + Synthetics private locations.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Synthetic Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", + "attributes": {"name": "synthetics_private_location_write", "display_name": + "Synthetics Private Locations Write", "description": "Create and delete private + locations in addition to having access to the associated installation guidelines.", + "created": "2020-09-01T14:04:14.317866+00:00", "group_name": "Synthetic Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "04668f62-ec5c-11ea-9483-0fe541ab993f", "attributes": {"name": "billing_read", + "display_name": "Billing Read", "description": "View your organization''s + subscription and payment method but not make edits.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "attributes": + {"name": "billing_edit", "display_name": "Billing Edit", "description": "Manage + your organization''s subscription and payment method.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "attributes": {"name": "usage_read", "display_name": "Usage Read", "description": + "View your organization''s usage and usage attribution.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf", "attributes": + {"name": "usage_edit", "display_name": "Usage Edit", "description": "Manage + your organization''s usage attribution set-up.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "attributes": {"name": "metric_tags_write", "display_name": "Metric Tags Write", + "description": "Edit and save tag configurations for custom metrics.", "created": + "2020-09-01T14:04:14.317866+00:00", "group_name": "Metrics", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "attributes": {"name": "logs_write_historical_view", "display_name": "Logs + Write Historical Views", "description": "Rehydrate logs from Archives.", "created": + "2020-09-16T08:42:43.928080+00:00", "group_name": "Log Management", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "attributes": {"name": "audit_logs_read", "display_name": "Audit Trail Read", + "description": "View Audit Trail in your organization.", "created": "2020-09-17T20:37:03.702585+00:00", + "group_name": "Compliance", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9311970e-f925-11ea-ab4d-1760e76381c1", "attributes": + {"name": "api_keys_read", "display_name": "API Keys Read", "description": + "List and retrieve the key values of all API Keys in your organization.", + "created": "2020-09-17T20:37:16.471514+00:00", "group_name": "API and Application + Keys", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "attributes": {"name": "api_keys_write", + "display_name": "API Keys Write", "description": "Create and rename API Keys + for your organization.", "created": "2020-09-17T20:37:27.331389+00:00", "group_name": + "API and Application Keys", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "attributes": + {"name": "synthetics_global_variable_read", "display_name": "Synthetics Global + Variable Read", "description": "View, search, and use Synthetics global variables.", + "created": "2020-09-17T20:37:50.165103+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", "attributes": {"name": "synthetics_global_variable_write", + "display_name": "Synthetics Global Variable Write", "description": "Create, + edit, and delete global variables for Synthetics.", "created": "2020-09-17T20:38:01.966230+00:00", + "group_name": "Synthetic Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "b6858556-f925-11ea-9222-1f47b8677b93", + "attributes": {"name": "synthetics_read", "display_name": "Synthetics Read", + "description": "List and view configured Synthetic tests and test results.", + "created": "2020-09-17T20:38:15.951574+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "attributes": {"name": "synthetics_write", + "display_name": "Synthetics Write", "description": "Create, edit, and delete + Synthetic tests.", "created": "2020-09-17T20:38:27.421632+00:00", "group_name": + "Synthetic Monitoring", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "attributes": + {"name": "synthetics_default_settings_read", "display_name": "Synthetics Default + Settings Read", "description": "View the default settings for Synthetic Monitoring.", + "created": "2020-09-17T20:38:49.527477+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "cf223140-f925-11ea-a3a2-df370532bcf7", "attributes": {"name": "synthetics_default_settings_write", + "display_name": "Synthetics Default Settings Write", "description": "Edit + the default settings for Synthetic Monitoring.", "created": "2020-09-17T20:38:57.244987+00:00", + "group_name": "Synthetic Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", + "attributes": {"name": "logs_write_facets", "display_name": "Logs Write Facets", + "description": "Create or edit Log Facets.", "created": "2020-10-14T12:54:16.607129+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "attributes": + {"name": "service_account_write", "display_name": "Service Account Write", + "description": "Create, disable, and use Service Accounts in your organization.", + "created": "2020-10-22T14:25:34.868208+00:00", "group_name": "Access Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "attributes": {"name": "apm_read", + "display_name": "APM Read", "description": "Read and query APM and Trace Analytics.", + "created": "2020-11-23T20:59:02.902692+00:00", "group_name": "APM", "display_type": + "read", "restricted": true}}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "attributes": {"name": "apm_retention_filter_read", "display_name": "APM Retention + Filters Read", "description": "Read trace retention filters. A user with this + permission can view the retention filters page, list of filters, their statistics, + and creation info.", "created": "2020-11-23T20:59:11.833795+00:00", "group_name": + "APM", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "attributes": {"name": "apm_retention_filter_write", + "display_name": "APM Retention Filters Write", "description": "Create, edit, + and delete trace retention filters. A user with this permission can create + new retention filters, and update or delete to existing retention filters.", + "created": "2020-11-23T20:59:19.531425+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", + "attributes": {"name": "apm_service_ingest_read", "display_name": "APM Service + Ingest Read", "description": "Access service ingestion pages. A user with + this permission can view the service ingestion page, list of root services, + their statistics, and creation info.", "created": "2020-11-23T20:59:25.933546+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "c8654332-2dce-11eb-9145-d33d26eeb65f", "attributes": + {"name": "apm_service_ingest_write", "display_name": "APM Service Ingest Write", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "created": "2020-11-23T20:59:31.352238+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "attributes": + {"name": "apm_apdex_manage_write", "display_name": "APM Apdex Manage Write", + "description": "Set Apdex T value on any service. A user with this permission + can set the T value from the Apdex graph on the service page.", "created": + "2020-11-23T20:59:47.864214+00:00", "group_name": "APM", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c", + "attributes": {"name": "apm_tag_management_write", "display_name": "APM Tag + Management Write", "description": "Edit second primary tag selection. A user + with this permission can modify the second primary tag dropdown in the APM + settings page.", "created": "2020-11-23T21:00:01.066421+00:00", "group_name": + "APM", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "attributes": {"name": "apm_primary_operation_write", + "display_name": "APM Primary Operation Write", "description": "Edit the operation + name value selection. A user with this permission can modify the operation + name list in the APM settings page and the operation name controller on the + service page.", "created": "2020-11-23T21:00:18.680068+00:00", "group_name": + "APM", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", "attributes": {"name": "audit_logs_write", + "display_name": "Audit Trail Write", "description": "Configure Audit Trail + in your organization.", "created": "2020-12-01T19:12:04.940111+00:00", "group_name": + "Compliance", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", "attributes": {"name": "rum_apps_write", + "display_name": "RUM Apps Write", "description": "Create, edit, and delete + RUM applications. Creating a RUM application automatically generates a Client + Token. In order to create Client Tokens directly, a user needs the Client + Tokens Write permission.", "created": "2021-01-11T19:07:15.721075+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "attributes": {"name": "debugger_write", "display_name": "Dynamic Instrumentation + Write", "description": "Edit Dynamic Instrumentation configuration. Create + or modify Dynamic Instrumentation probes that do not capture function state.", + "created": "2021-03-08T15:07:07.319753+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "attributes": {"name": "debugger_read", "display_name": "Dynamic Instrumentation + Read", "description": "View Dynamic Instrumentation configuration.", "created": + "2021-03-08T15:07:07.333513+00:00", "group_name": "APM", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005", + "attributes": {"name": "data_scanner_read", "display_name": "Data Scanner + Read", "description": "View Sensitive Data Scanner configurations and scanning + results.", "created": "2021-03-29T16:56:27.205044+00:00", "group_name": "Compliance", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "attributes": {"name": "data_scanner_write", + "display_name": "Data Scanner Write", "description": "Edit Sensitive Data + Scanner configurations.", "created": "2021-03-29T16:56:27.219481+00:00", "group_name": + "Compliance", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "attributes": {"name": "org_management", + "display_name": "Org Management", "description": "Edit org configurations, + including authentication and certain security preferences such as configuring + SAML, renaming an org, configuring allowed login methods, creating child orgs, + subscribing & unsubscribing from apps in the marketplace, and enabling & disabling + Remote Configuration for the entire organization.", "created": "2021-04-23T17:51:22.555499+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "99397470-b16d-11eb-a891-da7ad0900005", + "attributes": {"name": "security_monitoring_filters_read", "display_name": + "Security Filters Read", "description": "Read Security Filters.", "created": + "2021-05-10T08:56:24.514661+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "993b34d6-b16d-11eb-a891-da7ad0900005", "attributes": {"name": "security_monitoring_filters_write", + "display_name": "Security Filters Write", "description": "Create, edit, and + delete Security Filters.", "created": "2021-05-10T08:56:24.527411+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", + "attributes": {"name": "incident_read", "display_name": "Incidents Read", + "description": "View incidents in Datadog.", "created": "2021-06-22T15:11:07.986072+00:00", + "group_name": "Case and Incident Management", "display_type": "read", "restricted": + true}}, {"type": "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005", + "attributes": {"name": "incident_write", "display_name": "Incidents Write", + "description": "Create, view, and manage incidents in Datadog.", "created": + "2021-06-22T15:11:08.003239+00:00", "group_name": "Case and Incident Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "122f7508-d36c-11eb-b2bf-da7ad0900005", "attributes": {"name": "incident_settings_read", + "display_name": "Incident Settings Read", "description": "View Incident Settings.", + "created": "2021-06-22T15:11:07.995787+00:00", "group_name": "Case and Incident + Management", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "attributes": {"name": "incident_settings_write", + "display_name": "Incident Settings Write", "description": "Configure Incident + Settings.", "created": "2021-06-22T15:11:07.999194+00:00", "group_name": "Case + and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005", "attributes": + {"name": "appsec_event_rule_read", "display_name": "Application Security Management + Event Rules Read", "description": "View Application Security Management Event + Rules.", "created": "2021-07-19T13:26:35.252432+00:00", "group_name": "Cloud + Security Platform", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005", "attributes": + {"name": "appsec_event_rule_write", "display_name": "Application Security + Management Event Rules Write", "description": "Edit Application Security Management + Event Rules.", "created": "2021-07-19T13:26:35.260787+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "attributes": + {"name": "rum_apps_read", "display_name": "RUM Apps Read", "description": + "View RUM Applications data.", "created": "2021-08-02T09:46:22.567371+00:00", + "group_name": "Real User Monitoring", "display_type": "read", "restricted": + true}}, {"type": "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", + "attributes": {"name": "rum_session_replay_read", "display_name": "RUM Session + Replay Read", "description": "View Session Replays.", "created": "2021-08-02T09:46:22.572685+00:00", + "group_name": "Real User Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "c94811de-16c7-11ec-88cc-da7ad0900005", + "attributes": {"name": "security_monitoring_notification_profiles_read", "display_name": + "Security Notification Rules Read", "description": "Read Notification Rules.", + "created": "2021-09-16T08:26:27.288070+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "attributes": {"name": "security_monitoring_notification_profiles_write", + "display_name": "Security Notification Rules Write", "description": "Create, + edit, and delete Notification Rules.", "created": "2021-09-16T08:26:27.292835+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005", + "attributes": {"name": "apm_generate_metrics", "display_name": "APM Generate + Metrics", "description": "Create custom metrics from spans.", "created": "2021-09-16T15:31:28.639581+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005", "attributes": + {"name": "security_monitoring_cws_agent_rules_read", "display_name": "Cloud + Workload Security Agent Rules Read", "description": "Read Cloud Workload Security + Agent Rules.", "created": "2021-11-17T10:41:45.755009+00:00", "group_name": + "Cloud Security Platform", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "f5e1489a-4792-11ec-944b-da7ad0900005", "attributes": + {"name": "security_monitoring_cws_agent_rules_write", "display_name": "Cloud + Workload Security Agent Rules Write", "description": "Create, edit, and delete + Cloud Workload Security Agent Rules.", "created": "2021-11-17T10:41:45.761956+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", + "attributes": {"name": "apm_pipelines_write", "display_name": "APM Pipelines + Write", "description": "Add and change APM pipeline configurations.", "created": + "2021-12-06T14:51:25.389398+00:00", "group_name": "APM", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005", + "attributes": {"name": "apm_pipelines_read", "display_name": "APM Pipelines + Read", "description": "View APM pipeline configurations.", "created": "2021-12-07T11:21:23.741014+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "attributes": + {"name": "observability_pipelines_read", "display_name": "Observability Pipelines + Read", "description": "View pipelines in your organization.", "created": "2021-12-09T00:11:41.567875+00:00", + "group_name": "Observability Pipelines", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "attributes": {"name": "observability_pipelines_write", "display_name": "Observability + Pipelines Write", "description": "Edit pipelines in your organization.", "created": + "2021-12-09T00:11:41.572883+00:00", "group_name": "Observability Pipelines", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "e31e0056-8502-11ec-b266-da7ad0900005", "attributes": {"name": "workflows_read", + "display_name": "Workflows Read", "description": "View workflows.", "created": + "2022-02-03T15:06:38.846399+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "e31f0230-8502-11ec-b266-da7ad0900005", "attributes": {"name": "workflows_write", + "display_name": "Workflows Write", "description": "Create, edit, and delete + workflows.", "created": "2022-02-03T15:06:38.853003+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "workflows_run", "display_name": "Workflows Run", "description": + "Run workflows.", "created": "2022-02-03T15:06:38.849099+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "connections_read", "display_name": "Connections Read", + "description": "List and view available connections. Connections contain secrets + that cannot be revealed.", "created": "2022-02-03T15:06:38.837721+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "connections_write", "display_name": "Connections Write", + "description": "Create and delete connections.", "created": "2022-02-03T15:06:38.843395+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", + "attributes": {"name": "notebooks_read", "display_name": "Notebooks Read", + "description": "View notebooks.", "created": "2022-03-02T18:51:33.435297+00:00", + "group_name": "Notebooks", "display_type": "read", "restricted": true}}, {"type": + "permissions", "id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "attributes": + {"name": "notebooks_write", "display_name": "Notebooks Write", "description": + "Create and change notebooks.", "created": "2022-03-02T18:51:33.439640+00:00", + "group_name": "Notebooks", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005", "attributes": + {"name": "logs_delete_data", "display_name": "Logs Delete Data", "description": + "Delete data from your Logs, including entire indexes.", "created": "2022-02-25T18:51:34.198635+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005", "attributes": + {"name": "rum_generate_metrics", "display_name": "RUM Generate Metrics", "description": + "Create custom metrics from RUM events.", "created": "2022-04-11T16:26:30.469616+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "attributes": {"name": "aws_configurations_manage", "display_name": "AWS Configurations + Manage", "description": "Add or remove but not edit AWS integration configurations.", + "created": "2022-04-26T20:21:48.019179+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "7fbe2266-c59e-11ec-90fb-da7ad0900005", "attributes": {"name": "azure_configurations_manage", + "display_name": "Azure Configurations Manage", "description": "Add or remove + but not edit Azure integration configurations.", "created": "2022-04-26T20:21:48.031171+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "attributes": + {"name": "gcp_configurations_manage", "display_name": "GCP Configurations + Manage", "description": "Add or remove but not edit GCP integration configurations.", + "created": "2022-04-26T20:21:48.027662+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "attributes": {"name": "manage_integrations", + "display_name": "Integrations Manage", "description": "Install, uninstall, + and configure integrations.", "created": "2022-04-26T20:21:48.034453+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "attributes": + {"name": "usage_notifications_read", "display_name": "Usage Notifications + Read", "description": "Receive notifications and view currently configured + notification settings.", "created": "2022-05-17T13:56:29.090665+00:00", "group_name": + "Billing and Usage", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "attributes": + {"name": "usage_notifications_write", "display_name": "Usage Notifications + Write", "description": "Receive notifications and configure notification settings.", + "created": "2022-05-17T13:56:29.094457+00:00", "group_name": "Billing and + Usage", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "attributes": {"name": "generate_dashboard_reports", + "display_name": "Dashboards Report Write", "description": "Schedule PDF reports + from a dashboard.", "created": "2022-06-06T18:15:47.465864+00:00", "group_name": + "Dashboards", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "f33f74be-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_read", + "display_name": "SLOs Read", "description": "View SLOs and status corrections.", + "created": "2022-06-08T16:20:45.638848+00:00", "group_name": "Service Level + Objectives", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "f340161c-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_write", + "display_name": "SLOs Write", "description": "Create, edit, and delete SLOs.", + "created": "2022-06-08T16:20:45.643085+00:00", "group_name": "Service Level + Objectives", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_corrections", + "display_name": "SLOs Status Corrections", "description": "Apply, edit, and + delete SLO status corrections. A user with this permission can make status + corrections, even if they do not have permission to edit those SLOs.", "created": + "2022-06-08T16:20:45.632820+00:00", "group_name": "Service Level Objectives", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "3ad32264-f311-11ec-a058-da7ad0900005", "attributes": {"name": "monitor_config_policy_write", + "display_name": "Monitor Configuration Policy Write", "description": "Create, + update, and delete monitor configuration policies.", "created": "2022-06-23T16:26:26.854058+00:00", + "group_name": "Monitors", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f42ef088-173a-11ed-8654-da7ad0900005", "attributes": + {"name": "apm_service_catalog_write", "display_name": "Service Catalog Write", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "created": "2022-08-08T16:55:49.060954+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "attributes": + {"name": "apm_service_catalog_read", "display_name": "Service Catalog Read", + "description": "View service catalog and service definitions.", "created": + "2022-08-08T16:55:49.055930+00:00", "group_name": "APM", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", + "attributes": {"name": "logs_write_forwarding_rules", "display_name": "Logs + Write Forwarding Rules", "description": "Add and edit forwarding destinations + and rules for logs.", "created": "2022-08-08T21:30:48.328740+00:00", "group_name": + "Log Management", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005", "attributes": + {"name": "connections_resolve", "display_name": "Connections Resolve", "description": + "Resolve connections.", "created": "2022-08-25T15:26:23.943459+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_protect_read", "display_name": "Application + Security Management Protect Read", "description": "View blocked attackers.", + "created": "2022-10-27T09:25:59.057166+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "attributes": {"name": "appsec_protect_write", + "display_name": "Application Security Management Protect Write", "description": + "Manage blocked attackers.", "created": "2022-10-27T09:25:59.060959+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_activation_read", "display_name": "Application + Security Management 1-click Enablement Read", "description": "View whether + Application Security Management has been enabled or disabled on services via + 1-click enablement with Remote Configuration.", "created": "2022-10-27T09:25:59.047444+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_activation_write", "display_name": "Application + Security Management 1-click Enablement Write", "description": "Enable or disable + Application Security Management on services via 1-click enablement.", "created": + "2022-10-27T09:25:59.053394+00:00", "group_name": "Cloud Security Platform", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "c0490360-5a12-11ed-adbe-da7ad0900005", "attributes": {"name": "apps_run", + "display_name": "Apps View", "description": "View and run Apps in App Builder.", + "created": "2022-11-01T18:26:50.026179+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005", "attributes": + {"name": "apps_write", "display_name": "Apps Write", "description": "Create, + edit, and delete Apps in App Builder.", "created": "2022-11-01T18:26:50.036655+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "926612da-7a4c-11ed-b809-da7ad0900005", + "attributes": {"name": "cases_read", "display_name": "Cases Read", "description": + "View Cases.", "created": "2022-12-12T18:41:21.060748+00:00", "group_name": + "Case and Incident Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "attributes": + {"name": "cases_write", "display_name": "Cases Write", "description": "Create + and update cases.", "created": "2022-12-12T18:41:21.067150+00:00", "group_name": + "Case and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "attributes": + {"name": "apm_remote_configuration_write", "display_name": "APM Remote Configuration + Write", "description": "Edit APM Remote Configuration.", "created": "2022-12-12T20:21:20.723147+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "attributes": + {"name": "apm_remote_configuration_read", "display_name": "APM Remote Configuration + Read", "description": "View APM Remote Configuration.", "created": "2022-12-12T20:21:20.716560+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "attributes": + {"name": "ci_visibility_read", "display_name": "CI Visibility Read", "description": + "View CI Visibility.", "created": "2022-12-13T16:02:28.814628+00:00", "group_name": + "Software Delivery", "display_type": "read", "restricted": true}}, {"type": + "permissions", "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "attributes": + {"name": "ci_visibility_write", "display_name": "CI Visibility Tests Write", + "description": "Edit flaky tests and delete Test Services.", "created": "2022-12-13T16:02:28.821529+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "ci_provider_settings_write", "display_name": "CI Provider + Settings Write", "description": "Edit CI Provider settings. Manage GitHub + accounts and repositories for enabling CI Visibility and job logs collection.", + "created": "2022-12-13T16:02:28.806929+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "attributes": {"name": "ci_visibility_settings_write", + "display_name": "CI Visibility Settings Write", "description": "Configure + CI Visibility settings. Set a repository default branch, enable GitHub comments, + and delete test services.", "created": "2022-12-13T16:02:28.818035+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "intelligent_test_runner_activation_write", "display_name": + "Intelligent Test Runner Activation Write", "description": "Deprecated. Enable + or disable Intelligent Test Runner.", "created": "2022-12-13T16:02:28.826271+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "intelligent_test_runner_settings_write", "display_name": + "Intelligent Test Runner Settings Write", "description": "Deprecated. Edit + Intelligent Test Runner settings, such as modifying ITR excluded branch list.", + "created": "2022-12-13T16:02:28.830112+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "55f64460-7d61-11ed-9c36-da7ad0900005", "attributes": {"name": "continuous_profiler_read", + "display_name": "Continuous Profiler Read", "description": "View data in Continuous + Profiler.", "created": "2022-12-16T16:47:32.584514+00:00", "group_name": "APM", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005", "attributes": {"name": "teams_manage", + "display_name": "Teams Manage", "description": "Manage Teams. Create, delete, + rename, and edit metadata of all Teams. To control Team membership across + all Teams, use the User Access Manage permission.", "created": "2023-01-18T20:45:46.126002+00:00", + "group_name": "Teams", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005", "attributes": + {"name": "security_monitoring_findings_read", "display_name": "Security Monitoring + Findings Read", "description": "View a list of findings that include both + misconfigurations and identity risks.", "created": "2023-02-24T14:30:40.720618+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", + "attributes": {"name": "incident_notification_settings_read", "display_name": + "Incident Notification Settings Read", "description": "View Incidents Notification + settings.", "created": "2023-02-24T17:27:09.998449+00:00", "group_name": "Case + and Incident Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "attributes": + {"name": "incident_notification_settings_write", "display_name": "Incident + Notification Settings Write", "description": "Configure Incidents Notification + settings.", "created": "2023-02-24T17:27:09.998449+00:00", "group_name": "Case + and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "attributes": + {"name": "ci_ingestion_control_write", "display_name": "CI Visibility Ingestion + Control Write", "description": "Edit CI Ingestion Control exclusion filters.", + "created": "2023-03-24T10:25:52.891502+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005", "attributes": {"name": "error_tracking_write", + "display_name": "Error Tracking Issue Write", "description": "Edit Error Tracking + issues.", "created": "2023-03-27T16:55:39.540192+00:00", "group_name": "Error + Tracking", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "81e488c0-db35-11ed-a170-da7ad0900005", "attributes": {"name": "watchdog_alerts_write", + "display_name": "Watchdog Alerts Write", "description": "Manage Watchdog Alerts.", + "created": "2023-04-15T02:30:37.731056+00:00", "group_name": "Watchdog", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005", + "attributes": {"name": "saved_views_write", "display_name": "Saved Views Write", + "description": "Modify Saved Views across all Datadog products.", "created": + "2023-04-15T02:30:37.731056+00:00", "group_name": "Cross-Product Features", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "94c8a4da-de87-11ed-9e92-da7ad0900005", "attributes": {"name": "client_tokens_read", + "display_name": "Client Tokens Read", "description": "Read Client Tokens. + Unlike API keys, client tokens may be exposed client-side in JavaScript code + for web browsers and other clients to send data to Datadog.", "created": "2023-04-19T07:55:41.646942+00:00", + "group_name": "API and Application Keys", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "94c927e8-de87-11ed-9e92-da7ad0900005", + "attributes": {"name": "client_tokens_write", "display_name": "Client Tokens + Write", "description": "Create and edit Client Tokens. Unlike API keys, client + tokens may be exposed client-side in JavaScript code for web browsers and + other clients to send data to Datadog.", "created": "2023-04-19T07:55:41.646942+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "619b2642-f41b-11ed-b4e1-da7ad0900005", + "attributes": {"name": "event_correlation_config_read", "display_name": "Event + Correlation Config Read", "description": "Read Event Correlation Configuration + data such as Correlation Rules and Settings.", "created": "2023-05-16T18:56:35.719150+00:00", + "group_name": "Events", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "attributes": + {"name": "event_correlation_config_write", "display_name": "Event Correlation + Config Write", "description": "Manage Event Correlation Configuration such + as Correlation Rules and Settings.", "created": "2023-05-16T18:56:35.719150+00:00", + "group_name": "Events", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005", "attributes": + {"name": "event_config_write", "display_name": "Event Config Write", "description": + "Manage general event configuration such as API Emails.", "created": "2023-05-20T00:00:57.864864+00:00", + "group_name": "Events", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "attributes": + {"name": "security_monitoring_findings_write", "display_name": "Security Monitoring + Findings Write", "description": "Mute CSPM Findings.", "created": "2023-05-23T21:45:42.705754+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "attributes": {"name": "cloud_cost_management_read", "display_name": "Cloud + Cost Management Read", "description": "View Cloud Cost pages and the cloud + cost data source in dashboards and notebooks. For more details, see the Cloud + Cost Management docs.", "created": "2023-05-31T19:20:42.284425+00:00", "group_name": + "Cloud Cost Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "attributes": + {"name": "cloud_cost_management_write", "display_name": "Cloud Cost Management + Write", "description": "Configure cloud cost accounts and global customizations. + For more details, see the Cloud Cost Management docs.", "created": "2023-05-31T19:20:42.284425+00:00", + "group_name": "Cloud Cost Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", + "attributes": {"name": "host_tags_write", "display_name": "Host Tags Write", + "description": "Add and change tags on hosts.", "created": "2023-05-31T05:12:01.547070+00:00", + "group_name": "Metrics", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005", "attributes": + {"name": "ci_visibility_pipelines_write", "display_name": "CI Visibility Pipelines + Write", "description": "Create CI Visibility pipeline spans using the API.", + "created": "2023-06-01T10:15:50.891463+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "attributes": {"name": "quality_gate_rules_read", + "display_name": "Quality Gate Rules Read", "description": "View Quality Gate + Rules.", "created": "2023-06-19T16:27:34.826612+00:00", "group_name": "Software + Delivery", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "attributes": {"name": "quality_gate_rules_write", + "display_name": "Quality Gate Rules Write", "description": "Edit Quality Gate + Rules.", "created": "2023-06-19T16:27:34.826612+00:00", "group_name": "Software + Delivery", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "attributes": {"name": "metrics_metadata_write", + "display_name": "Metrics Metadata Write", "description": "Edit metadata on + metrics.", "created": "2023-06-23T16:21:25.009293+00:00", "group_name": "Metrics", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "4316b75c-093f-11ee-98e9-da7ad0900005", "attributes": {"name": "rum_delete_data", + "display_name": "RUM Delete Data", "description": "Delete data from RUM.", + "created": "2023-06-12T16:36:20.819036+00:00", "group_name": "Real User Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "4316826e-093f-11ee-98e9-da7ad0900005", "attributes": {"name": "appsec_vm_write", + "display_name": "Vulnerability Management Write", "description": "Update status + or assignee of vulnerabilities.", "created": "2023-06-12T16:36:20.819036+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "attributes": {"name": "reference_tables_write", "display_name": "Reference + Tables Write", "description": "Create or modify Reference Tables.", "created": + "2023-06-12T16:36:20.819036+00:00", "group_name": "Reference Tables", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "attributes": {"name": "rum_playlist_write", "display_name": "RUM Playlist + Write", "description": "Create, update, and delete RUM playlists. Add and + remove sessions from RUM playlists.", "created": "2023-07-07T16:26:50.792866+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", + "attributes": {"name": "observability_pipelines_delete", "display_name": "Observability + Pipelines Delete", "description": "Delete pipelines from your organization.", + "created": "2023-07-13T16:25:44.923503+00:00", "group_name": "Observability + Pipelines", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "attributes": {"name": "observability_pipelines_deploy", + "display_name": "Observability Pipelines Deploy", "description": "Deploy pipelines + in your organization.", "created": "2023-07-13T16:25:44.923503+00:00", "group_name": + "Observability Pipelines", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "attributes": + {"name": "processes_generate_metrics", "display_name": "Processes Generate + Metrics", "description": "Create custom metrics from processes.", "created": + "2023-07-12T16:27:03.457484+00:00", "group_name": "Processes", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "attributes": {"name": "api_keys_delete", "display_name": "API Keys Delete", + "description": "Delete API Keys for your organization.", "created": "2023-07-12T16:27:03.457484+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "attributes": {"name": "agent_flare_collection", "display_name": "Agent Flare + Collection", "description": "Collect an Agent flare with Fleet Automation.", + "created": "2023-07-13T16:25:44.923503+00:00", "group_name": "Fleet Automation", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005", "attributes": {"name": "org_connections_write", + "display_name": "Org Connections Write", "description": "Control which organizations + can query your organization''s data.", "created": "2023-07-20T16:25:38.185785+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005", + "attributes": {"name": "org_connections_read", "display_name": "Org Connections + Read", "description": "View which organizations can query data from your organization. + Query data from other organizations.", "created": "2023-07-20T16:25:38.185785+00:00", + "group_name": "Access Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "attributes": + {"name": "facets_write", "display_name": "Facets Write", "description": "Manage + facets for products other than Log Management, such as APM Traces. To modify + Log Facets, use Logs Write Facets.", "created": "2023-07-27T16:26:26.546986+00:00", + "group_name": "Cross-Product Features", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", + "attributes": {"name": "security_monitoring_suppressions_read", "display_name": + "Security Suppressions Read", "description": "Read Rule Suppressions.", "created": + "2023-08-17T16:25:26.209216+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "attributes": {"name": "security_monitoring_suppressions_write", + "display_name": "Security Suppressions Write", "description": "Write Rule + Suppressions.", "created": "2023-08-17T16:25:26.209216+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "attributes": + {"name": "static_analysis_settings_write", "display_name": "Static Analysis + Settings Write", "description": "Edit Static Analysis settings.", "created": + "2023-08-18T16:25:56.688500+00:00", "group_name": "Software Delivery", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005", + "attributes": {"name": "cd_visibility_read", "display_name": "CD Visibility + Read", "description": "View CD Visibility.", "created": "2023-09-08T23:01:01.285130+00:00", + "group_name": "Software Delivery", "display_type": "read", "restricted": true}}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "attributes": + {"name": "ndm_netflow_port_mappings_write", "display_name": "NDM Netflow Port + Mappings Write", "description": "Write NDM Netflow port mappings.", "created": + "2023-10-12T16:26:03.661255+00:00", "group_name": "Network Device Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "2de35000-69e5-11ee-996b-da7ad0900005", "attributes": {"name": "appsec_vm_read", + "display_name": "Vulnerability Management Read", "description": "View infrastructure, + application code and library vulnerabilities. This does not restrict access + to the vulnerability data source through the API or inventory SQL.", "created": + "2023-10-13T16:25:53.335225+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": true}}, {"type": "permissions", "id": + "54f38ef0-6f65-11ee-a094-da7ad0900005", "attributes": {"name": "debugger_capture_variables", + "display_name": "Dynamic Instrumentation Capture Variables", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "created": "2023-10-20T16:25:50.268064+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "f2cc9374-9841-11ee-a301-da7ad0900005", + "attributes": {"name": "error_tracking_settings_write", "display_name": "Error + Tracking Settings Write", "description": "Disable Error Tracking, edit inclusion + filters, and edit rate limit.", "created": "2023-12-11T16:25:50.880331+00:00", + "group_name": "Error Tracking", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "attributes": + {"name": "error_tracking_exclusion_filters_write", "display_name": "Error + Tracking Exclusion Filters Write", "description": "Add or change Error Tracking + exclusion filters.", "created": "2023-12-11T16:25:50.880331+00:00", "group_name": + "Error Tracking", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "attributes": + {"name": "integrations_read", "display_name": "Integrations Read", "description": + "View integrations and their configurations.", "created": "2024-01-23T16:26:45.209142+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "attributes": + {"name": "apm_api_catalog_write", "display_name": "API Catalog Write", "description": + "Add, modify, and delete API catalog definitions.", "created": "2024-02-02T16:25:57.659403+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "attributes": + {"name": "apm_api_catalog_read", "display_name": "API Catalog Read", "description": + "View API catalog and API definitions.", "created": "2024-02-02T16:25:57.659403+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "11280c24-cce8-11ee-af00-da7ad0900005", "attributes": + {"name": "containers_generate_image_metrics", "display_name": "Containers + Write Image Trend Metrics", "description": "Create or edit trend metrics from + container images.", "created": "2024-02-16T16:25:58.736360+00:00", "group_name": + "Containers", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "attributes": {"name": "rum_extend_retention", + "display_name": "RUM Session Replay Extend Retention", "description": "Extend + the retention of Session Replays.", "created": "2024-03-14T16:26:30.797793+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005", + "attributes": {"name": "on_prem_runner_read", "display_name": "Private Action + Runner Read", "description": "View and search Private Action Runners for Workflow + Automation and App Builder.", "created": "2024-03-18T16:26:33.583707+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", + "attributes": {"name": "on_prem_runner_use", "display_name": "Private Action + Runner Contribute", "description": "Attach a Private Action Runner to a connection.", + "created": "2024-03-18T16:26:33.583707+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "attributes": + {"name": "on_prem_runner_write", "display_name": "Private Action Runner Write", + "description": "Create and edit Private Action Runners for Workflow Automation + and App Builder.", "created": "2024-03-18T16:26:33.583707+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", + "attributes": {"name": "dora_settings_write", "display_name": "DORA Settings + Write", "description": "Edit the settings for DORA.", "created": "2024-04-08T16:25:58.692075+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", + "attributes": {"name": "agent_upgrade_write", "display_name": "Agent Upgrade", + "description": "Upgrade Datadog Agents with Fleet Automation.", "created": + "2024-04-22T16:25:53.208974+00:00", "group_name": "Fleet Automation", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", + "attributes": {"name": "continuous_profiler_pgo_read", "display_name": "Read + Continuous Profiler Profile-Guided Optimization (PGO) Data", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "created": "2024-04-23T16:30:30.492439+00:00", "group_name": "APM", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005", + "attributes": {"name": "oci_configurations_manage", "display_name": "OCI Configurations + Manage", "description": "Add or remove but not edit Oracle Cloud integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "attributes": {"name": "aws_configuration_read", + "display_name": "AWS Configuration Read", "description": "View but not add, + remove, or edit AWS integration configurations.", "created": "2024-04-23T16:30:30.492439+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "ccd09204-018e-11ef-afb6-da7ad0900005", "attributes": + {"name": "azure_configuration_read", "display_name": "Azure Configuration + Read", "description": "View but not add, remove, or edit Azure integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "attributes": {"name": "gcp_configuration_read", + "display_name": "GCP Configuration Read", "description": "View but not add, + remove, or edit GCP integration configurations.", "created": "2024-04-23T16:30:30.492439+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005", "attributes": + {"name": "oci_configuration_read", "display_name": "OCI Configuration Read", + "description": "View but not add, remove, or edit Oracle Cloud integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "attributes": {"name": "aws_configuration_edit", + "display_name": "AWS Configuration Edit", "description": "Edit but not add + or remove AWS integration configurations.", "created": "2024-05-02T16:26:19.141095+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "attributes": + {"name": "azure_configuration_edit", "display_name": "Azure Configuration + Edit", "description": "Edit but not add or remove Azure integration configurations.", + "created": "2024-05-02T16:26:19.141095+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005", "attributes": {"name": "gcp_configuration_edit", + "display_name": "GCP Configuration Edit", "description": "Edit but not add + or remove GCP integration configurations.", "created": "2024-05-02T16:26:19.141095+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "attributes": + {"name": "oci_configuration_edit", "display_name": "OCI Configuration Edit", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "created": "2024-05-02T16:26:19.141095+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "attributes": {"name": "llm_observability_read", + "display_name": "LLM Observability Read", "description": "View LLM Observability.", + "created": "2024-05-03T16:26:22.500447+00:00", "group_name": "LLM Observability", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ef950332-13a0-11ef-b582-da7ad0900005", "attributes": {"name": "flex_logs_config_write", + "display_name": "Flex Logs Configuration Write", "description": "Manage your + organization''s flex logs configuration.", "created": "2024-05-16T16:25:40.697830+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "21c5475c-228f-11ef-a00d-da7ad0900005", "attributes": + {"name": "reference_tables_read", "display_name": "Reference Tables Read", + "description": "View Reference Tables.", "created": "2024-06-04T16:26:01.400743+00:00", + "group_name": "Reference Tables", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "75066402-3890-11ef-bbb1-da7ad0900005", "attributes": + {"name": "fleet_policies_write", "display_name": "Agent Configuration Management", + "description": "Create and deploy Agent configurations.", "created": "2024-07-02T16:30:56.156267+00:00", + "group_name": "Fleet Automation", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005", "attributes": + {"name": "orchestration_custom_resource_definitions_write", "display_name": + "Custom Resource Definition Write", "description": "Enable, disable and update + custom resource indexing.", "created": "2024-07-02T16:30:56.156267+00:00", + "group_name": "Orchestration", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005", "attributes": + {"name": "code_analysis_read", "display_name": "Code Analysis Read", "description": + "View Code Analysis.", "created": "2024-08-06T16:26:25.858118+00:00", "group_name": + "Software Delivery", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005", "attributes": + {"name": "orchestration_workload_scaling_write", "display_name": "Workload + Scaling Write", "description": "Enable, disable, and configure workload autoscaling. + Apply workload scaling recommendations.", "created": "2024-08-06T16:26:25.858118+00:00", + "group_name": "Orchestration", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "06e3004e-5987-11ef-89c3-da7ad0900005", "attributes": + {"name": "llm_observability_write", "display_name": "LLM Observability Write", + "description": "Create, Update, and Delete LLM Observability resources including + User Defined Evaluations, OOTB Evaluations, and User Defined Topics.", "created": + "2024-08-13T15:16:34.275999+00:00", "group_name": "LLM Observability", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "attributes": {"name": "observability_pipelines_capture_read", "display_name": + "Observability Pipelines Live Capture Read", "description": "View captured + events of pipelines in your organization.", "created": "2024-08-27T16:50:39.669348+00:00", + "group_name": "Observability Pipelines", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005", + "attributes": {"name": "observability_pipelines_capture_write", "display_name": + "Observability Pipelines Live Capture Write", "description": "Capture live + events of pipelines in your organization.", "created": "2024-08-27T16:50:39.669348+00:00", + "group_name": "Observability Pipelines", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", + "attributes": {"name": "apps_datastore_read", "display_name": "Actions Datastore + Read", "description": "Allows read access to the data within the Actions Datastore.", + "created": "2024-08-22T16:25:15.890147+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "attributes": + {"name": "apps_datastore_write", "display_name": "Actions Datastore Write", + "description": "Allows modification of data within the Actions Datastore, + including adding, editing, and deleting records.", "created": "2024-08-22T16:25:15.890147+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", + "attributes": {"name": "apps_datastore_manage", "display_name": "Actions Datastore + Manage", "description": "Allows management of the Actions Datastore, including + creating, updating, and deleting the datastore itself.", "created": "2024-08-22T16:25:15.890147+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "attributes": {"name": "security_pipelines_read", "display_name": "Security + Pipelines Read", "description": "View Security Pipelines.", "created": "2024-08-30T16:25:36.779590+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "attributes": {"name": "security_pipelines_write", "display_name": "Security + Pipelines Write", "description": "Create, edit, and delete Security Pipelines.", + "created": "2024-08-30T16:25:36.779590+00:00", "group_name": "Cloud Security + Platform", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "8e9b2142-7511-11ef-b225-da7ad0900005", "attributes": {"name": "connection_groups_write", + "display_name": "Connection Groups Write", "description": "Create, delete + and update connection groups.", "created": "2024-09-17T16:26:13.918826+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "attributes": {"name": "quality_gates_evaluations_read", "display_name": "Quality + Gates Evaluations", "description": "Allow quality gates evaluations.", "created": + "2024-09-23T18:00:21.053557+00:00", "group_name": "Software Delivery", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "attributes": {"name": "connection_groups_read", "display_name": "Connection + Groups Read", "description": "Read and use connection groups.", "created": + "2024-09-26T14:35:22.139553+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "83fc9760-7c51-11ef-b846-da7ad0900005", "attributes": {"name": "security_monitoring_cws_agent_rules_actions", + "display_name": "Cloud Workload Security Agent Actions", "description": "Managing + actions on Cloud Workload Security Agent Rules.", "created": "2024-09-26T21:51:42.032795+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005", + "attributes": {"name": "rum_retention_filters_read", "display_name": "RUM + Retention Filters Read", "description": "View RUM Retention filters data.", + "created": "2024-10-02T23:15:17.740884+00:00", "group_name": "Real User Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "300f81cc-8114-11ef-84c0-da7ad0900005", "attributes": {"name": "rum_retention_filters_write", + "display_name": "RUM Retention Filters Write", "description": "Write RUM Retention + filters.", "created": "2024-10-02T23:15:17.740884+00:00", "group_name": "Real + User Monitoring", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005", "attributes": + {"name": "ddsql_editor_read", "display_name": "DDSQL Editor Read", "description": + "View and use DDSQL Editor.", "created": "2024-10-14T13:30:22.950954+00:00", + "group_name": "DDSQL Editor", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "attributes": + {"name": "disaster_recovery_status_read", "display_name": "Datadog Disaster + Recovery Read", "description": "View the disaster recovery status.", "created": + "2024-11-01T21:30:23.309658+00:00", "group_name": "Disaster Recovery", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "attributes": {"name": "disaster_recovery_status_write", "display_name": "Datadog + Disaster Recovery Write", "description": "Update the disaster recovery status.", + "created": "2024-11-01T21:30:23.309658+00:00", "group_name": "Disaster Recovery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "71949074-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "rum_settings_write", + "display_name": "RUM Settings Write", "description": "Write RUM Settings.", + "created": "2024-11-07T13:30:24.249160+00:00", "group_name": "Real User Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "71957e76-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "test_optimization_read", + "display_name": "Test Optimization Read", "description": "View Test Optimization.", + "created": "2024-11-07T13:30:24.249160+00:00", "group_name": "Software Delivery", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "71958024-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "test_optimization_write", + "display_name": "Test Optimization Write", "description": "Manage flaky tests + for Test Optimization.", "created": "2024-11-07T13:30:24.249160+00:00", "group_name": + "Software Delivery", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "attributes": + {"name": "test_optimization_settings_write", "display_name": "Test Optimization + Settings Write", "description": "Create, delete and update Test Optimization + settings.", "created": "2024-11-19T19:06:07.652237+00:00", "group_name": "Software + Delivery", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "attributes": {"name": "security_comments_write", + "display_name": "Security Comments Write", "description": "Write comments + into vulnerabilities.", "created": "2024-11-22T18:40:23.844837+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005", "attributes": + {"name": "security_comments_read", "display_name": "Security Comments Read", + "description": "Read comments of vulnerabilities.", "created": "2024-11-22T18:40:23.844837+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "attributes": {"name": "dashboards_invite_share", "display_name": "Shared + Dashboards Invite-only Write", "description": "Create, modify and delete shared + dashboards with share type ''Invite-only''. These dashboards can only be accessed + by user-specified email addresses.", "created": "2024-12-10T19:11:49.480076+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "attributes": + {"name": "dashboards_embed_share", "display_name": "Shared Dashboards Embed + Write", "description": "Create, modify and delete shared dashboards with share + type ''Embed''. These dashboards can be embedded on user-specified domains.", + "created": "2024-12-10T19:11:49.480076+00:00", "group_name": "Dashboards", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "attributes": {"name": "embeddable_graphs_share", + "display_name": "Shared Graphs Write", "description": "Generate public links + to share embeddable graphs externally.", "created": "2024-12-10T19:11:49.480076+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "attributes": + {"name": "logs_read_workspaces", "display_name": "Read Logs Workspaces", "description": + "View Logs Workspaces.", "created": "2024-12-11T19:21:44.137884+00:00", "group_name": + "Log Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "attributes": + {"name": "logs_write_workspaces", "display_name": "Write Logs Workspaces", + "description": "Create, update, and delete Logs Workspaces.", "created": "2024-12-11T19:21:44.137884+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "attributes": + {"name": "audience_management_read", "display_name": "Profiles Read", "description": + "View Audience Management data.", "created": "2025-01-07T18:36:31.392090+00:00", + "group_name": "Product Analytics", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "attributes": + {"name": "audience_management_write", "display_name": "Profiles Write", "description": + "Modify Audience Management data.", "created": "2025-01-07T18:36:31.392090+00:00", + "group_name": "Product Analytics", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005", + "attributes": {"name": "logs_read_config", "display_name": "Logs Configuration + Read", "description": "Read logs configuration.", "created": "2025-01-14T18:56:50.868001+00:00", + "group_name": "Log Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9b00426a-da87-11ef-9de6-da7ad0900005", "attributes": + {"name": "on_call_read", "display_name": "On-Call Read", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "created": + "2025-01-24T19:15:42.768282+00:00", "group_name": "On-Call", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "9b00ed28-da87-11ef-9de6-da7ad0900005", + "attributes": {"name": "on_call_write", "display_name": "On-Call Write", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "created": "2025-01-24T19:15:42.768282+00:00", "group_name": "On-Call", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "attributes": {"name": "on_call_page", "display_name": "On-Call Page", "description": + "Page On-Call teams and users.", "created": "2025-01-24T19:15:42.768282+00:00", + "group_name": "On-Call", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005", "attributes": + {"name": "error_tracking_read", "display_name": "Error Tracking Read", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "created": "2025-01-30T18:51:27.197297+00:00", "group_name": "Error Tracking", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "attributes": {"name": "on_call_respond", + "display_name": "On-Call Responder", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "created": "2025-02-03T23:42:07.592356+00:00", "group_name": "On-Call", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "attributes": {"name": "process_tags_read", "display_name": "Process Tags + Read", "description": "View Process Tag Rules.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Processes", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "attributes": + {"name": "process_tags_write", "display_name": "Process Tags Write", "description": + "Create, edit and delete Process Tag Rules.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Processes", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "attributes": + {"name": "network_connections_read", "display_name": "Network Connections + Read", "description": "Read Cloud Network Connections.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Cloud Network Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "attributes": {"name": "serverless_aws_instrumentation_read", "display_name": + "Serverless AWS Instrumentation Read", "description": "View remote instrumentation + configuration for serverless workloads.", "created": "2025-02-11T20:36:29.786935+00:00", + "group_name": "Serverless", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "attributes": + {"name": "serverless_aws_instrumentation_write", "display_name": "Serverless + AWS Instrumentation Write", "description": "Add, update, and remove remote + instrumentation configuration for serverless workloads.", "created": "2025-02-11T20:36:29.786935+00:00", + "group_name": "Serverless", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "attributes": + {"name": "coterm_write", "display_name": "CoTerm Write", "description": "Write + terminal recordings.", "created": "2025-02-28T19:06:40.038336+00:00", "group_name": + "CoTerm", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "attributes": {"name": "coterm_read", + "display_name": "CoTerm Read", "description": "Read terminal recordings.", + "created": "2025-02-28T19:06:40.038336+00:00", "group_name": "CoTerm", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "attributes": {"name": "data_streams_monitoring_capture_messages", "display_name": + "Data Streams Monitoring Capture Messages", "description": "Capture messages + from Kafka topics in the Data Streams Monitoring product.", "created": "2025-03-06T18:51:28.120564+00:00", + "group_name": "Data Streams Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "db45b75e-0360-11f0-8ac3-da7ad0900005", + "attributes": {"name": "cloudcraft_read", "display_name": "Cloudcraft Read", + "description": "View infrastructure diagrams in the Cloudcraft product.", + "created": "2025-03-17T18:51:37.899118+00:00", "group_name": "Infrastructure", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "9bb09240-0fee-11f0-958c-da7ad0900005", "attributes": {"name": "ndm_device_profiles_view", + "display_name": "NDM Device Profiles View", "description": "View NDM device + profiles.", "created": "2025-04-02T18:16:33.714415+00:00", "group_name": "Network + Device Monitoring", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "9bb09a10-0fee-11f0-958c-da7ad0900005", "attributes": + {"name": "ndm_device_profiles_edit", "display_name": "NDM Device Profiles + Edit", "description": "Edit NDM device profiles.", "created": "2025-04-02T18:16:33.714415+00:00", + "group_name": "Network Device Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "ndm_devices_read", "display_name": "NDM Read", "description": + "Read NDM data directly. Note: even without this permission, NDM data can + be retrieved via general infrastructure query APIs.", "created": "2025-04-24T21:30:24.005670+00:00", + "group_name": "Network Device Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "ndm_device_tags_write", "display_name": "NDM Device + Tags Write", "description": "Write NDM device tags.", "created": "2025-04-24T21:30:24.005670+00:00", + "group_name": "Network Device Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "orchestration_workload_scaling_read", "display_name": + "Workload Scaling Read", "description": "View workload autoscaling objects + and recommendations.", "created": "2025-04-24T21:30:24.005670+00:00", "group_name": + "Orchestration", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "attributes": {"name": "bits_investigations_read", + "display_name": "Bits Investigations Read", "description": "Read Bits investigations.", + "created": "2025-04-29T18:51:50.984055+00:00", "group_name": "Bits AI", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "attributes": {"name": "sheets_read", "display_name": "Sheets Read", "description": + "View Sheets.", "created": "2025-04-30T23:15:19.683852+00:00", "group_name": + "Sheets", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "fbf841c6-2618-11f0-8595-da7ad0900005", "attributes": {"name": "sheets_write", + "display_name": "Sheets Write", "description": "Create and change Sheets.", + "created": "2025-04-30T23:15:19.683852+00:00", "group_name": "Sheets", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", + "attributes": {"name": "orchestration_autoscaling_manage", "display_name": + "Autoscaling Manage", "description": "Manage autoscaling cluster level configuration.", + "created": "2025-05-19T18:00:40.454044+00:00", "group_name": "Orchestration", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "12465c5e-3a5c-11f0-becd-da7ad0900005", "attributes": {"name": "code_coverage_read", + "display_name": "Code Coverage read", "description": "View Code Coverage data.", + "created": "2025-05-26T18:05:56.647000+00:00", "group_name": "Software Delivery", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "attributes": {"name": "cases_shared_settings_write", + "display_name": "Case Management Shared Settings Write", "description": "Configure + shared settings for Case Management.", "created": "2025-06-17T18:22:00.814348+00:00", + "group_name": "Case and Incident Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", + "attributes": {"name": "actions_interface_run", "display_name": "Actions Interface + Run", "description": "Execute actions in the Bits AI Action Interface.", "created": + "2025-07-01T14:36:49.982499+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", "attributes": {"name": "ai_guard_evaluate", + "display_name": "AI Guard Evaluate", "description": "Evaluate AI Guard rules.", + "created": "2025-07-09T18:30:33.053855+00:00", "group_name": "Application + Security", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "attributes": {"name": "generate_ccm_report_schedules", + "display_name": "Cloud Cost Report Schedules Write", "description": "View + all report schedules and manage only the ones they''ve created.", "created": + "2025-07-10T18:40:35.388063+00:00", "group_name": "Cloud Cost Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "attributes": {"name": "manage_ccm_report_schedules", + "display_name": "Cloud Cost Report Schedules Manage", "description": "View, + create, and fully manage all report schedules across the organization.", "created": + "2025-07-10T18:40:35.388063+00:00", "group_name": "Cloud Cost Management", + "display_type": "write", "restricted": false}}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005", + "attributes": {"name": "Datadog Read Only Role", "managed": true, "created_at": + "2024-10-08T14:32:47.265744+00:00", "modified_at": "2024-10-08T14:32:47.266206+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": + "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", + "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": + "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", + "id": "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": + "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": + "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f33f74be-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": + "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", + "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": + "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", + "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", "id": + "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": + "permissions", "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", + "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", "id": + "3c002814-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", + "id": "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": + "35e4e288-df3b-11ef-886f-da7ad0900005"}, {"type": "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005"}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": + "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", + "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", "id": + "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", + "id": "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": + "12465c5e-3a5c-11f0-becd-da7ad0900005"}]}}}, {"type": "roles", "id": "693fe720-9569-11ef-969d-da7ad0900005", + "attributes": {"name": "Copy of Datadog Admin Role", "managed": false, "created_at": + "2024-10-28T20:15:44.156681+00:00", "modified_at": "2024-10-28T20:15:44.167199+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e"}, {"type": + "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": "permissions", + "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", "id": + "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": + "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": "permissions", + "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", "id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d"}, + {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19"}, {"type": + "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, {"type": "permissions", + "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": "permissions", "id": + "04668d0a-ec5c-11ea-9483-37d199df4587"}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, + {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc"}, {"type": + "permissions", "id": "04668f62-ec5c-11ea-9483-0fe541ab993f"}, {"type": "permissions", + "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02"}, {"type": "permissions", "id": + "046690de-ec5c-11ea-9483-bbcd905fcdca"}, {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf"}, + {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": + "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", + "id": "8b753262-f925-11ea-82fc-93f07fd96e76"}, {"type": "permissions", "id": + "9311970e-f925-11ea-ab4d-1760e76381c1"}, {"type": "permissions", "id": "998aabac-f925-11ea-b43d-8f1f42f3894e"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "72bc07d8-1472-11eb-a97b-8bff514d7382"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e"}, {"type": + "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": "permissions", + "id": "c8654332-2dce-11eb-9145-d33d26eeb65f"}, {"type": "permissions", "id": + "d23cc894-2dce-11eb-9145-37bf7b2dadc2"}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a"}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", "id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, + {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005"}, {"type": + "permissions", "id": "b39fb79a-90af-11eb-9428-da7ad0900005"}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "993b34d6-b16d-11eb-a891-da7ad0900005"}, + {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, {"type": + "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": + "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "c948b30a-16c7-11ec-88cc-da7ad0900005"}, + {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", + "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": + "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005"}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": + "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005"}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "3ad32264-f311-11ec-a058-da7ad0900005"}, {"type": "permissions", + "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005"}, + {"type": "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", + "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": + "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005"}, + {"type": "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": + "8b254e6a-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005"}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": "81e488c0-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", "id": + "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, + {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, + {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, {"type": + "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": + "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", "id": "4316b75c-093f-11ee-98e9-da7ad0900005"}, + {"type": "permissions", "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": + "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", + "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, {"type": "permissions", "id": + "eadf64b2-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": "eadf675a-2199-11ee-9a0e-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005"}, {"type": "permissions", + "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": + "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", + "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": + "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", + "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}, {"type": "permissions", "id": + "f2cc9374-9841-11ee-a301-da7ad0900005"}, {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005"}, + {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, {"type": + "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": + "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005"}, + {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": + "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", + "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": + "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd09204-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", + "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": + "permissions", "id": "ef950332-13a0-11ef-b582-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75066402-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005"}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", + "id": "06e3004e-5987-11ef-89c3-da7ad0900005"}, {"type": "permissions", "id": + "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", + "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005"}, + {"type": "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": + "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", + "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": + "83fc9760-7c51-11ef-b846-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "80ae7688-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": "71949074-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": + "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", + "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": "permissions", "id": + "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005"}, + {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", + "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", + "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", "id": + "35e4e288-df3b-11ef-886f-da7ad0900005"}]}}}, {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005", + "attributes": {"name": "Datadog Standard Role", "managed": true, "created_at": + "2024-10-08T14:32:47.215056+00:00", "modified_at": "2024-10-08T14:32:47.215828+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": + "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", + "id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, + {"type": "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": + "permissions", "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", + "id": "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": + "5de1e178-8536-11ea-968a-2fd9395bff90"}, {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, + {"type": "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": + "permissions", "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", + "id": "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": + "93654d1c-e706-11ea-9a85-d320ff02824d"}, {"type": "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, + {"type": "permissions", "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": + "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, {"type": "permissions", + "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": "permissions", "id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", "id": "9311970e-f925-11ea-ab4d-1760e76381c1"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": + "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", + "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, + {"type": "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "f07e4234-e894-11eb-ab79-da7ad0900005"}, {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": + "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": + "c948b30a-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, + {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": + "permissions", "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "cf873174-574f-11ec-9869-da7ad0900005"}, {"type": "permissions", "id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, + {"type": "permissions", "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": + "permissions", "id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", + "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": "permissions", "id": + "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": + "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", + "id": "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": + "permissions", "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, + {"type": "permissions", "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": + "permissions", "id": "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", + "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": "permissions", "id": + "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": + "81e488c0-db35-11ed-a170-da7ad0900005"}, {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": + "permissions", "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": + "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, + {"type": "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": + "permissions", "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", + "id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, + {"type": "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": + "permissions", "id": "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", + "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", "id": + "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", + "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": + "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, + {"type": "permissions", "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": + "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", + "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": "permissions", "id": + "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, + {"type": "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": + "permissions", "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": + "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, + {"type": "permissions", "id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": + "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09204-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, {"type": + "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75072806-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, + {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": + "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", + "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, + {"type": "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": + "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": "permissions", + "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", "id": + "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": + "permissions", "id": "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", + "id": "3c002814-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": + "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, + {"type": "permissions", "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", + "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": + "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, + {"type": "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": + "permissions", "id": "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", + "id": "9b00ed28-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": + "9b010d44-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005"}, + {"type": "permissions", "id": "7ad4419a-e288-11ef-bbbc-da7ad0900005"}, {"type": + "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", + "id": "4a6cadb6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": + "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, + {"type": "permissions", "id": "23f76dc4-f607-11ef-99cf-da7ad0900005"}, {"type": + "permissions", "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", + "id": "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", "id": + "9bb09240-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", "id": + "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": "fbf841c6-2618-11f0-8595-da7ad0900005"}, + {"type": "permissions", "id": "12465c5e-3a5c-11f0-becd-da7ad0900005"}, {"type": + "permissions", "id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005"}, {"type": "permissions", + "id": "d2c0335e-5688-11f0-ad5e-da7ad0900005"}, {"type": "permissions", "id": + "cc7517b0-5cf2-11f0-85d4-da7ad0900005"}, {"type": "permissions", "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005"}]}}}], + "meta": {"page": {"total_count": 8, "total_filtered_count": 8, "max_page_size": + 1000}}}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/roles?page%5Bnumber%5D=0&page%5Bsize%5D=100 + response: + body: + string: '{"data": [{"id": "693fe720-9569-11ef-969d-da7ad0900005", "type": "roles", + "attributes": {"created_at": "2024-10-28T20:15:44.156681Z", "created_by_handle": + "michael.richey@datadoghq.com", "modified_at": "2024-10-28T20:15:44.167199Z", + "modified_by_handle": "michael.richey@datadoghq.com", "name": "Copy of Datadog + Admin Role", "team_count": 0, "user_count": 2}, "relationships": {"permissions": + {"data": [{"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": "permissions"}, + {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": + "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", + "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions"}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": "permissions"}, + {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "type": "permissions"}, {"id": + "046690de-ec5c-11ea-9483-bbcd905fcdca", "type": "permissions"}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions"}, {"id": + "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions"}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions"}, {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": + "permissions"}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": + "c8654332-2dce-11eb-9145-d33d26eeb65f", "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", + "type": "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, + {"id": "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": + "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": "permissions"}, + {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": "permissions"}, {"id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "type": "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", + "type": "permissions"}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": + "permissions"}, {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, + {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions"}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions"}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, + {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": + "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions"}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": + "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions"}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": + "permissions"}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, + {"id": "f42ef088-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", + "type": "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": + "permissions"}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, + {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions"}, {"id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", + "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", "type": + "permissions"}, {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, + {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": "permissions"}, {"id": + "f40ff7be-966b-11ec-8253-da7ad0900005", "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions"}, + {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", + "type": "permissions"}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions"}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "type": "permissions"}, + {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": + "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", + "type": "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": "permissions"}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152", "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": + "permissions"}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, + {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005", "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions"}, {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": + "permissions"}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, + {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions"}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": + "permissions"}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, + {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": + "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", + "type": "permissions"}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions"}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, + {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions"}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions"}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, + {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", "type": "permissions"}, {"id": + "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": + "permissions"}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions"}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "ef44613e-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": + "permissions"}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", "type": "permissions"}, {"id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions"}, {"id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions"}, + {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": "permissions"}, {"id": + "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions"}, {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": + "permissions"}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, + {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": + "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": + "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, + {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", + "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": "permissions"}, + {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, {"id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions"}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005", "type": "permissions"}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", + "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, + {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": + "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": "permissions"}, + {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": + "c04a7614-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "type": "permissions"}, + {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", "type": "permissions"}, {"id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions"}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", + "type": "permissions"}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "type": + "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": + "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", + "type": "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": + "permissions"}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": "permissions"}, + {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, {"id": + "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions"}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, + {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": + "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions"}, {"id": "83fc9760-7c51-11ef-b846-da7ad0900005", "type": + "permissions"}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, + {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions"}, {"id": + "76e47222-8a30-11ef-8675-da7ad0900005", "type": "permissions"}, {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": + "permissions"}, {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions"}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", "type": "permissions"}, {"id": + "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", + "type": "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": + "permissions"}, {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": "permissions"}, {"id": + "7d962a3c-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", + "type": "permissions"}, {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": + "permissions"}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": + "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", + "type": "permissions"}, {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": + "permissions"}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "7d9641ac-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": + "permissions"}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": + "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions"}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions"}]}}}, {"id": "3020f50c-8582-11ef-ad61-da7ad0900005", "type": + "roles", "attributes": {"created_at": "2024-10-08T14:32:47.147289Z", "managed": + true, "modified_at": "2024-10-08T14:32:47.147932Z", "name": "Datadog Admin + Role", "team_count": 0, "user_count": 7}, "relationships": {"permissions": + {"data": [{"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": "permissions"}, + {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": + "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", + "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions"}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": "permissions"}, + {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "type": "permissions"}, {"id": + "046690de-ec5c-11ea-9483-bbcd905fcdca", "type": "permissions"}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions"}, {"id": + "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions"}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions"}, {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": + "permissions"}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": + "c8654332-2dce-11eb-9145-d33d26eeb65f", "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", + "type": "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, + {"id": "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": + "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": "permissions"}, + {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": "permissions"}, {"id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "type": "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", + "type": "permissions"}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": + "permissions"}, {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, + {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions"}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions"}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, + {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": + "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions"}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": + "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions"}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": + "permissions"}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, + {"id": "f42ef088-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", + "type": "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": + "permissions"}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, + {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions"}, {"id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", + "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", "type": + "permissions"}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, {"id": + "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": "permissions"}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions"}, {"id": + "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": + "permissions"}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": "permissions"}, + {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "type": "permissions"}, {"id": + "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", + "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions"}, + {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": "permissions"}, {"id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": "permissions"}, + {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, {"id": + "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", "type": + "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, {"id": + "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", + "type": "permissions"}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", "type": + "permissions"}, {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions"}, + {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, {"id": + "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", "type": + "permissions"}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, + {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": + "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", + "type": "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions"}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, + {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "type": + "permissions"}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, + {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": + "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", "type": "permissions"}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", + "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": "permissions"}, + {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions"}, {"id": + "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": + "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions"}, {"id": + "80ae7688-9898-11ef-8b23-da7ad0900005", "type": "permissions"}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", + "type": "permissions"}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "75066402-3890-11ef-bbb1-da7ad0900005", "type": "permissions"}, {"id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", + "type": "permissions"}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions"}, {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, + {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, {"id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions"}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions"}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions"}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions"}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, + {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions"}, {"id": + "cf873174-574f-11ec-9869-da7ad0900005", "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", + "type": "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": + "permissions"}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", "type": + "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": "permissions"}, + {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions"}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": + "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions"}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": "permissions"}, {"id": + "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions"}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "type": "permissions"}, {"id": + "48d8ce74-0065-11ee-9c16-da7ad0900005", "type": "permissions"}, {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", + "type": "permissions"}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": + "permissions"}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "type": "permissions"}, + {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, {"id": + "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", + "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": + "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions"}, + {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": "permissions"}, {"id": + "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", + "type": "permissions"}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, + {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, {"id": + "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": + "permissions"}, {"id": "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions"}, + {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": + "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": + "permissions"}, {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, + {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", + "type": "permissions"}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "ccd09f06-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": + "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions"}, {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": "permissions"}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": + "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", + "type": "permissions"}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", "type": + "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, + {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, {"id": + "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, + {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, {"id": + "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", + "type": "permissions"}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "7d9641ac-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": + "permissions"}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, {"id": + "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions"}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions"}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, + {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, {"id": + "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": "permissions"}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions"}, {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions"}, + {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, {"id": + "02e65e42-fabc-11ef-a653-da7ad0900005", "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions"}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions"}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions"}, + {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": + "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions"}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", "type": + "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions"}, + {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", "type": "permissions"}, {"id": + "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions"}]}}}, {"id": + "3032ffb8-8582-11ef-8bad-da7ad0900005", "type": "roles", "attributes": {"created_at": + "2024-10-08T14:32:47.265744Z", "managed": true, "modified_at": "2024-10-08T14:32:47.266206Z", + "name": "Datadog Read Only Role", "team_count": 0, "user_count": 2}, "relationships": + {"permissions": {"data": [{"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": "permissions"}, + {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions"}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", + "type": "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": "permissions"}, + {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, {"id": + "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": "permissions"}, + {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": "permissions"}, {"id": + "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", + "type": "permissions"}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": + "permissions"}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, + {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": "permissions"}, {"id": + "5de1e178-8536-11ea-968a-2fd9395bff90", "type": "permissions"}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": + "permissions"}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": + "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": + "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": "permissions"}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", + "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, + {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, + {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": "permissions"}, {"id": + "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": "permissions"}, {"id": + "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", + "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, + {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, {"id": + "54f98c32-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "type": "permissions"}]}}}, {"id": "302b4f34-8582-11ef-b6a4-da7ad0900005", + "type": "roles", "attributes": {"created_at": "2024-10-08T14:32:47.215056Z", + "managed": true, "modified_at": "2024-10-08T14:32:47.215828Z", "name": "Datadog + Standard Role", "team_count": 0, "user_count": 3}, "relationships": {"permissions": + {"data": [{"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, + {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": + "65eea998-f6a1-11ed-9953-da7ad0900005", "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions"}, {"id": + "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", + "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, + {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, {"id": + "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": "permissions"}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", + "type": "permissions"}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": + "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": "permissions"}, + {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, {"id": + "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", + "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": "permissions"}, {"id": + "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions"}, + {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions"}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions"}, {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, + {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": + "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", + "type": "permissions"}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions"}, {"id": + "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": "permissions"}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", + "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions"}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152", "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": + "permissions"}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, + {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005", "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "04668bde-ec5c-11ea-9483-fb6cb6586c6a", "type": "permissions"}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", + "type": "permissions"}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": + "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", "type": "permissions"}, + {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, {"id": + "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": + "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, + {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": + "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "type": "permissions"}, + {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": "permissions"}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions"}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "11280c24-cce8-11ee-af00-da7ad0900005", "type": "permissions"}, {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions"}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "type": + "permissions"}, {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions"}, + {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", "type": "permissions"}, {"id": + "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", + "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": + "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions"}, + {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": + "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", + "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": "permissions"}, + {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", "type": + "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": "permissions"}, + {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, {"id": + "e31cca10-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions"}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, + {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions"}, {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": + "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": + "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", + "type": "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": + "permissions"}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, + {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions"}, {"id": + "e31e6b54-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": + "permissions"}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, + {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": "permissions"}, {"id": + "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": + "permissions"}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": + "d039cfec-b44f-11ed-8db8-da7ad0900005", "type": "permissions"}, {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", + "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": + "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": "permissions"}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": + "permissions"}, {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, + {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": + "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, + {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions"}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", + "type": "permissions"}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions"}, {"id": + "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, {"id": + "9bb09240-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", + "type": "permissions"}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, + {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions"}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions"}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", + "type": "permissions"}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": + "permissions"}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, + {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": + "54f98c32-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "type": "permissions"}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", "type": + "permissions"}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions"}]}}}], + "meta": {"page": {"total_count": 4, "total_filtered_count": 4}}}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +version: 1 diff --git a/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_import_per_file.frozen b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_import_per_file.frozen new file mode 100644 index 000000000..48a9c5bca --- /dev/null +++ b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_import_per_file.frozen @@ -0,0 +1 @@ +2025-08-27T16:03:01.560876-04:00 \ No newline at end of file diff --git a/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_import_per_file.yaml b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_import_per_file.yaml new file mode 100644 index 000000000..3c192e963 --- /dev/null +++ b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_import_per_file.yaml @@ -0,0 +1,7164 @@ +interactions: +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/hamr + response: + body: + string: '{"data": {"id": "30187db5-8582-11ef-969b-8248c7cda362", "type": "hamr_org_connections", + "attributes": {"HamrStatus": 1, "IsPrimary": true, "ModifiedAt": "2024-10-08 + 15:06:20.300120", "ModifiedBy": "charlie.zhang", "TargetOrgDatacenter": "us5.prod.dog", + "TargetOrgName": "DDR Internal Testing US5", "TargetOrgUuid": "b9e754c7-857e-11ef-afbd-c64ba5fcf2d1"}}}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/rum/applications + response: + body: + string: '{"data": [{"type": "rum_application", "attributes": {"is_active": true, + "org_id": 1000315894, "application_id": "16371816-ab2a-41aa-b12a-40ec4d9628e8", + "created_at": 1756321641996, "created_by_handle": "michael.richey@datadoghq.com", + "product_analytics_replay_sample_rate": 100, "updated_by_handle": "Datadog", + "updated_at": 1756321932553, "tags": [], "product_scales": {"product_analytics_retention_scale": + {"state": "NONE", "last_modified_at": 1756321641996}, "rum_event_processing_scale": + {"state": "ALL", "last_modified_at": 1756321641996}}, "type": "browser", "name": + "Test RUM Application", "remote_config_id": "0256b730-312e-419a-904f-2ab6d9836eba"}, + "id": "16371816-ab2a-41aa-b12a-40ec4d9628e8"}]}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/rum/applications/16371816-ab2a-41aa-b12a-40ec4d9628e8 + response: + body: + string: '{"data": {"type": "rum_application", "attributes": {"updated_by_handle": + "Datadog", "application_id": "16371816-ab2a-41aa-b12a-40ec4d9628e8", "product_analytics_replay_sample_rate": + 100, "created_at": 1756321641996, "product_scales": {"product_analytics_retention_scale": + {"state": "NONE", "last_modified_at": 1756321641996}, "rum_event_processing_scale": + {"state": "ALL", "last_modified_at": 1756321641996}}, "created_by_handle": + "michael.richey@datadoghq.com", "remote_config_id": "0256b730-312e-419a-904f-2ab6d9836eba", + "name": "Test RUM Application", "org_id": 1000315894, "updated_at": 1756321932553, + "type": "browser", "hash": "pubcfef5fa71c23a0c961cc1f1f69db5a32", "tags": + [], "client_token": "pubcfef5fa71c23a0c961cc1f1f69db5a32", "is_active": true}, + "id": "16371816-ab2a-41aa-b12a-40ec4d9628e8"}}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.us5.datadoghq.com/api/v2/hamr + response: + body: + string: '{"data": {"id": "b9e754c7-857e-11ef-afbd-c64ba5fcf2d1", "type": "hamr_org_connections", + "attributes": {"HamrStatus": 1, "IsPrimary": false, "ModifiedAt": "2024-10-08 + 15:06:20.300120", "ModifiedBy": "charlie.zhang", "TargetOrgDatacenter": "eu1.prod.dog", + "TargetOrgName": "DDR Internal Testing eu1", "TargetOrgUuid": "30187db5-8582-11ef-969b-8248c7cda362"}}}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/hamr + response: + body: + string: '{"data": {"id": "30187db5-8582-11ef-969b-8248c7cda362", "type": "hamr_org_connections", + "attributes": {"HamrStatus": 1, "IsPrimary": true, "ModifiedAt": "2024-10-08 + 15:06:20.300120", "ModifiedBy": "charlie.zhang", "TargetOrgDatacenter": "us5.prod.dog", + "TargetOrgName": "DDR Internal Testing US5", "TargetOrgUuid": "b9e754c7-857e-11ef-afbd-c64ba5fcf2d1"}}}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/users?page%5Bnumber%5D=0&page%5Bsize%5D=500 + response: + body: + string: '{"data": [{"type": "users", "id": "6b69113d-6f18-11f0-9ad5-1ad15dd71168", + "attributes": {"name": "Ida Adjivon", "handle": "ida.adjivon@datadoghq.com", + "created_at": "2025-08-01T20:45:12.043180+00:00", "modified_at": "2025-08-01T21:35:25.635446+00:00", + "email": "ida.adjivon@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/d3ff11e3ff125d30050f4dfff3fa614c?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "81f6f2c7-923f-11ef-879a-6ee0822e247c", "attributes": {"name": "Justine + Lo", "handle": "justine.lo@datadoghq.com", "created_at": "2024-10-24T19:38:13.281489+00:00", + "modified_at": "2024-10-25T14:18:33.835459+00:00", "email": "justine.lo@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/7d75964971289cf50e6090d76b45e3f6?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "b301b340-8582-11ef-ba31-3219ecc6cb25", "attributes": {"name": "Louis + Cheynel", "handle": "louis.cheynel@datadoghq.com", "created_at": "2024-10-08T14:36:26.725077+00:00", + "modified_at": "2025-02-19T21:12:46.164959+00:00", "email": "louis.cheynel@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/791d1a56daa2bd0f5bb25ed286d3f8bb?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": true, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Disabled", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "30533c3c-8582-11ef-938f-cecf6f9ed4ad", "attributes": {"name": "Michael + Richey", "handle": "michael.richey+ddreu1@datadoghq.com", "created_at": "2024-10-08T14:32:47.477901+00:00", + "modified_at": "2024-10-08T14:32:47.477901+00:00", "email": "michael.richey+ddreu1@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/b5b0452adbe01caf57c1e5f6fb97a631?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "693fe720-9569-11ef-969d-da7ad0900005"}, {"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, + "org": {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "98fe080d-8fda-11ef-aa03-c6ac9d6cb0b0", "attributes": + {"name": "Michael Richey", "handle": "michael.richey@datadoghq.com", "created_at": + "2024-10-21T18:30:50.420260+00:00", "modified_at": "2025-03-03T15:47:53.789029+00:00", + "email": "michael.richey@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/3ae7b2387f1a71bbb857d6f03993bdf3?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "b32e572e-8582-11ef-98fe-f2a776cd34b8", "attributes": {"name": "Ron + Hay", "handle": "ron.hay@datadoghq.com", "created_at": "2024-10-08T14:36:27.017641+00:00", + "modified_at": "2025-06-10T13:33:23.138895+00:00", "email": "ron.hay@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/1c9c2a5daac55fc5ae86178cd5e7b9c2?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "265f9002-9b9e-11ef-9152-56a58ecd5b70", "attributes": + {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com", "created_at": + "2024-11-05T17:48:22.271026+00:00", "modified_at": "2025-01-23T19:52:06.634848+00:00", + "email": "sherzod.karimov@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/993f2cc00ad75833dbc76f2a93bb227d?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "693fe720-9569-11ef-969d-da7ad0900005"}, {"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "b32f283f-8582-11ef-be6e-1e59aae1ca5b", "attributes": + {"name": "Tim Alexander", "handle": "tim.alexander@datadoghq.com", "created_at": + "2024-10-08T14:36:27.022996+00:00", "modified_at": "2024-10-08T15:29:54.659973+00:00", + "email": "tim.alexander@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/6269dae26686287d4bdd307a26e33f34?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}], + "included": [{"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005", + "attributes": {"name": "Datadog Admin Role", "managed": true, "created_at": + "2024-10-08T14:32:47.147289+00:00", "modified_at": "2024-10-08T14:32:47.147932+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e"}, {"type": + "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": "permissions", + "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", "id": + "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": + "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": "permissions", + "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", "id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d"}, + {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19"}, {"type": + "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, {"type": "permissions", + "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": "permissions", "id": + "04668d0a-ec5c-11ea-9483-37d199df4587"}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, + {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc"}, {"type": + "permissions", "id": "04668f62-ec5c-11ea-9483-0fe541ab993f"}, {"type": "permissions", + "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02"}, {"type": "permissions", "id": + "046690de-ec5c-11ea-9483-bbcd905fcdca"}, {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf"}, + {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": + "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", + "id": "8b753262-f925-11ea-82fc-93f07fd96e76"}, {"type": "permissions", "id": + "9311970e-f925-11ea-ab4d-1760e76381c1"}, {"type": "permissions", "id": "998aabac-f925-11ea-b43d-8f1f42f3894e"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "72bc07d8-1472-11eb-a97b-8bff514d7382"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e"}, {"type": + "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": "permissions", + "id": "c8654332-2dce-11eb-9145-d33d26eeb65f"}, {"type": "permissions", "id": + "d23cc894-2dce-11eb-9145-37bf7b2dadc2"}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a"}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", "id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, + {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005"}, {"type": + "permissions", "id": "b39fb79a-90af-11eb-9428-da7ad0900005"}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "993b34d6-b16d-11eb-a891-da7ad0900005"}, + {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, {"type": + "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": + "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "c948b30a-16c7-11ec-88cc-da7ad0900005"}, + {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", + "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": + "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005"}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": + "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005"}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "3ad32264-f311-11ec-a058-da7ad0900005"}, {"type": "permissions", + "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005"}, + {"type": "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", + "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": + "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005"}, + {"type": "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": + "8b254e6a-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005"}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": "81e488c0-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", "id": + "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, + {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, + {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, {"type": + "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": + "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", "id": "4316b75c-093f-11ee-98e9-da7ad0900005"}, + {"type": "permissions", "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": + "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", + "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, {"type": "permissions", "id": + "eadf64b2-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": "eadf675a-2199-11ee-9a0e-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005"}, {"type": "permissions", + "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": + "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", + "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": + "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", + "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}, {"type": "permissions", "id": + "f2cc9374-9841-11ee-a301-da7ad0900005"}, {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005"}, + {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, {"type": + "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": + "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005"}, + {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": + "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", + "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": + "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd09204-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", + "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": + "permissions", "id": "ef950332-13a0-11ef-b582-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75066402-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005"}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", + "id": "06e3004e-5987-11ef-89c3-da7ad0900005"}, {"type": "permissions", "id": + "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", + "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005"}, + {"type": "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": + "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", + "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": + "83fc9760-7c51-11ef-b846-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "80ae7688-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": "71949074-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": + "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", + "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": "permissions", "id": + "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005"}, + {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", + "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", + "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", "id": + "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": "9b00ed28-da87-11ef-9de6-da7ad0900005"}, + {"type": "permissions", "id": "9b010d44-da87-11ef-9de6-da7ad0900005"}, {"type": + "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005"}, {"type": "permissions", + "id": "7ad4419a-e288-11ef-bbbc-da7ad0900005"}, {"type": "permissions", "id": + "4a6c29d6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": "4a6cadb6-e806-11ef-8710-da7ad0900005"}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": + "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", + "id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", "id": + "23f76dc4-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, + {"type": "permissions", "id": "02e65e42-fabc-11ef-a653-da7ad0900005"}, {"type": + "permissions", "id": "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", + "id": "9bb09240-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": + "9bb09a10-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", "id": + "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": "fbf841c6-2618-11f0-8595-da7ad0900005"}, + {"type": "permissions", "id": "2cead6ec-34db-11f0-9eb2-da7ad0900005"}, {"type": + "permissions", "id": "12465c5e-3a5c-11f0-becd-da7ad0900005"}, {"type": "permissions", + "id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005"}, {"type": "permissions", "id": + "d2c0335e-5688-11f0-ad5e-da7ad0900005"}, {"type": "permissions", "id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005"}, + {"type": "permissions", "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005"}, {"type": + "permissions", "id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005"}]}}}, {"type": + "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "attributes": + {"name": "logs_read_index_data", "display_name": "Logs Read Index Data", "description": + "Read log data, possibly scoped to one or more indexes. In order to read log + data, a user must have both this permission and Logs Read Data. This permission + can be granted in a limited capacity per index from the Logs interface or + APIs. If granted via the Roles interface or API the permission has global + scope. Restrictions are limited to the Log Management product.", "created": + "2018-10-31T14:00:23.650159+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", + "attributes": {"name": "logs_modify_indexes", "display_name": "Logs Modify + Indexes", "description": "Read and modify all indexes in your account. This + includes the ability to grant the Logs Read Index Data and Logs Write Exclusion + Filters permission to other roles, for some or all indexes.", "created": "2018-10-31T14:00:23.664332+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "attributes": + {"name": "logs_live_tail", "display_name": "Logs Live Tail", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "created": "2018-10-31T14:00:23.676180+00:00", "group_name": + "Log Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "attributes": + {"name": "logs_write_exclusion_filters", "display_name": "Logs Write Exclusion + Filters", "description": "Add and change exclusion filters for all or some + log indexes. Can be granted in a limited capacity per index to specific roles + via the Logs interface or API. If granted from the Roles interface or API, + the permission has global scope.", "created": "2018-10-31T14:00:23.699543+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "attributes": + {"name": "logs_write_pipelines", "display_name": "Logs Write Pipelines", "description": + "Add and change log pipeline configurations, including the ability to grant + the Logs Write Processors permission to other roles, for some or all pipelines.", + "created": "2018-10-31T14:00:23.710821+00:00", "group_name": "Log Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "505f4538-dd15-11e8-9308-47a4732f715f", "attributes": {"name": "logs_write_processors", + "display_name": "Logs Write Processors", "description": "Add and change some + or all log processor configurations. Can be granted in a limited capacity + per pipeline to specific roles via the Logs interface or API. If granted via + the Roles interface or API the permission has global scope.", "created": "2018-10-31T14:00:24.726927+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e", "attributes": + {"name": "logs_write_archives", "display_name": "Logs Write Archives", "description": + "Add and edit Log Archives.", "created": "2018-10-31T14:00:24.730570+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "attributes": + {"name": "logs_generate_metrics", "display_name": "Logs Generate Metrics", + "description": "Create custom metrics from logs.", "created": "2019-07-25T12:37:55.949477+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "attributes": + {"name": "dashboards_read", "display_name": "Dashboards Read", "description": + "View dashboards.", "created": "2019-09-10T14:41:53.120685+00:00", "group_name": + "Dashboards", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "attributes": {"name": "dashboards_write", + "display_name": "Dashboards Write", "description": "Create and change dashboards.", + "created": "2019-09-10T14:41:53.136336+00:00", "group_name": "Dashboards", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f", "attributes": {"name": "dashboards_public_share", + "display_name": "Shared Dashboards Public Write", "description": "Create, + modify and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "created": "2019-09-10T14:41:53.150548+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "attributes": + {"name": "monitors_read", "display_name": "Monitors Read", "description": + "View monitors.", "created": "2019-09-16T18:49:59.270746+00:00", "group_name": + "Monitors", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "attributes": {"name": "monitors_write", + "display_name": "Monitors Write", "description": "Edit and delete individual + monitors.", "created": "2019-09-16T18:50:07.944781+00:00", "group_name": "Monitors", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "d3159858-d8b2-11e9-a336-e363d6ef331b", "attributes": {"name": "monitors_downtime", + "display_name": "Manage Downtimes", "description": "Set downtimes to suppress + alerts from any monitor in an organization. Mute and unmute monitors. The + ability to write monitors is not required to set downtimes.", "created": "2019-09-16T18:50:16.869407+00:00", + "group_name": "Monitors", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "attributes": + {"name": "logs_read_data", "display_name": "Logs Read Data", "description": + "Read log data. In order to read log data, a user must have both this permission + and Logs Read Index Data. This permission can be restricted with restriction + queries. Restrictions are limited to the Log Management product.", "created": + "2020-04-06T16:29:12.337169+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "attributes": {"name": "logs_read_archives", "display_name": "Logs Read Archives", + "description": "Read Log Archives location and use it for rehydration.", "created": + "2020-04-23T07:45:13.801938+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "attributes": {"name": "security_monitoring_rules_read", "display_name": "Security + Rules Read", "description": "Read Detection Rules.", "created": "2020-06-09T13:55:12.166762+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", + "attributes": {"name": "security_monitoring_rules_write", "display_name": + "Security Rules Write", "description": "Create and edit Detection Rules.", + "created": "2020-06-09T13:55:21.036857+00:00", "group_name": "Cloud Security + Platform", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9", "attributes": {"name": "security_monitoring_signals_read", + "display_name": "Security Signals Read", "description": "View Security Signals.", + "created": "2020-06-09T13:55:29.398066+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", "attributes": {"name": "security_monitoring_signals_write", + "display_name": "Security Signals Write", "description": "Modify Security + Signals.", "created": "2021-08-17T15:11:19.976019+00:00", "group_name": "Cloud + Security Platform", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d", "attributes": + {"name": "user_access_invite", "display_name": "User Access Invite", "description": + "Invite other users to your organization.", "created": "2020-08-25T19:10:01.692112+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", + "attributes": {"name": "user_access_manage", "display_name": "User Access + Manage", "description": "Disable users, manage user roles, manage SAML-to-role + mappings, and configure logs restriction queries.", "created": "2020-08-25T19:10:12.116164+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30", + "attributes": {"name": "user_app_keys", "display_name": "User App Keys", "description": + "View and manage Application Keys owned by the user.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "attributes": {"name": "org_app_keys_read", "display_name": "Org App Keys + Read", "description": "View Application Keys owned by all users in the organization.", + "created": "2020-09-01T14:04:14.317866+00:00", "group_name": "API and Application + Keys", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "04668d0a-ec5c-11ea-9483-37d199df4587", "attributes": {"name": "org_app_keys_write", + "display_name": "Org App Keys Write", "description": "Manage Application Keys + owned by all users in the organization.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "attributes": {"name": "synthetics_private_location_read", "display_name": + "Synthetics Private Locations Read", "description": "View, search, and use + Synthetics private locations.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Synthetic Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", + "attributes": {"name": "synthetics_private_location_write", "display_name": + "Synthetics Private Locations Write", "description": "Create and delete private + locations in addition to having access to the associated installation guidelines.", + "created": "2020-09-01T14:04:14.317866+00:00", "group_name": "Synthetic Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "04668f62-ec5c-11ea-9483-0fe541ab993f", "attributes": {"name": "billing_read", + "display_name": "Billing Read", "description": "View your organization''s + subscription and payment method but not make edits.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "attributes": + {"name": "billing_edit", "display_name": "Billing Edit", "description": "Manage + your organization''s subscription and payment method.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "attributes": {"name": "usage_read", "display_name": "Usage Read", "description": + "View your organization''s usage and usage attribution.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf", "attributes": + {"name": "usage_edit", "display_name": "Usage Edit", "description": "Manage + your organization''s usage attribution set-up.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "attributes": {"name": "metric_tags_write", "display_name": "Metric Tags Write", + "description": "Edit and save tag configurations for custom metrics.", "created": + "2020-09-01T14:04:14.317866+00:00", "group_name": "Metrics", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "attributes": {"name": "logs_write_historical_view", "display_name": "Logs + Write Historical Views", "description": "Rehydrate logs from Archives.", "created": + "2020-09-16T08:42:43.928080+00:00", "group_name": "Log Management", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "attributes": {"name": "audit_logs_read", "display_name": "Audit Trail Read", + "description": "View Audit Trail in your organization.", "created": "2020-09-17T20:37:03.702585+00:00", + "group_name": "Compliance", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9311970e-f925-11ea-ab4d-1760e76381c1", "attributes": + {"name": "api_keys_read", "display_name": "API Keys Read", "description": + "List and retrieve the key values of all API Keys in your organization.", + "created": "2020-09-17T20:37:16.471514+00:00", "group_name": "API and Application + Keys", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "attributes": {"name": "api_keys_write", + "display_name": "API Keys Write", "description": "Create and rename API Keys + for your organization.", "created": "2020-09-17T20:37:27.331389+00:00", "group_name": + "API and Application Keys", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "attributes": + {"name": "synthetics_global_variable_read", "display_name": "Synthetics Global + Variable Read", "description": "View, search, and use Synthetics global variables.", + "created": "2020-09-17T20:37:50.165103+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", "attributes": {"name": "synthetics_global_variable_write", + "display_name": "Synthetics Global Variable Write", "description": "Create, + edit, and delete global variables for Synthetics.", "created": "2020-09-17T20:38:01.966230+00:00", + "group_name": "Synthetic Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "b6858556-f925-11ea-9222-1f47b8677b93", + "attributes": {"name": "synthetics_read", "display_name": "Synthetics Read", + "description": "List and view configured Synthetic tests and test results.", + "created": "2020-09-17T20:38:15.951574+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "attributes": {"name": "synthetics_write", + "display_name": "Synthetics Write", "description": "Create, edit, and delete + Synthetic tests.", "created": "2020-09-17T20:38:27.421632+00:00", "group_name": + "Synthetic Monitoring", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "attributes": + {"name": "synthetics_default_settings_read", "display_name": "Synthetics Default + Settings Read", "description": "View the default settings for Synthetic Monitoring.", + "created": "2020-09-17T20:38:49.527477+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "cf223140-f925-11ea-a3a2-df370532bcf7", "attributes": {"name": "synthetics_default_settings_write", + "display_name": "Synthetics Default Settings Write", "description": "Edit + the default settings for Synthetic Monitoring.", "created": "2020-09-17T20:38:57.244987+00:00", + "group_name": "Synthetic Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", + "attributes": {"name": "logs_write_facets", "display_name": "Logs Write Facets", + "description": "Create or edit Log Facets.", "created": "2020-10-14T12:54:16.607129+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "attributes": + {"name": "service_account_write", "display_name": "Service Account Write", + "description": "Create, disable, and use Service Accounts in your organization.", + "created": "2020-10-22T14:25:34.868208+00:00", "group_name": "Access Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "attributes": {"name": "apm_read", + "display_name": "APM Read", "description": "Read and query APM and Trace Analytics.", + "created": "2020-11-23T20:59:02.902692+00:00", "group_name": "APM", "display_type": + "read", "restricted": true}}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "attributes": {"name": "apm_retention_filter_read", "display_name": "APM Retention + Filters Read", "description": "Read trace retention filters. A user with this + permission can view the retention filters page, list of filters, their statistics, + and creation info.", "created": "2020-11-23T20:59:11.833795+00:00", "group_name": + "APM", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "attributes": {"name": "apm_retention_filter_write", + "display_name": "APM Retention Filters Write", "description": "Create, edit, + and delete trace retention filters. A user with this permission can create + new retention filters, and update or delete to existing retention filters.", + "created": "2020-11-23T20:59:19.531425+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", + "attributes": {"name": "apm_service_ingest_read", "display_name": "APM Service + Ingest Read", "description": "Access service ingestion pages. A user with + this permission can view the service ingestion page, list of root services, + their statistics, and creation info.", "created": "2020-11-23T20:59:25.933546+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "c8654332-2dce-11eb-9145-d33d26eeb65f", "attributes": + {"name": "apm_service_ingest_write", "display_name": "APM Service Ingest Write", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "created": "2020-11-23T20:59:31.352238+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "attributes": + {"name": "apm_apdex_manage_write", "display_name": "APM Apdex Manage Write", + "description": "Set Apdex T value on any service. A user with this permission + can set the T value from the Apdex graph on the service page.", "created": + "2020-11-23T20:59:47.864214+00:00", "group_name": "APM", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c", + "attributes": {"name": "apm_tag_management_write", "display_name": "APM Tag + Management Write", "description": "Edit second primary tag selection. A user + with this permission can modify the second primary tag dropdown in the APM + settings page.", "created": "2020-11-23T21:00:01.066421+00:00", "group_name": + "APM", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "attributes": {"name": "apm_primary_operation_write", + "display_name": "APM Primary Operation Write", "description": "Edit the operation + name value selection. A user with this permission can modify the operation + name list in the APM settings page and the operation name controller on the + service page.", "created": "2020-11-23T21:00:18.680068+00:00", "group_name": + "APM", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", "attributes": {"name": "audit_logs_write", + "display_name": "Audit Trail Write", "description": "Configure Audit Trail + in your organization.", "created": "2020-12-01T19:12:04.940111+00:00", "group_name": + "Compliance", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", "attributes": {"name": "rum_apps_write", + "display_name": "RUM Apps Write", "description": "Create, edit, and delete + RUM applications. Creating a RUM application automatically generates a Client + Token. In order to create Client Tokens directly, a user needs the Client + Tokens Write permission.", "created": "2021-01-11T19:07:15.721075+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "attributes": {"name": "debugger_write", "display_name": "Dynamic Instrumentation + Write", "description": "Edit Dynamic Instrumentation configuration. Create + or modify Dynamic Instrumentation probes that do not capture function state.", + "created": "2021-03-08T15:07:07.319753+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "attributes": {"name": "debugger_read", "display_name": "Dynamic Instrumentation + Read", "description": "View Dynamic Instrumentation configuration.", "created": + "2021-03-08T15:07:07.333513+00:00", "group_name": "APM", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005", + "attributes": {"name": "data_scanner_read", "display_name": "Data Scanner + Read", "description": "View Sensitive Data Scanner configurations and scanning + results.", "created": "2021-03-29T16:56:27.205044+00:00", "group_name": "Compliance", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "attributes": {"name": "data_scanner_write", + "display_name": "Data Scanner Write", "description": "Edit Sensitive Data + Scanner configurations.", "created": "2021-03-29T16:56:27.219481+00:00", "group_name": + "Compliance", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "attributes": {"name": "org_management", + "display_name": "Org Management", "description": "Edit org configurations, + including authentication and certain security preferences such as configuring + SAML, renaming an org, configuring allowed login methods, creating child orgs, + subscribing & unsubscribing from apps in the marketplace, and enabling & disabling + Remote Configuration for the entire organization.", "created": "2021-04-23T17:51:22.555499+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "99397470-b16d-11eb-a891-da7ad0900005", + "attributes": {"name": "security_monitoring_filters_read", "display_name": + "Security Filters Read", "description": "Read Security Filters.", "created": + "2021-05-10T08:56:24.514661+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "993b34d6-b16d-11eb-a891-da7ad0900005", "attributes": {"name": "security_monitoring_filters_write", + "display_name": "Security Filters Write", "description": "Create, edit, and + delete Security Filters.", "created": "2021-05-10T08:56:24.527411+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", + "attributes": {"name": "incident_read", "display_name": "Incidents Read", + "description": "View incidents in Datadog.", "created": "2021-06-22T15:11:07.986072+00:00", + "group_name": "Case and Incident Management", "display_type": "read", "restricted": + true}}, {"type": "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005", + "attributes": {"name": "incident_write", "display_name": "Incidents Write", + "description": "Create, view, and manage incidents in Datadog.", "created": + "2021-06-22T15:11:08.003239+00:00", "group_name": "Case and Incident Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "122f7508-d36c-11eb-b2bf-da7ad0900005", "attributes": {"name": "incident_settings_read", + "display_name": "Incident Settings Read", "description": "View Incident Settings.", + "created": "2021-06-22T15:11:07.995787+00:00", "group_name": "Case and Incident + Management", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "attributes": {"name": "incident_settings_write", + "display_name": "Incident Settings Write", "description": "Configure Incident + Settings.", "created": "2021-06-22T15:11:07.999194+00:00", "group_name": "Case + and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005", "attributes": + {"name": "appsec_event_rule_read", "display_name": "Application Security Management + Event Rules Read", "description": "View Application Security Management Event + Rules.", "created": "2021-07-19T13:26:35.252432+00:00", "group_name": "Cloud + Security Platform", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005", "attributes": + {"name": "appsec_event_rule_write", "display_name": "Application Security + Management Event Rules Write", "description": "Edit Application Security Management + Event Rules.", "created": "2021-07-19T13:26:35.260787+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "attributes": + {"name": "rum_apps_read", "display_name": "RUM Apps Read", "description": + "View RUM Applications data.", "created": "2021-08-02T09:46:22.567371+00:00", + "group_name": "Real User Monitoring", "display_type": "read", "restricted": + true}}, {"type": "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", + "attributes": {"name": "rum_session_replay_read", "display_name": "RUM Session + Replay Read", "description": "View Session Replays.", "created": "2021-08-02T09:46:22.572685+00:00", + "group_name": "Real User Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "c94811de-16c7-11ec-88cc-da7ad0900005", + "attributes": {"name": "security_monitoring_notification_profiles_read", "display_name": + "Security Notification Rules Read", "description": "Read Notification Rules.", + "created": "2021-09-16T08:26:27.288070+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "attributes": {"name": "security_monitoring_notification_profiles_write", + "display_name": "Security Notification Rules Write", "description": "Create, + edit, and delete Notification Rules.", "created": "2021-09-16T08:26:27.292835+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005", + "attributes": {"name": "apm_generate_metrics", "display_name": "APM Generate + Metrics", "description": "Create custom metrics from spans.", "created": "2021-09-16T15:31:28.639581+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005", "attributes": + {"name": "security_monitoring_cws_agent_rules_read", "display_name": "Cloud + Workload Security Agent Rules Read", "description": "Read Cloud Workload Security + Agent Rules.", "created": "2021-11-17T10:41:45.755009+00:00", "group_name": + "Cloud Security Platform", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "f5e1489a-4792-11ec-944b-da7ad0900005", "attributes": + {"name": "security_monitoring_cws_agent_rules_write", "display_name": "Cloud + Workload Security Agent Rules Write", "description": "Create, edit, and delete + Cloud Workload Security Agent Rules.", "created": "2021-11-17T10:41:45.761956+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", + "attributes": {"name": "apm_pipelines_write", "display_name": "APM Pipelines + Write", "description": "Add and change APM pipeline configurations.", "created": + "2021-12-06T14:51:25.389398+00:00", "group_name": "APM", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005", + "attributes": {"name": "apm_pipelines_read", "display_name": "APM Pipelines + Read", "description": "View APM pipeline configurations.", "created": "2021-12-07T11:21:23.741014+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "attributes": + {"name": "observability_pipelines_read", "display_name": "Observability Pipelines + Read", "description": "View pipelines in your organization.", "created": "2021-12-09T00:11:41.567875+00:00", + "group_name": "Observability Pipelines", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "attributes": {"name": "observability_pipelines_write", "display_name": "Observability + Pipelines Write", "description": "Edit pipelines in your organization.", "created": + "2021-12-09T00:11:41.572883+00:00", "group_name": "Observability Pipelines", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "e31e0056-8502-11ec-b266-da7ad0900005", "attributes": {"name": "workflows_read", + "display_name": "Workflows Read", "description": "View workflows.", "created": + "2022-02-03T15:06:38.846399+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "e31f0230-8502-11ec-b266-da7ad0900005", "attributes": {"name": "workflows_write", + "display_name": "Workflows Write", "description": "Create, edit, and delete + workflows.", "created": "2022-02-03T15:06:38.853003+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "workflows_run", "display_name": "Workflows Run", "description": + "Run workflows.", "created": "2022-02-03T15:06:38.849099+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "connections_read", "display_name": "Connections Read", + "description": "List and view available connections. Connections contain secrets + that cannot be revealed.", "created": "2022-02-03T15:06:38.837721+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "connections_write", "display_name": "Connections Write", + "description": "Create and delete connections.", "created": "2022-02-03T15:06:38.843395+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", + "attributes": {"name": "notebooks_read", "display_name": "Notebooks Read", + "description": "View notebooks.", "created": "2022-03-02T18:51:33.435297+00:00", + "group_name": "Notebooks", "display_type": "read", "restricted": true}}, {"type": + "permissions", "id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "attributes": + {"name": "notebooks_write", "display_name": "Notebooks Write", "description": + "Create and change notebooks.", "created": "2022-03-02T18:51:33.439640+00:00", + "group_name": "Notebooks", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005", "attributes": + {"name": "logs_delete_data", "display_name": "Logs Delete Data", "description": + "Delete data from your Logs, including entire indexes.", "created": "2022-02-25T18:51:34.198635+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005", "attributes": + {"name": "rum_generate_metrics", "display_name": "RUM Generate Metrics", "description": + "Create custom metrics from RUM events.", "created": "2022-04-11T16:26:30.469616+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "attributes": {"name": "aws_configurations_manage", "display_name": "AWS Configurations + Manage", "description": "Add or remove but not edit AWS integration configurations.", + "created": "2022-04-26T20:21:48.019179+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "7fbe2266-c59e-11ec-90fb-da7ad0900005", "attributes": {"name": "azure_configurations_manage", + "display_name": "Azure Configurations Manage", "description": "Add or remove + but not edit Azure integration configurations.", "created": "2022-04-26T20:21:48.031171+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "attributes": + {"name": "gcp_configurations_manage", "display_name": "GCP Configurations + Manage", "description": "Add or remove but not edit GCP integration configurations.", + "created": "2022-04-26T20:21:48.027662+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "attributes": {"name": "manage_integrations", + "display_name": "Integrations Manage", "description": "Install, uninstall, + and configure integrations.", "created": "2022-04-26T20:21:48.034453+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "attributes": + {"name": "usage_notifications_read", "display_name": "Usage Notifications + Read", "description": "Receive notifications and view currently configured + notification settings.", "created": "2022-05-17T13:56:29.090665+00:00", "group_name": + "Billing and Usage", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "attributes": + {"name": "usage_notifications_write", "display_name": "Usage Notifications + Write", "description": "Receive notifications and configure notification settings.", + "created": "2022-05-17T13:56:29.094457+00:00", "group_name": "Billing and + Usage", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "attributes": {"name": "generate_dashboard_reports", + "display_name": "Dashboards Report Write", "description": "Schedule PDF reports + from a dashboard.", "created": "2022-06-06T18:15:47.465864+00:00", "group_name": + "Dashboards", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "f33f74be-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_read", + "display_name": "SLOs Read", "description": "View SLOs and status corrections.", + "created": "2022-06-08T16:20:45.638848+00:00", "group_name": "Service Level + Objectives", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "f340161c-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_write", + "display_name": "SLOs Write", "description": "Create, edit, and delete SLOs.", + "created": "2022-06-08T16:20:45.643085+00:00", "group_name": "Service Level + Objectives", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_corrections", + "display_name": "SLOs Status Corrections", "description": "Apply, edit, and + delete SLO status corrections. A user with this permission can make status + corrections, even if they do not have permission to edit those SLOs.", "created": + "2022-06-08T16:20:45.632820+00:00", "group_name": "Service Level Objectives", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "3ad32264-f311-11ec-a058-da7ad0900005", "attributes": {"name": "monitor_config_policy_write", + "display_name": "Monitor Configuration Policy Write", "description": "Create, + update, and delete monitor configuration policies.", "created": "2022-06-23T16:26:26.854058+00:00", + "group_name": "Monitors", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f42ef088-173a-11ed-8654-da7ad0900005", "attributes": + {"name": "apm_service_catalog_write", "display_name": "Service Catalog Write", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "created": "2022-08-08T16:55:49.060954+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "attributes": + {"name": "apm_service_catalog_read", "display_name": "Service Catalog Read", + "description": "View service catalog and service definitions.", "created": + "2022-08-08T16:55:49.055930+00:00", "group_name": "APM", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", + "attributes": {"name": "logs_write_forwarding_rules", "display_name": "Logs + Write Forwarding Rules", "description": "Add and edit forwarding destinations + and rules for logs.", "created": "2022-08-08T21:30:48.328740+00:00", "group_name": + "Log Management", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005", "attributes": + {"name": "connections_resolve", "display_name": "Connections Resolve", "description": + "Resolve connections.", "created": "2022-08-25T15:26:23.943459+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_protect_read", "display_name": "Application + Security Management Protect Read", "description": "View blocked attackers.", + "created": "2022-10-27T09:25:59.057166+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "attributes": {"name": "appsec_protect_write", + "display_name": "Application Security Management Protect Write", "description": + "Manage blocked attackers.", "created": "2022-10-27T09:25:59.060959+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_activation_read", "display_name": "Application + Security Management 1-click Enablement Read", "description": "View whether + Application Security Management has been enabled or disabled on services via + 1-click enablement with Remote Configuration.", "created": "2022-10-27T09:25:59.047444+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_activation_write", "display_name": "Application + Security Management 1-click Enablement Write", "description": "Enable or disable + Application Security Management on services via 1-click enablement.", "created": + "2022-10-27T09:25:59.053394+00:00", "group_name": "Cloud Security Platform", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "c0490360-5a12-11ed-adbe-da7ad0900005", "attributes": {"name": "apps_run", + "display_name": "Apps View", "description": "View and run Apps in App Builder.", + "created": "2022-11-01T18:26:50.026179+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005", "attributes": + {"name": "apps_write", "display_name": "Apps Write", "description": "Create, + edit, and delete Apps in App Builder.", "created": "2022-11-01T18:26:50.036655+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "926612da-7a4c-11ed-b809-da7ad0900005", + "attributes": {"name": "cases_read", "display_name": "Cases Read", "description": + "View Cases.", "created": "2022-12-12T18:41:21.060748+00:00", "group_name": + "Case and Incident Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "attributes": + {"name": "cases_write", "display_name": "Cases Write", "description": "Create + and update cases.", "created": "2022-12-12T18:41:21.067150+00:00", "group_name": + "Case and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "attributes": + {"name": "apm_remote_configuration_write", "display_name": "APM Remote Configuration + Write", "description": "Edit APM Remote Configuration.", "created": "2022-12-12T20:21:20.723147+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "attributes": + {"name": "apm_remote_configuration_read", "display_name": "APM Remote Configuration + Read", "description": "View APM Remote Configuration.", "created": "2022-12-12T20:21:20.716560+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "attributes": + {"name": "ci_visibility_read", "display_name": "CI Visibility Read", "description": + "View CI Visibility.", "created": "2022-12-13T16:02:28.814628+00:00", "group_name": + "Software Delivery", "display_type": "read", "restricted": true}}, {"type": + "permissions", "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "attributes": + {"name": "ci_visibility_write", "display_name": "CI Visibility Tests Write", + "description": "Edit flaky tests and delete Test Services.", "created": "2022-12-13T16:02:28.821529+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "ci_provider_settings_write", "display_name": "CI Provider + Settings Write", "description": "Edit CI Provider settings. Manage GitHub + accounts and repositories for enabling CI Visibility and job logs collection.", + "created": "2022-12-13T16:02:28.806929+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "attributes": {"name": "ci_visibility_settings_write", + "display_name": "CI Visibility Settings Write", "description": "Configure + CI Visibility settings. Set a repository default branch, enable GitHub comments, + and delete test services.", "created": "2022-12-13T16:02:28.818035+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "intelligent_test_runner_activation_write", "display_name": + "Intelligent Test Runner Activation Write", "description": "Deprecated. Enable + or disable Intelligent Test Runner.", "created": "2022-12-13T16:02:28.826271+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "intelligent_test_runner_settings_write", "display_name": + "Intelligent Test Runner Settings Write", "description": "Deprecated. Edit + Intelligent Test Runner settings, such as modifying ITR excluded branch list.", + "created": "2022-12-13T16:02:28.830112+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "55f64460-7d61-11ed-9c36-da7ad0900005", "attributes": {"name": "continuous_profiler_read", + "display_name": "Continuous Profiler Read", "description": "View data in Continuous + Profiler.", "created": "2022-12-16T16:47:32.584514+00:00", "group_name": "APM", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005", "attributes": {"name": "teams_manage", + "display_name": "Teams Manage", "description": "Manage Teams. Create, delete, + rename, and edit metadata of all Teams. To control Team membership across + all Teams, use the User Access Manage permission.", "created": "2023-01-18T20:45:46.126002+00:00", + "group_name": "Teams", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005", "attributes": + {"name": "security_monitoring_findings_read", "display_name": "Security Monitoring + Findings Read", "description": "View a list of findings that include both + misconfigurations and identity risks.", "created": "2023-02-24T14:30:40.720618+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", + "attributes": {"name": "incident_notification_settings_read", "display_name": + "Incident Notification Settings Read", "description": "View Incidents Notification + settings.", "created": "2023-02-24T17:27:09.998449+00:00", "group_name": "Case + and Incident Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "attributes": + {"name": "incident_notification_settings_write", "display_name": "Incident + Notification Settings Write", "description": "Configure Incidents Notification + settings.", "created": "2023-02-24T17:27:09.998449+00:00", "group_name": "Case + and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "attributes": + {"name": "ci_ingestion_control_write", "display_name": "CI Visibility Ingestion + Control Write", "description": "Edit CI Ingestion Control exclusion filters.", + "created": "2023-03-24T10:25:52.891502+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005", "attributes": {"name": "error_tracking_write", + "display_name": "Error Tracking Issue Write", "description": "Edit Error Tracking + issues.", "created": "2023-03-27T16:55:39.540192+00:00", "group_name": "Error + Tracking", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "81e488c0-db35-11ed-a170-da7ad0900005", "attributes": {"name": "watchdog_alerts_write", + "display_name": "Watchdog Alerts Write", "description": "Manage Watchdog Alerts.", + "created": "2023-04-15T02:30:37.731056+00:00", "group_name": "Watchdog", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005", + "attributes": {"name": "saved_views_write", "display_name": "Saved Views Write", + "description": "Modify Saved Views across all Datadog products.", "created": + "2023-04-15T02:30:37.731056+00:00", "group_name": "Cross-Product Features", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "94c8a4da-de87-11ed-9e92-da7ad0900005", "attributes": {"name": "client_tokens_read", + "display_name": "Client Tokens Read", "description": "Read Client Tokens. + Unlike API keys, client tokens may be exposed client-side in JavaScript code + for web browsers and other clients to send data to Datadog.", "created": "2023-04-19T07:55:41.646942+00:00", + "group_name": "API and Application Keys", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "94c927e8-de87-11ed-9e92-da7ad0900005", + "attributes": {"name": "client_tokens_write", "display_name": "Client Tokens + Write", "description": "Create and edit Client Tokens. Unlike API keys, client + tokens may be exposed client-side in JavaScript code for web browsers and + other clients to send data to Datadog.", "created": "2023-04-19T07:55:41.646942+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "619b2642-f41b-11ed-b4e1-da7ad0900005", + "attributes": {"name": "event_correlation_config_read", "display_name": "Event + Correlation Config Read", "description": "Read Event Correlation Configuration + data such as Correlation Rules and Settings.", "created": "2023-05-16T18:56:35.719150+00:00", + "group_name": "Events", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "attributes": + {"name": "event_correlation_config_write", "display_name": "Event Correlation + Config Write", "description": "Manage Event Correlation Configuration such + as Correlation Rules and Settings.", "created": "2023-05-16T18:56:35.719150+00:00", + "group_name": "Events", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005", "attributes": + {"name": "event_config_write", "display_name": "Event Config Write", "description": + "Manage general event configuration such as API Emails.", "created": "2023-05-20T00:00:57.864864+00:00", + "group_name": "Events", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "attributes": + {"name": "security_monitoring_findings_write", "display_name": "Security Monitoring + Findings Write", "description": "Mute CSPM Findings.", "created": "2023-05-23T21:45:42.705754+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "attributes": {"name": "cloud_cost_management_read", "display_name": "Cloud + Cost Management Read", "description": "View Cloud Cost pages and the cloud + cost data source in dashboards and notebooks. For more details, see the Cloud + Cost Management docs.", "created": "2023-05-31T19:20:42.284425+00:00", "group_name": + "Cloud Cost Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "attributes": + {"name": "cloud_cost_management_write", "display_name": "Cloud Cost Management + Write", "description": "Configure cloud cost accounts and global customizations. + For more details, see the Cloud Cost Management docs.", "created": "2023-05-31T19:20:42.284425+00:00", + "group_name": "Cloud Cost Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", + "attributes": {"name": "host_tags_write", "display_name": "Host Tags Write", + "description": "Add and change tags on hosts.", "created": "2023-05-31T05:12:01.547070+00:00", + "group_name": "Metrics", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005", "attributes": + {"name": "ci_visibility_pipelines_write", "display_name": "CI Visibility Pipelines + Write", "description": "Create CI Visibility pipeline spans using the API.", + "created": "2023-06-01T10:15:50.891463+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "attributes": {"name": "quality_gate_rules_read", + "display_name": "Quality Gate Rules Read", "description": "View Quality Gate + Rules.", "created": "2023-06-19T16:27:34.826612+00:00", "group_name": "Software + Delivery", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "attributes": {"name": "quality_gate_rules_write", + "display_name": "Quality Gate Rules Write", "description": "Edit Quality Gate + Rules.", "created": "2023-06-19T16:27:34.826612+00:00", "group_name": "Software + Delivery", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "attributes": {"name": "metrics_metadata_write", + "display_name": "Metrics Metadata Write", "description": "Edit metadata on + metrics.", "created": "2023-06-23T16:21:25.009293+00:00", "group_name": "Metrics", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "4316b75c-093f-11ee-98e9-da7ad0900005", "attributes": {"name": "rum_delete_data", + "display_name": "RUM Delete Data", "description": "Delete data from RUM.", + "created": "2023-06-12T16:36:20.819036+00:00", "group_name": "Real User Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "4316826e-093f-11ee-98e9-da7ad0900005", "attributes": {"name": "appsec_vm_write", + "display_name": "Vulnerability Management Write", "description": "Update status + or assignee of vulnerabilities.", "created": "2023-06-12T16:36:20.819036+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "attributes": {"name": "reference_tables_write", "display_name": "Reference + Tables Write", "description": "Create or modify Reference Tables.", "created": + "2023-06-12T16:36:20.819036+00:00", "group_name": "Reference Tables", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "attributes": {"name": "rum_playlist_write", "display_name": "RUM Playlist + Write", "description": "Create, update, and delete RUM playlists. Add and + remove sessions from RUM playlists.", "created": "2023-07-07T16:26:50.792866+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", + "attributes": {"name": "observability_pipelines_delete", "display_name": "Observability + Pipelines Delete", "description": "Delete pipelines from your organization.", + "created": "2023-07-13T16:25:44.923503+00:00", "group_name": "Observability + Pipelines", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "attributes": {"name": "observability_pipelines_deploy", + "display_name": "Observability Pipelines Deploy", "description": "Deploy pipelines + in your organization.", "created": "2023-07-13T16:25:44.923503+00:00", "group_name": + "Observability Pipelines", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "attributes": + {"name": "processes_generate_metrics", "display_name": "Processes Generate + Metrics", "description": "Create custom metrics from processes.", "created": + "2023-07-12T16:27:03.457484+00:00", "group_name": "Processes", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "attributes": {"name": "api_keys_delete", "display_name": "API Keys Delete", + "description": "Delete API Keys for your organization.", "created": "2023-07-12T16:27:03.457484+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "attributes": {"name": "agent_flare_collection", "display_name": "Agent Flare + Collection", "description": "Collect an Agent flare with Fleet Automation.", + "created": "2023-07-13T16:25:44.923503+00:00", "group_name": "Fleet Automation", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005", "attributes": {"name": "org_connections_write", + "display_name": "Org Connections Write", "description": "Control which organizations + can query your organization''s data.", "created": "2023-07-20T16:25:38.185785+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005", + "attributes": {"name": "org_connections_read", "display_name": "Org Connections + Read", "description": "View which organizations can query data from your organization. + Query data from other organizations.", "created": "2023-07-20T16:25:38.185785+00:00", + "group_name": "Access Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "attributes": + {"name": "facets_write", "display_name": "Facets Write", "description": "Manage + facets for products other than Log Management, such as APM Traces. To modify + Log Facets, use Logs Write Facets.", "created": "2023-07-27T16:26:26.546986+00:00", + "group_name": "Cross-Product Features", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", + "attributes": {"name": "security_monitoring_suppressions_read", "display_name": + "Security Suppressions Read", "description": "Read Rule Suppressions.", "created": + "2023-08-17T16:25:26.209216+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "attributes": {"name": "security_monitoring_suppressions_write", + "display_name": "Security Suppressions Write", "description": "Write Rule + Suppressions.", "created": "2023-08-17T16:25:26.209216+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "attributes": + {"name": "static_analysis_settings_write", "display_name": "Static Analysis + Settings Write", "description": "Edit Static Analysis settings.", "created": + "2023-08-18T16:25:56.688500+00:00", "group_name": "Software Delivery", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005", + "attributes": {"name": "cd_visibility_read", "display_name": "CD Visibility + Read", "description": "View CD Visibility.", "created": "2023-09-08T23:01:01.285130+00:00", + "group_name": "Software Delivery", "display_type": "read", "restricted": true}}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "attributes": + {"name": "ndm_netflow_port_mappings_write", "display_name": "NDM Netflow Port + Mappings Write", "description": "Write NDM Netflow port mappings.", "created": + "2023-10-12T16:26:03.661255+00:00", "group_name": "Network Device Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "2de35000-69e5-11ee-996b-da7ad0900005", "attributes": {"name": "appsec_vm_read", + "display_name": "Vulnerability Management Read", "description": "View infrastructure, + application code and library vulnerabilities. This does not restrict access + to the vulnerability data source through the API or inventory SQL.", "created": + "2023-10-13T16:25:53.335225+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": true}}, {"type": "permissions", "id": + "54f38ef0-6f65-11ee-a094-da7ad0900005", "attributes": {"name": "debugger_capture_variables", + "display_name": "Dynamic Instrumentation Capture Variables", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "created": "2023-10-20T16:25:50.268064+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "f2cc9374-9841-11ee-a301-da7ad0900005", + "attributes": {"name": "error_tracking_settings_write", "display_name": "Error + Tracking Settings Write", "description": "Disable Error Tracking, edit inclusion + filters, and edit rate limit.", "created": "2023-12-11T16:25:50.880331+00:00", + "group_name": "Error Tracking", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "attributes": + {"name": "error_tracking_exclusion_filters_write", "display_name": "Error + Tracking Exclusion Filters Write", "description": "Add or change Error Tracking + exclusion filters.", "created": "2023-12-11T16:25:50.880331+00:00", "group_name": + "Error Tracking", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "attributes": + {"name": "integrations_read", "display_name": "Integrations Read", "description": + "View integrations and their configurations.", "created": "2024-01-23T16:26:45.209142+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "attributes": + {"name": "apm_api_catalog_write", "display_name": "API Catalog Write", "description": + "Add, modify, and delete API catalog definitions.", "created": "2024-02-02T16:25:57.659403+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "attributes": + {"name": "apm_api_catalog_read", "display_name": "API Catalog Read", "description": + "View API catalog and API definitions.", "created": "2024-02-02T16:25:57.659403+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "11280c24-cce8-11ee-af00-da7ad0900005", "attributes": + {"name": "containers_generate_image_metrics", "display_name": "Containers + Write Image Trend Metrics", "description": "Create or edit trend metrics from + container images.", "created": "2024-02-16T16:25:58.736360+00:00", "group_name": + "Containers", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "attributes": {"name": "rum_extend_retention", + "display_name": "RUM Session Replay Extend Retention", "description": "Extend + the retention of Session Replays.", "created": "2024-03-14T16:26:30.797793+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005", + "attributes": {"name": "on_prem_runner_read", "display_name": "Private Action + Runner Read", "description": "View and search Private Action Runners for Workflow + Automation and App Builder.", "created": "2024-03-18T16:26:33.583707+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", + "attributes": {"name": "on_prem_runner_use", "display_name": "Private Action + Runner Contribute", "description": "Attach a Private Action Runner to a connection.", + "created": "2024-03-18T16:26:33.583707+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "attributes": + {"name": "on_prem_runner_write", "display_name": "Private Action Runner Write", + "description": "Create and edit Private Action Runners for Workflow Automation + and App Builder.", "created": "2024-03-18T16:26:33.583707+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", + "attributes": {"name": "dora_settings_write", "display_name": "DORA Settings + Write", "description": "Edit the settings for DORA.", "created": "2024-04-08T16:25:58.692075+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", + "attributes": {"name": "agent_upgrade_write", "display_name": "Agent Upgrade", + "description": "Upgrade Datadog Agents with Fleet Automation.", "created": + "2024-04-22T16:25:53.208974+00:00", "group_name": "Fleet Automation", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", + "attributes": {"name": "continuous_profiler_pgo_read", "display_name": "Read + Continuous Profiler Profile-Guided Optimization (PGO) Data", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "created": "2024-04-23T16:30:30.492439+00:00", "group_name": "APM", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005", + "attributes": {"name": "oci_configurations_manage", "display_name": "OCI Configurations + Manage", "description": "Add or remove but not edit Oracle Cloud integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "attributes": {"name": "aws_configuration_read", + "display_name": "AWS Configuration Read", "description": "View but not add, + remove, or edit AWS integration configurations.", "created": "2024-04-23T16:30:30.492439+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "ccd09204-018e-11ef-afb6-da7ad0900005", "attributes": + {"name": "azure_configuration_read", "display_name": "Azure Configuration + Read", "description": "View but not add, remove, or edit Azure integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "attributes": {"name": "gcp_configuration_read", + "display_name": "GCP Configuration Read", "description": "View but not add, + remove, or edit GCP integration configurations.", "created": "2024-04-23T16:30:30.492439+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005", "attributes": + {"name": "oci_configuration_read", "display_name": "OCI Configuration Read", + "description": "View but not add, remove, or edit Oracle Cloud integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "attributes": {"name": "aws_configuration_edit", + "display_name": "AWS Configuration Edit", "description": "Edit but not add + or remove AWS integration configurations.", "created": "2024-05-02T16:26:19.141095+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "attributes": + {"name": "azure_configuration_edit", "display_name": "Azure Configuration + Edit", "description": "Edit but not add or remove Azure integration configurations.", + "created": "2024-05-02T16:26:19.141095+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005", "attributes": {"name": "gcp_configuration_edit", + "display_name": "GCP Configuration Edit", "description": "Edit but not add + or remove GCP integration configurations.", "created": "2024-05-02T16:26:19.141095+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "attributes": + {"name": "oci_configuration_edit", "display_name": "OCI Configuration Edit", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "created": "2024-05-02T16:26:19.141095+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "attributes": {"name": "llm_observability_read", + "display_name": "LLM Observability Read", "description": "View LLM Observability.", + "created": "2024-05-03T16:26:22.500447+00:00", "group_name": "LLM Observability", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ef950332-13a0-11ef-b582-da7ad0900005", "attributes": {"name": "flex_logs_config_write", + "display_name": "Flex Logs Configuration Write", "description": "Manage your + organization''s flex logs configuration.", "created": "2024-05-16T16:25:40.697830+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "21c5475c-228f-11ef-a00d-da7ad0900005", "attributes": + {"name": "reference_tables_read", "display_name": "Reference Tables Read", + "description": "View Reference Tables.", "created": "2024-06-04T16:26:01.400743+00:00", + "group_name": "Reference Tables", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "75066402-3890-11ef-bbb1-da7ad0900005", "attributes": + {"name": "fleet_policies_write", "display_name": "Agent Configuration Management", + "description": "Create and deploy Agent configurations.", "created": "2024-07-02T16:30:56.156267+00:00", + "group_name": "Fleet Automation", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005", "attributes": + {"name": "orchestration_custom_resource_definitions_write", "display_name": + "Custom Resource Definition Write", "description": "Enable, disable and update + custom resource indexing.", "created": "2024-07-02T16:30:56.156267+00:00", + "group_name": "Orchestration", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005", "attributes": + {"name": "code_analysis_read", "display_name": "Code Analysis Read", "description": + "View Code Analysis.", "created": "2024-08-06T16:26:25.858118+00:00", "group_name": + "Software Delivery", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005", "attributes": + {"name": "orchestration_workload_scaling_write", "display_name": "Workload + Scaling Write", "description": "Enable, disable, and configure workload autoscaling. + Apply workload scaling recommendations.", "created": "2024-08-06T16:26:25.858118+00:00", + "group_name": "Orchestration", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "06e3004e-5987-11ef-89c3-da7ad0900005", "attributes": + {"name": "llm_observability_write", "display_name": "LLM Observability Write", + "description": "Create, Update, and Delete LLM Observability resources including + User Defined Evaluations, OOTB Evaluations, and User Defined Topics.", "created": + "2024-08-13T15:16:34.275999+00:00", "group_name": "LLM Observability", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "attributes": {"name": "observability_pipelines_capture_read", "display_name": + "Observability Pipelines Live Capture Read", "description": "View captured + events of pipelines in your organization.", "created": "2024-08-27T16:50:39.669348+00:00", + "group_name": "Observability Pipelines", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005", + "attributes": {"name": "observability_pipelines_capture_write", "display_name": + "Observability Pipelines Live Capture Write", "description": "Capture live + events of pipelines in your organization.", "created": "2024-08-27T16:50:39.669348+00:00", + "group_name": "Observability Pipelines", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", + "attributes": {"name": "apps_datastore_read", "display_name": "Actions Datastore + Read", "description": "Allows read access to the data within the Actions Datastore.", + "created": "2024-08-22T16:25:15.890147+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "attributes": + {"name": "apps_datastore_write", "display_name": "Actions Datastore Write", + "description": "Allows modification of data within the Actions Datastore, + including adding, editing, and deleting records.", "created": "2024-08-22T16:25:15.890147+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", + "attributes": {"name": "apps_datastore_manage", "display_name": "Actions Datastore + Manage", "description": "Allows management of the Actions Datastore, including + creating, updating, and deleting the datastore itself.", "created": "2024-08-22T16:25:15.890147+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "attributes": {"name": "security_pipelines_read", "display_name": "Security + Pipelines Read", "description": "View Security Pipelines.", "created": "2024-08-30T16:25:36.779590+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "attributes": {"name": "security_pipelines_write", "display_name": "Security + Pipelines Write", "description": "Create, edit, and delete Security Pipelines.", + "created": "2024-08-30T16:25:36.779590+00:00", "group_name": "Cloud Security + Platform", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "8e9b2142-7511-11ef-b225-da7ad0900005", "attributes": {"name": "connection_groups_write", + "display_name": "Connection Groups Write", "description": "Create, delete + and update connection groups.", "created": "2024-09-17T16:26:13.918826+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "attributes": {"name": "quality_gates_evaluations_read", "display_name": "Quality + Gates Evaluations", "description": "Allow quality gates evaluations.", "created": + "2024-09-23T18:00:21.053557+00:00", "group_name": "Software Delivery", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "attributes": {"name": "connection_groups_read", "display_name": "Connection + Groups Read", "description": "Read and use connection groups.", "created": + "2024-09-26T14:35:22.139553+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "83fc9760-7c51-11ef-b846-da7ad0900005", "attributes": {"name": "security_monitoring_cws_agent_rules_actions", + "display_name": "Cloud Workload Security Agent Actions", "description": "Managing + actions on Cloud Workload Security Agent Rules.", "created": "2024-09-26T21:51:42.032795+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005", + "attributes": {"name": "rum_retention_filters_read", "display_name": "RUM + Retention Filters Read", "description": "View RUM Retention filters data.", + "created": "2024-10-02T23:15:17.740884+00:00", "group_name": "Real User Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "300f81cc-8114-11ef-84c0-da7ad0900005", "attributes": {"name": "rum_retention_filters_write", + "display_name": "RUM Retention Filters Write", "description": "Write RUM Retention + filters.", "created": "2024-10-02T23:15:17.740884+00:00", "group_name": "Real + User Monitoring", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005", "attributes": + {"name": "ddsql_editor_read", "display_name": "DDSQL Editor Read", "description": + "View and use DDSQL Editor.", "created": "2024-10-14T13:30:22.950954+00:00", + "group_name": "DDSQL Editor", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "attributes": + {"name": "disaster_recovery_status_read", "display_name": "Datadog Disaster + Recovery Read", "description": "View the disaster recovery status.", "created": + "2024-11-01T21:30:23.309658+00:00", "group_name": "Disaster Recovery", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "attributes": {"name": "disaster_recovery_status_write", "display_name": "Datadog + Disaster Recovery Write", "description": "Update the disaster recovery status.", + "created": "2024-11-01T21:30:23.309658+00:00", "group_name": "Disaster Recovery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "71949074-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "rum_settings_write", + "display_name": "RUM Settings Write", "description": "Write RUM Settings.", + "created": "2024-11-07T13:30:24.249160+00:00", "group_name": "Real User Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "71957e76-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "test_optimization_read", + "display_name": "Test Optimization Read", "description": "View Test Optimization.", + "created": "2024-11-07T13:30:24.249160+00:00", "group_name": "Software Delivery", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "71958024-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "test_optimization_write", + "display_name": "Test Optimization Write", "description": "Manage flaky tests + for Test Optimization.", "created": "2024-11-07T13:30:24.249160+00:00", "group_name": + "Software Delivery", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "attributes": + {"name": "test_optimization_settings_write", "display_name": "Test Optimization + Settings Write", "description": "Create, delete and update Test Optimization + settings.", "created": "2024-11-19T19:06:07.652237+00:00", "group_name": "Software + Delivery", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "attributes": {"name": "security_comments_write", + "display_name": "Security Comments Write", "description": "Write comments + into vulnerabilities.", "created": "2024-11-22T18:40:23.844837+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005", "attributes": + {"name": "security_comments_read", "display_name": "Security Comments Read", + "description": "Read comments of vulnerabilities.", "created": "2024-11-22T18:40:23.844837+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "attributes": {"name": "dashboards_invite_share", "display_name": "Shared + Dashboards Invite-only Write", "description": "Create, modify and delete shared + dashboards with share type ''Invite-only''. These dashboards can only be accessed + by user-specified email addresses.", "created": "2024-12-10T19:11:49.480076+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "attributes": + {"name": "dashboards_embed_share", "display_name": "Shared Dashboards Embed + Write", "description": "Create, modify and delete shared dashboards with share + type ''Embed''. These dashboards can be embedded on user-specified domains.", + "created": "2024-12-10T19:11:49.480076+00:00", "group_name": "Dashboards", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "attributes": {"name": "embeddable_graphs_share", + "display_name": "Shared Graphs Write", "description": "Generate public links + to share embeddable graphs externally.", "created": "2024-12-10T19:11:49.480076+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "attributes": + {"name": "logs_read_workspaces", "display_name": "Read Logs Workspaces", "description": + "View Logs Workspaces.", "created": "2024-12-11T19:21:44.137884+00:00", "group_name": + "Log Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "attributes": + {"name": "logs_write_workspaces", "display_name": "Write Logs Workspaces", + "description": "Create, update, and delete Logs Workspaces.", "created": "2024-12-11T19:21:44.137884+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "attributes": + {"name": "audience_management_read", "display_name": "Profiles Read", "description": + "View Audience Management data.", "created": "2025-01-07T18:36:31.392090+00:00", + "group_name": "Product Analytics", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "attributes": + {"name": "audience_management_write", "display_name": "Profiles Write", "description": + "Modify Audience Management data.", "created": "2025-01-07T18:36:31.392090+00:00", + "group_name": "Product Analytics", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005", + "attributes": {"name": "logs_read_config", "display_name": "Logs Configuration + Read", "description": "Read logs configuration.", "created": "2025-01-14T18:56:50.868001+00:00", + "group_name": "Log Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9b00426a-da87-11ef-9de6-da7ad0900005", "attributes": + {"name": "on_call_read", "display_name": "On-Call Read", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "created": + "2025-01-24T19:15:42.768282+00:00", "group_name": "On-Call", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "9b00ed28-da87-11ef-9de6-da7ad0900005", + "attributes": {"name": "on_call_write", "display_name": "On-Call Write", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "created": "2025-01-24T19:15:42.768282+00:00", "group_name": "On-Call", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "attributes": {"name": "on_call_page", "display_name": "On-Call Page", "description": + "Page On-Call teams and users.", "created": "2025-01-24T19:15:42.768282+00:00", + "group_name": "On-Call", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005", "attributes": + {"name": "error_tracking_read", "display_name": "Error Tracking Read", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "created": "2025-01-30T18:51:27.197297+00:00", "group_name": "Error Tracking", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "attributes": {"name": "on_call_respond", + "display_name": "On-Call Responder", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "created": "2025-02-03T23:42:07.592356+00:00", "group_name": "On-Call", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "attributes": {"name": "process_tags_read", "display_name": "Process Tags + Read", "description": "View Process Tag Rules.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Processes", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "attributes": + {"name": "process_tags_write", "display_name": "Process Tags Write", "description": + "Create, edit and delete Process Tag Rules.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Processes", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "attributes": + {"name": "network_connections_read", "display_name": "Network Connections + Read", "description": "Read Cloud Network Connections.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Cloud Network Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "attributes": {"name": "serverless_aws_instrumentation_read", "display_name": + "Serverless AWS Instrumentation Read", "description": "View remote instrumentation + configuration for serverless workloads.", "created": "2025-02-11T20:36:29.786935+00:00", + "group_name": "Serverless", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "attributes": + {"name": "serverless_aws_instrumentation_write", "display_name": "Serverless + AWS Instrumentation Write", "description": "Add, update, and remove remote + instrumentation configuration for serverless workloads.", "created": "2025-02-11T20:36:29.786935+00:00", + "group_name": "Serverless", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "attributes": + {"name": "coterm_write", "display_name": "CoTerm Write", "description": "Write + terminal recordings.", "created": "2025-02-28T19:06:40.038336+00:00", "group_name": + "CoTerm", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "attributes": {"name": "coterm_read", + "display_name": "CoTerm Read", "description": "Read terminal recordings.", + "created": "2025-02-28T19:06:40.038336+00:00", "group_name": "CoTerm", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "attributes": {"name": "data_streams_monitoring_capture_messages", "display_name": + "Data Streams Monitoring Capture Messages", "description": "Capture messages + from Kafka topics in the Data Streams Monitoring product.", "created": "2025-03-06T18:51:28.120564+00:00", + "group_name": "Data Streams Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "db45b75e-0360-11f0-8ac3-da7ad0900005", + "attributes": {"name": "cloudcraft_read", "display_name": "Cloudcraft Read", + "description": "View infrastructure diagrams in the Cloudcraft product.", + "created": "2025-03-17T18:51:37.899118+00:00", "group_name": "Infrastructure", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "9bb09240-0fee-11f0-958c-da7ad0900005", "attributes": {"name": "ndm_device_profiles_view", + "display_name": "NDM Device Profiles View", "description": "View NDM device + profiles.", "created": "2025-04-02T18:16:33.714415+00:00", "group_name": "Network + Device Monitoring", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "9bb09a10-0fee-11f0-958c-da7ad0900005", "attributes": + {"name": "ndm_device_profiles_edit", "display_name": "NDM Device Profiles + Edit", "description": "Edit NDM device profiles.", "created": "2025-04-02T18:16:33.714415+00:00", + "group_name": "Network Device Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "ndm_devices_read", "display_name": "NDM Read", "description": + "Read NDM data directly. Note: even without this permission, NDM data can + be retrieved via general infrastructure query APIs.", "created": "2025-04-24T21:30:24.005670+00:00", + "group_name": "Network Device Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "ndm_device_tags_write", "display_name": "NDM Device + Tags Write", "description": "Write NDM device tags.", "created": "2025-04-24T21:30:24.005670+00:00", + "group_name": "Network Device Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "orchestration_workload_scaling_read", "display_name": + "Workload Scaling Read", "description": "View workload autoscaling objects + and recommendations.", "created": "2025-04-24T21:30:24.005670+00:00", "group_name": + "Orchestration", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "attributes": {"name": "bits_investigations_read", + "display_name": "Bits Investigations Read", "description": "Read Bits investigations.", + "created": "2025-04-29T18:51:50.984055+00:00", "group_name": "Bits AI", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "attributes": {"name": "sheets_read", "display_name": "Sheets Read", "description": + "View Sheets.", "created": "2025-04-30T23:15:19.683852+00:00", "group_name": + "Sheets", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "fbf841c6-2618-11f0-8595-da7ad0900005", "attributes": {"name": "sheets_write", + "display_name": "Sheets Write", "description": "Create and change Sheets.", + "created": "2025-04-30T23:15:19.683852+00:00", "group_name": "Sheets", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", + "attributes": {"name": "orchestration_autoscaling_manage", "display_name": + "Autoscaling Manage", "description": "Manage autoscaling cluster level configuration.", + "created": "2025-05-19T18:00:40.454044+00:00", "group_name": "Orchestration", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "12465c5e-3a5c-11f0-becd-da7ad0900005", "attributes": {"name": "code_coverage_read", + "display_name": "Code Coverage read", "description": "View Code Coverage data.", + "created": "2025-05-26T18:05:56.647000+00:00", "group_name": "Software Delivery", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "attributes": {"name": "cases_shared_settings_write", + "display_name": "Case Management Shared Settings Write", "description": "Configure + shared settings for Case Management.", "created": "2025-06-17T18:22:00.814348+00:00", + "group_name": "Case and Incident Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", + "attributes": {"name": "actions_interface_run", "display_name": "Actions Interface + Run", "description": "Execute actions in the Bits AI Action Interface.", "created": + "2025-07-01T14:36:49.982499+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", "attributes": {"name": "ai_guard_evaluate", + "display_name": "AI Guard Evaluate", "description": "Evaluate AI Guard rules.", + "created": "2025-07-09T18:30:33.053855+00:00", "group_name": "Application + Security", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "attributes": {"name": "generate_ccm_report_schedules", + "display_name": "Cloud Cost Report Schedules Write", "description": "View + all report schedules and manage only the ones they''ve created.", "created": + "2025-07-10T18:40:35.388063+00:00", "group_name": "Cloud Cost Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "attributes": {"name": "manage_ccm_report_schedules", + "display_name": "Cloud Cost Report Schedules Manage", "description": "View, + create, and fully manage all report schedules across the organization.", "created": + "2025-07-10T18:40:35.388063+00:00", "group_name": "Cloud Cost Management", + "display_type": "write", "restricted": false}}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005", + "attributes": {"name": "Datadog Read Only Role", "managed": true, "created_at": + "2024-10-08T14:32:47.265744+00:00", "modified_at": "2024-10-08T14:32:47.266206+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": + "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", + "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": + "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", + "id": "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": + "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": + "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f33f74be-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": + "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", + "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": + "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", + "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", "id": + "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": + "permissions", "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", + "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", "id": + "3c002814-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", + "id": "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": + "35e4e288-df3b-11ef-886f-da7ad0900005"}, {"type": "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005"}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": + "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", + "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", "id": + "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", + "id": "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": + "12465c5e-3a5c-11f0-becd-da7ad0900005"}]}}}, {"type": "roles", "id": "693fe720-9569-11ef-969d-da7ad0900005", + "attributes": {"name": "Copy of Datadog Admin Role", "managed": false, "created_at": + "2024-10-28T20:15:44.156681+00:00", "modified_at": "2024-10-28T20:15:44.167199+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e"}, {"type": + "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": "permissions", + "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", "id": + "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": + "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": "permissions", + "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", "id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d"}, + {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19"}, {"type": + "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, {"type": "permissions", + "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": "permissions", "id": + "04668d0a-ec5c-11ea-9483-37d199df4587"}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, + {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc"}, {"type": + "permissions", "id": "04668f62-ec5c-11ea-9483-0fe541ab993f"}, {"type": "permissions", + "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02"}, {"type": "permissions", "id": + "046690de-ec5c-11ea-9483-bbcd905fcdca"}, {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf"}, + {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": + "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", + "id": "8b753262-f925-11ea-82fc-93f07fd96e76"}, {"type": "permissions", "id": + "9311970e-f925-11ea-ab4d-1760e76381c1"}, {"type": "permissions", "id": "998aabac-f925-11ea-b43d-8f1f42f3894e"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "72bc07d8-1472-11eb-a97b-8bff514d7382"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e"}, {"type": + "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": "permissions", + "id": "c8654332-2dce-11eb-9145-d33d26eeb65f"}, {"type": "permissions", "id": + "d23cc894-2dce-11eb-9145-37bf7b2dadc2"}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a"}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", "id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, + {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005"}, {"type": + "permissions", "id": "b39fb79a-90af-11eb-9428-da7ad0900005"}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "993b34d6-b16d-11eb-a891-da7ad0900005"}, + {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, {"type": + "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": + "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "c948b30a-16c7-11ec-88cc-da7ad0900005"}, + {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", + "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": + "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005"}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": + "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005"}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "3ad32264-f311-11ec-a058-da7ad0900005"}, {"type": "permissions", + "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005"}, + {"type": "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", + "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": + "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005"}, + {"type": "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": + "8b254e6a-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005"}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": "81e488c0-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", "id": + "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, + {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, + {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, {"type": + "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": + "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", "id": "4316b75c-093f-11ee-98e9-da7ad0900005"}, + {"type": "permissions", "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": + "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", + "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, {"type": "permissions", "id": + "eadf64b2-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": "eadf675a-2199-11ee-9a0e-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005"}, {"type": "permissions", + "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": + "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", + "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": + "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", + "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}, {"type": "permissions", "id": + "f2cc9374-9841-11ee-a301-da7ad0900005"}, {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005"}, + {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, {"type": + "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": + "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005"}, + {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": + "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", + "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": + "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd09204-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", + "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": + "permissions", "id": "ef950332-13a0-11ef-b582-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75066402-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005"}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", + "id": "06e3004e-5987-11ef-89c3-da7ad0900005"}, {"type": "permissions", "id": + "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", + "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005"}, + {"type": "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": + "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", + "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": + "83fc9760-7c51-11ef-b846-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "80ae7688-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": "71949074-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": + "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", + "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": "permissions", "id": + "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005"}, + {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", + "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", + "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", "id": + "35e4e288-df3b-11ef-886f-da7ad0900005"}]}}}, {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005", + "attributes": {"name": "Datadog Standard Role", "managed": true, "created_at": + "2024-10-08T14:32:47.215056+00:00", "modified_at": "2024-10-08T14:32:47.215828+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": + "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", + "id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, + {"type": "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": + "permissions", "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", + "id": "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": + "5de1e178-8536-11ea-968a-2fd9395bff90"}, {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, + {"type": "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": + "permissions", "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", + "id": "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": + "93654d1c-e706-11ea-9a85-d320ff02824d"}, {"type": "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, + {"type": "permissions", "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": + "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, {"type": "permissions", + "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": "permissions", "id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", "id": "9311970e-f925-11ea-ab4d-1760e76381c1"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": + "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", + "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, + {"type": "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "f07e4234-e894-11eb-ab79-da7ad0900005"}, {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": + "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": + "c948b30a-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, + {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": + "permissions", "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "cf873174-574f-11ec-9869-da7ad0900005"}, {"type": "permissions", "id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, + {"type": "permissions", "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": + "permissions", "id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", + "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": "permissions", "id": + "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": + "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", + "id": "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": + "permissions", "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, + {"type": "permissions", "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": + "permissions", "id": "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", + "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": "permissions", "id": + "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": + "81e488c0-db35-11ed-a170-da7ad0900005"}, {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": + "permissions", "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": + "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, + {"type": "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": + "permissions", "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", + "id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, + {"type": "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": + "permissions", "id": "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", + "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", "id": + "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", + "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": + "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, + {"type": "permissions", "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": + "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", + "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": "permissions", "id": + "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, + {"type": "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": + "permissions", "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": + "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, + {"type": "permissions", "id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": + "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09204-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, {"type": + "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75072806-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, + {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": + "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", + "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, + {"type": "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": + "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": "permissions", + "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", "id": + "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": + "permissions", "id": "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", + "id": "3c002814-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": + "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, + {"type": "permissions", "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", + "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": + "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, + {"type": "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": + "permissions", "id": "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", + "id": "9b00ed28-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": + "9b010d44-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005"}, + {"type": "permissions", "id": "7ad4419a-e288-11ef-bbbc-da7ad0900005"}, {"type": + "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", + "id": "4a6cadb6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": + "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, + {"type": "permissions", "id": "23f76dc4-f607-11ef-99cf-da7ad0900005"}, {"type": + "permissions", "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", + "id": "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", "id": + "9bb09240-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", "id": + "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": "fbf841c6-2618-11f0-8595-da7ad0900005"}, + {"type": "permissions", "id": "12465c5e-3a5c-11f0-becd-da7ad0900005"}, {"type": + "permissions", "id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005"}, {"type": "permissions", + "id": "d2c0335e-5688-11f0-ad5e-da7ad0900005"}, {"type": "permissions", "id": + "cc7517b0-5cf2-11f0-85d4-da7ad0900005"}, {"type": "permissions", "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005"}]}}}], + "meta": {"page": {"total_count": 8, "total_filtered_count": 8, "max_page_size": + 1000}}}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/roles?page%5Bnumber%5D=0&page%5Bsize%5D=100 + response: + body: + string: '{"data": [{"id": "693fe720-9569-11ef-969d-da7ad0900005", "type": "roles", + "attributes": {"created_at": "2024-10-28T20:15:44.156681Z", "created_by_handle": + "michael.richey@datadoghq.com", "modified_at": "2024-10-28T20:15:44.167199Z", + "modified_by_handle": "michael.richey@datadoghq.com", "name": "Copy of Datadog + Admin Role", "team_count": 0, "user_count": 2}, "relationships": {"permissions": + {"data": [{"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": "permissions"}, + {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": + "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", + "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions"}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": "permissions"}, + {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "type": "permissions"}, {"id": + "046690de-ec5c-11ea-9483-bbcd905fcdca", "type": "permissions"}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions"}, {"id": + "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions"}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions"}, {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": + "permissions"}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": + "c8654332-2dce-11eb-9145-d33d26eeb65f", "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", + "type": "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, + {"id": "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": + "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": "permissions"}, + {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": "permissions"}, {"id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "type": "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", + "type": "permissions"}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": + "permissions"}, {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, + {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions"}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions"}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, + {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": + "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions"}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": + "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions"}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": + "permissions"}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, + {"id": "f42ef088-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", + "type": "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": + "permissions"}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, + {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions"}, {"id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", + "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", "type": + "permissions"}, {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, + {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": "permissions"}, {"id": + "f40ff7be-966b-11ec-8253-da7ad0900005", "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions"}, + {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", + "type": "permissions"}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions"}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "type": "permissions"}, + {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": + "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", + "type": "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": "permissions"}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152", "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": + "permissions"}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, + {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005", "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions"}, {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": + "permissions"}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, + {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions"}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": + "permissions"}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, + {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": + "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", + "type": "permissions"}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions"}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, + {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions"}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions"}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, + {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", "type": "permissions"}, {"id": + "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": + "permissions"}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions"}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "ef44613e-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": + "permissions"}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", "type": "permissions"}, {"id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions"}, {"id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions"}, + {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": "permissions"}, {"id": + "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions"}, {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": + "permissions"}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, + {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": + "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": + "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, + {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", + "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": "permissions"}, + {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, {"id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions"}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005", "type": "permissions"}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", + "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, + {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": + "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": "permissions"}, + {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": + "c04a7614-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "type": "permissions"}, + {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", "type": "permissions"}, {"id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions"}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", + "type": "permissions"}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "type": + "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": + "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", + "type": "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": + "permissions"}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": "permissions"}, + {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, {"id": + "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions"}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, + {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": + "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions"}, {"id": "83fc9760-7c51-11ef-b846-da7ad0900005", "type": + "permissions"}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, + {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions"}, {"id": + "76e47222-8a30-11ef-8675-da7ad0900005", "type": "permissions"}, {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": + "permissions"}, {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions"}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", "type": "permissions"}, {"id": + "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", + "type": "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": + "permissions"}, {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": "permissions"}, {"id": + "7d962a3c-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", + "type": "permissions"}, {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": + "permissions"}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": + "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", + "type": "permissions"}, {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": + "permissions"}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "7d9641ac-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": + "permissions"}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": + "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions"}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions"}]}}}, {"id": "3020f50c-8582-11ef-ad61-da7ad0900005", "type": + "roles", "attributes": {"created_at": "2024-10-08T14:32:47.147289Z", "managed": + true, "modified_at": "2024-10-08T14:32:47.147932Z", "name": "Datadog Admin + Role", "team_count": 0, "user_count": 7}, "relationships": {"permissions": + {"data": [{"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": "permissions"}, + {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": + "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", + "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions"}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": "permissions"}, + {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "type": "permissions"}, {"id": + "046690de-ec5c-11ea-9483-bbcd905fcdca", "type": "permissions"}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions"}, {"id": + "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions"}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions"}, {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": + "permissions"}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": + "c8654332-2dce-11eb-9145-d33d26eeb65f", "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", + "type": "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, + {"id": "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": + "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": "permissions"}, + {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": "permissions"}, {"id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "type": "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", + "type": "permissions"}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": + "permissions"}, {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, + {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions"}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions"}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, + {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": + "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions"}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": + "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions"}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": + "permissions"}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, + {"id": "f42ef088-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", + "type": "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": + "permissions"}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, + {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions"}, {"id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", + "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", "type": + "permissions"}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, {"id": + "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": "permissions"}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions"}, {"id": + "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": + "permissions"}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": "permissions"}, + {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "type": "permissions"}, {"id": + "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", + "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions"}, + {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": "permissions"}, {"id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": "permissions"}, + {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, {"id": + "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", "type": + "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, {"id": + "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", + "type": "permissions"}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", "type": + "permissions"}, {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions"}, + {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, {"id": + "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", "type": + "permissions"}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, + {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": + "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", + "type": "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions"}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, + {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "type": + "permissions"}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, + {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": + "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", "type": "permissions"}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", + "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": "permissions"}, + {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions"}, {"id": + "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": + "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions"}, {"id": + "80ae7688-9898-11ef-8b23-da7ad0900005", "type": "permissions"}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", + "type": "permissions"}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "75066402-3890-11ef-bbb1-da7ad0900005", "type": "permissions"}, {"id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", + "type": "permissions"}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions"}, {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, + {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, {"id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions"}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions"}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions"}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions"}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, + {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions"}, {"id": + "cf873174-574f-11ec-9869-da7ad0900005", "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", + "type": "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": + "permissions"}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", "type": + "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": "permissions"}, + {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions"}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": + "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions"}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": "permissions"}, {"id": + "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions"}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "type": "permissions"}, {"id": + "48d8ce74-0065-11ee-9c16-da7ad0900005", "type": "permissions"}, {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", + "type": "permissions"}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": + "permissions"}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "type": "permissions"}, + {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, {"id": + "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", + "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": + "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions"}, + {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": "permissions"}, {"id": + "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", + "type": "permissions"}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, + {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, {"id": + "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": + "permissions"}, {"id": "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions"}, + {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": + "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": + "permissions"}, {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, + {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", + "type": "permissions"}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "ccd09f06-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": + "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions"}, {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": "permissions"}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": + "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", + "type": "permissions"}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", "type": + "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, + {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, {"id": + "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, + {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, {"id": + "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", + "type": "permissions"}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "7d9641ac-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": + "permissions"}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, {"id": + "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions"}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions"}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, + {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, {"id": + "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": "permissions"}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions"}, {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions"}, + {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, {"id": + "02e65e42-fabc-11ef-a653-da7ad0900005", "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions"}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions"}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions"}, + {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": + "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions"}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", "type": + "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions"}, + {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", "type": "permissions"}, {"id": + "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions"}]}}}, {"id": + "3032ffb8-8582-11ef-8bad-da7ad0900005", "type": "roles", "attributes": {"created_at": + "2024-10-08T14:32:47.265744Z", "managed": true, "modified_at": "2024-10-08T14:32:47.266206Z", + "name": "Datadog Read Only Role", "team_count": 0, "user_count": 2}, "relationships": + {"permissions": {"data": [{"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": "permissions"}, + {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions"}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", + "type": "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": "permissions"}, + {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, {"id": + "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": "permissions"}, + {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": "permissions"}, {"id": + "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", + "type": "permissions"}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": + "permissions"}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, + {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": "permissions"}, {"id": + "5de1e178-8536-11ea-968a-2fd9395bff90", "type": "permissions"}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": + "permissions"}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": + "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": + "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": "permissions"}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", + "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, + {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, + {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": "permissions"}, {"id": + "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": "permissions"}, {"id": + "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", + "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, + {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, {"id": + "54f98c32-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "type": "permissions"}]}}}, {"id": "302b4f34-8582-11ef-b6a4-da7ad0900005", + "type": "roles", "attributes": {"created_at": "2024-10-08T14:32:47.215056Z", + "managed": true, "modified_at": "2024-10-08T14:32:47.215828Z", "name": "Datadog + Standard Role", "team_count": 0, "user_count": 3}, "relationships": {"permissions": + {"data": [{"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, + {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": + "65eea998-f6a1-11ed-9953-da7ad0900005", "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions"}, {"id": + "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", + "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, + {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, {"id": + "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": "permissions"}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", + "type": "permissions"}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": + "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": "permissions"}, + {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, {"id": + "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", + "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": "permissions"}, {"id": + "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions"}, + {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions"}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions"}, {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, + {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": + "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", + "type": "permissions"}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions"}, {"id": + "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": "permissions"}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", + "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions"}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152", "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": + "permissions"}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, + {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005", "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "04668bde-ec5c-11ea-9483-fb6cb6586c6a", "type": "permissions"}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", + "type": "permissions"}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": + "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", "type": "permissions"}, + {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, {"id": + "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": + "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, + {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": + "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "type": "permissions"}, + {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": "permissions"}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions"}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "11280c24-cce8-11ee-af00-da7ad0900005", "type": "permissions"}, {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions"}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "type": + "permissions"}, {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions"}, + {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", "type": "permissions"}, {"id": + "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", + "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": + "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions"}, + {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": + "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", + "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": "permissions"}, + {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", "type": + "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": "permissions"}, + {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, {"id": + "e31cca10-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions"}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, + {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions"}, {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": + "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": + "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", + "type": "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": + "permissions"}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, + {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions"}, {"id": + "e31e6b54-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": + "permissions"}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, + {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": "permissions"}, {"id": + "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": + "permissions"}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": + "d039cfec-b44f-11ed-8db8-da7ad0900005", "type": "permissions"}, {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", + "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": + "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": "permissions"}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": + "permissions"}, {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, + {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": + "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, + {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions"}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", + "type": "permissions"}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions"}, {"id": + "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, {"id": + "9bb09240-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", + "type": "permissions"}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, + {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions"}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions"}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", + "type": "permissions"}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": + "permissions"}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, + {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": + "54f98c32-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "type": "permissions"}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", "type": + "permissions"}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions"}]}}}], + "meta": {"page": {"total_count": 4, "total_filtered_count": 4}}}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +version: 1 diff --git a/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_sync.frozen b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_sync.frozen new file mode 100644 index 000000000..593bc933f --- /dev/null +++ b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_sync.frozen @@ -0,0 +1 @@ +2025-08-27T16:02:52.990598-04:00 \ No newline at end of file diff --git a/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_sync.yaml b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_sync.yaml new file mode 100644 index 000000000..f0c18f3c8 --- /dev/null +++ b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_sync.yaml @@ -0,0 +1,7147 @@ +interactions: +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/rum/applications + response: + body: + string: '{"data": [{"type": "rum_application", "attributes": {"tags": [], "updated_at": + 1756321932553, "remote_config_id": "0256b730-312e-419a-904f-2ab6d9836eba", + "created_at": 1756321641996, "name": "Test RUM Application", "type": "browser", + "application_id": "16371816-ab2a-41aa-b12a-40ec4d9628e8", "is_active": true, + "product_scales": {"rum_event_processing_scale": {"last_modified_at": 1756321641996, + "state": "ALL"}, "product_analytics_retention_scale": {"last_modified_at": + 1756321641996, "state": "NONE"}}, "created_by_handle": "michael.richey@datadoghq.com", + "org_id": 1000315894, "updated_by_handle": "Datadog", "product_analytics_replay_sample_rate": + 100}, "id": "16371816-ab2a-41aa-b12a-40ec4d9628e8"}]}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/rum/applications/16371816-ab2a-41aa-b12a-40ec4d9628e8 + response: + body: + string: '{"data": {"type": "rum_application", "attributes": {"tags": [], "updated_by_handle": + "Datadog", "product_scales": {"product_analytics_retention_scale": {"state": + "NONE", "last_modified_at": 1756321641996}, "rum_event_processing_scale": + {"state": "ALL", "last_modified_at": 1756321641996}}, "application_id": "16371816-ab2a-41aa-b12a-40ec4d9628e8", + "org_id": 1000315894, "created_by_handle": "michael.richey@datadoghq.com", + "created_at": 1756321641996, "updated_at": 1756321932553, "client_token": + "pubcfef5fa71c23a0c961cc1f1f69db5a32", "hash": "pubcfef5fa71c23a0c961cc1f1f69db5a32", + "name": "Test RUM Application", "is_active": true, "remote_config_id": "0256b730-312e-419a-904f-2ab6d9836eba", + "type": "browser", "product_analytics_replay_sample_rate": 100}, "id": "16371816-ab2a-41aa-b12a-40ec4d9628e8"}}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: '{"data": {"type": "rum_application_create", "attributes": {"tags": [], + "product_scales": {"product_analytics_retention_scale": {}, "rum_event_processing_scale": + {"state": "ALL"}}, "name": "Test RUM Application", "type": "browser", "product_analytics_replay_sample_rate": + 100}}}' + headers: + Content-Type: + - application/json + method: POST + uri: https://api.us5.datadoghq.com/api/v2/rum/applications + response: + body: + string: '{"data": {"type": "rum_application", "attributes": {"product_scales": + {"rum_event_processing_scale": {"state": "ALL", "last_modified_at": 1756324973902}, + "product_analytics_retention_scale": {"state": "NONE", "last_modified_at": + 1756324973902}}, "updated_by_handle": "17d29c8a-6285-11f0-be9b-76de006a05ea", + "client_token": "pubf4ff9502d96dea4a77800b946231fd9b", "org_id": 1300336245, + "created_by_handle": "17d29c8a-6285-11f0-be9b-76de006a05ea", "product_analytics_replay_sample_rate": + 100, "is_active": false, "created_at": 1756324973902, "name": "Test RUM Application", + "hash": "pubf4ff9502d96dea4a77800b946231fd9b", "application_id": "2a7320bc-904c-437d-9f6b-854e8675314d", + "updated_at": 1756324973902, "type": "browser", "tags": []}, "id": "2a7320bc-904c-437d-9f6b-854e8675314d"}}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/users?page%5Bnumber%5D=0&page%5Bsize%5D=500 + response: + body: + string: '{"data": [{"type": "users", "id": "6b69113d-6f18-11f0-9ad5-1ad15dd71168", + "attributes": {"name": "Ida Adjivon", "handle": "ida.adjivon@datadoghq.com", + "created_at": "2025-08-01T20:45:12.043180+00:00", "modified_at": "2025-08-01T21:35:25.635446+00:00", + "email": "ida.adjivon@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/d3ff11e3ff125d30050f4dfff3fa614c?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "81f6f2c7-923f-11ef-879a-6ee0822e247c", "attributes": {"name": "Justine + Lo", "handle": "justine.lo@datadoghq.com", "created_at": "2024-10-24T19:38:13.281489+00:00", + "modified_at": "2024-10-25T14:18:33.835459+00:00", "email": "justine.lo@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/7d75964971289cf50e6090d76b45e3f6?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "b301b340-8582-11ef-ba31-3219ecc6cb25", "attributes": {"name": "Louis + Cheynel", "handle": "louis.cheynel@datadoghq.com", "created_at": "2024-10-08T14:36:26.725077+00:00", + "modified_at": "2025-02-19T21:12:46.164959+00:00", "email": "louis.cheynel@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/791d1a56daa2bd0f5bb25ed286d3f8bb?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": true, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Disabled", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "30533c3c-8582-11ef-938f-cecf6f9ed4ad", "attributes": {"name": "Michael + Richey", "handle": "michael.richey+ddreu1@datadoghq.com", "created_at": "2024-10-08T14:32:47.477901+00:00", + "modified_at": "2024-10-08T14:32:47.477901+00:00", "email": "michael.richey+ddreu1@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/b5b0452adbe01caf57c1e5f6fb97a631?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "693fe720-9569-11ef-969d-da7ad0900005"}, {"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, + "org": {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "98fe080d-8fda-11ef-aa03-c6ac9d6cb0b0", "attributes": + {"name": "Michael Richey", "handle": "michael.richey@datadoghq.com", "created_at": + "2024-10-21T18:30:50.420260+00:00", "modified_at": "2025-03-03T15:47:53.789029+00:00", + "email": "michael.richey@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/3ae7b2387f1a71bbb857d6f03993bdf3?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "b32e572e-8582-11ef-98fe-f2a776cd34b8", "attributes": {"name": "Ron + Hay", "handle": "ron.hay@datadoghq.com", "created_at": "2024-10-08T14:36:27.017641+00:00", + "modified_at": "2025-06-10T13:33:23.138895+00:00", "email": "ron.hay@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/1c9c2a5daac55fc5ae86178cd5e7b9c2?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "265f9002-9b9e-11ef-9152-56a58ecd5b70", "attributes": + {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com", "created_at": + "2024-11-05T17:48:22.271026+00:00", "modified_at": "2025-01-23T19:52:06.634848+00:00", + "email": "sherzod.karimov@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/993f2cc00ad75833dbc76f2a93bb227d?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "693fe720-9569-11ef-969d-da7ad0900005"}, {"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "b32f283f-8582-11ef-be6e-1e59aae1ca5b", "attributes": + {"name": "Tim Alexander", "handle": "tim.alexander@datadoghq.com", "created_at": + "2024-10-08T14:36:27.022996+00:00", "modified_at": "2024-10-08T15:29:54.659973+00:00", + "email": "tim.alexander@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/6269dae26686287d4bdd307a26e33f34?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}], + "included": [{"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005", + "attributes": {"name": "Datadog Admin Role", "managed": true, "created_at": + "2024-10-08T14:32:47.147289+00:00", "modified_at": "2024-10-08T14:32:47.147932+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e"}, {"type": + "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": "permissions", + "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", "id": + "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": + "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": "permissions", + "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", "id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d"}, + {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19"}, {"type": + "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, {"type": "permissions", + "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": "permissions", "id": + "04668d0a-ec5c-11ea-9483-37d199df4587"}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, + {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc"}, {"type": + "permissions", "id": "04668f62-ec5c-11ea-9483-0fe541ab993f"}, {"type": "permissions", + "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02"}, {"type": "permissions", "id": + "046690de-ec5c-11ea-9483-bbcd905fcdca"}, {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf"}, + {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": + "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", + "id": "8b753262-f925-11ea-82fc-93f07fd96e76"}, {"type": "permissions", "id": + "9311970e-f925-11ea-ab4d-1760e76381c1"}, {"type": "permissions", "id": "998aabac-f925-11ea-b43d-8f1f42f3894e"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "72bc07d8-1472-11eb-a97b-8bff514d7382"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e"}, {"type": + "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": "permissions", + "id": "c8654332-2dce-11eb-9145-d33d26eeb65f"}, {"type": "permissions", "id": + "d23cc894-2dce-11eb-9145-37bf7b2dadc2"}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a"}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", "id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, + {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005"}, {"type": + "permissions", "id": "b39fb79a-90af-11eb-9428-da7ad0900005"}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "993b34d6-b16d-11eb-a891-da7ad0900005"}, + {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, {"type": + "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": + "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "c948b30a-16c7-11ec-88cc-da7ad0900005"}, + {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", + "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": + "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005"}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": + "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005"}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "3ad32264-f311-11ec-a058-da7ad0900005"}, {"type": "permissions", + "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005"}, + {"type": "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", + "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": + "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005"}, + {"type": "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": + "8b254e6a-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005"}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": "81e488c0-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", "id": + "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, + {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, + {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, {"type": + "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": + "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", "id": "4316b75c-093f-11ee-98e9-da7ad0900005"}, + {"type": "permissions", "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": + "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", + "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, {"type": "permissions", "id": + "eadf64b2-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": "eadf675a-2199-11ee-9a0e-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005"}, {"type": "permissions", + "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": + "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", + "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": + "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", + "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}, {"type": "permissions", "id": + "f2cc9374-9841-11ee-a301-da7ad0900005"}, {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005"}, + {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, {"type": + "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": + "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005"}, + {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": + "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", + "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": + "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd09204-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", + "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": + "permissions", "id": "ef950332-13a0-11ef-b582-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75066402-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005"}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", + "id": "06e3004e-5987-11ef-89c3-da7ad0900005"}, {"type": "permissions", "id": + "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", + "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005"}, + {"type": "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": + "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", + "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": + "83fc9760-7c51-11ef-b846-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "80ae7688-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": "71949074-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": + "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", + "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": "permissions", "id": + "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005"}, + {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", + "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", + "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", "id": + "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": "9b00ed28-da87-11ef-9de6-da7ad0900005"}, + {"type": "permissions", "id": "9b010d44-da87-11ef-9de6-da7ad0900005"}, {"type": + "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005"}, {"type": "permissions", + "id": "7ad4419a-e288-11ef-bbbc-da7ad0900005"}, {"type": "permissions", "id": + "4a6c29d6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": "4a6cadb6-e806-11ef-8710-da7ad0900005"}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": + "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", + "id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", "id": + "23f76dc4-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, + {"type": "permissions", "id": "02e65e42-fabc-11ef-a653-da7ad0900005"}, {"type": + "permissions", "id": "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", + "id": "9bb09240-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": + "9bb09a10-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", "id": + "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": "fbf841c6-2618-11f0-8595-da7ad0900005"}, + {"type": "permissions", "id": "2cead6ec-34db-11f0-9eb2-da7ad0900005"}, {"type": + "permissions", "id": "12465c5e-3a5c-11f0-becd-da7ad0900005"}, {"type": "permissions", + "id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005"}, {"type": "permissions", "id": + "d2c0335e-5688-11f0-ad5e-da7ad0900005"}, {"type": "permissions", "id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005"}, + {"type": "permissions", "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005"}, {"type": + "permissions", "id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005"}]}}}, {"type": + "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "attributes": + {"name": "logs_read_index_data", "display_name": "Logs Read Index Data", "description": + "Read log data, possibly scoped to one or more indexes. In order to read log + data, a user must have both this permission and Logs Read Data. This permission + can be granted in a limited capacity per index from the Logs interface or + APIs. If granted via the Roles interface or API the permission has global + scope. Restrictions are limited to the Log Management product.", "created": + "2018-10-31T14:00:23.650159+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", + "attributes": {"name": "logs_modify_indexes", "display_name": "Logs Modify + Indexes", "description": "Read and modify all indexes in your account. This + includes the ability to grant the Logs Read Index Data and Logs Write Exclusion + Filters permission to other roles, for some or all indexes.", "created": "2018-10-31T14:00:23.664332+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "attributes": + {"name": "logs_live_tail", "display_name": "Logs Live Tail", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "created": "2018-10-31T14:00:23.676180+00:00", "group_name": + "Log Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "attributes": + {"name": "logs_write_exclusion_filters", "display_name": "Logs Write Exclusion + Filters", "description": "Add and change exclusion filters for all or some + log indexes. Can be granted in a limited capacity per index to specific roles + via the Logs interface or API. If granted from the Roles interface or API, + the permission has global scope.", "created": "2018-10-31T14:00:23.699543+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "attributes": + {"name": "logs_write_pipelines", "display_name": "Logs Write Pipelines", "description": + "Add and change log pipeline configurations, including the ability to grant + the Logs Write Processors permission to other roles, for some or all pipelines.", + "created": "2018-10-31T14:00:23.710821+00:00", "group_name": "Log Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "505f4538-dd15-11e8-9308-47a4732f715f", "attributes": {"name": "logs_write_processors", + "display_name": "Logs Write Processors", "description": "Add and change some + or all log processor configurations. Can be granted in a limited capacity + per pipeline to specific roles via the Logs interface or API. If granted via + the Roles interface or API the permission has global scope.", "created": "2018-10-31T14:00:24.726927+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e", "attributes": + {"name": "logs_write_archives", "display_name": "Logs Write Archives", "description": + "Add and edit Log Archives.", "created": "2018-10-31T14:00:24.730570+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "attributes": + {"name": "logs_generate_metrics", "display_name": "Logs Generate Metrics", + "description": "Create custom metrics from logs.", "created": "2019-07-25T12:37:55.949477+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "attributes": + {"name": "dashboards_read", "display_name": "Dashboards Read", "description": + "View dashboards.", "created": "2019-09-10T14:41:53.120685+00:00", "group_name": + "Dashboards", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "attributes": {"name": "dashboards_write", + "display_name": "Dashboards Write", "description": "Create and change dashboards.", + "created": "2019-09-10T14:41:53.136336+00:00", "group_name": "Dashboards", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f", "attributes": {"name": "dashboards_public_share", + "display_name": "Shared Dashboards Public Write", "description": "Create, + modify and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "created": "2019-09-10T14:41:53.150548+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "attributes": + {"name": "monitors_read", "display_name": "Monitors Read", "description": + "View monitors.", "created": "2019-09-16T18:49:59.270746+00:00", "group_name": + "Monitors", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "attributes": {"name": "monitors_write", + "display_name": "Monitors Write", "description": "Edit and delete individual + monitors.", "created": "2019-09-16T18:50:07.944781+00:00", "group_name": "Monitors", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "d3159858-d8b2-11e9-a336-e363d6ef331b", "attributes": {"name": "monitors_downtime", + "display_name": "Manage Downtimes", "description": "Set downtimes to suppress + alerts from any monitor in an organization. Mute and unmute monitors. The + ability to write monitors is not required to set downtimes.", "created": "2019-09-16T18:50:16.869407+00:00", + "group_name": "Monitors", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "attributes": + {"name": "logs_read_data", "display_name": "Logs Read Data", "description": + "Read log data. In order to read log data, a user must have both this permission + and Logs Read Index Data. This permission can be restricted with restriction + queries. Restrictions are limited to the Log Management product.", "created": + "2020-04-06T16:29:12.337169+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "attributes": {"name": "logs_read_archives", "display_name": "Logs Read Archives", + "description": "Read Log Archives location and use it for rehydration.", "created": + "2020-04-23T07:45:13.801938+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "attributes": {"name": "security_monitoring_rules_read", "display_name": "Security + Rules Read", "description": "Read Detection Rules.", "created": "2020-06-09T13:55:12.166762+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", + "attributes": {"name": "security_monitoring_rules_write", "display_name": + "Security Rules Write", "description": "Create and edit Detection Rules.", + "created": "2020-06-09T13:55:21.036857+00:00", "group_name": "Cloud Security + Platform", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9", "attributes": {"name": "security_monitoring_signals_read", + "display_name": "Security Signals Read", "description": "View Security Signals.", + "created": "2020-06-09T13:55:29.398066+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", "attributes": {"name": "security_monitoring_signals_write", + "display_name": "Security Signals Write", "description": "Modify Security + Signals.", "created": "2021-08-17T15:11:19.976019+00:00", "group_name": "Cloud + Security Platform", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d", "attributes": + {"name": "user_access_invite", "display_name": "User Access Invite", "description": + "Invite other users to your organization.", "created": "2020-08-25T19:10:01.692112+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", + "attributes": {"name": "user_access_manage", "display_name": "User Access + Manage", "description": "Disable users, manage user roles, manage SAML-to-role + mappings, and configure logs restriction queries.", "created": "2020-08-25T19:10:12.116164+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30", + "attributes": {"name": "user_app_keys", "display_name": "User App Keys", "description": + "View and manage Application Keys owned by the user.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "attributes": {"name": "org_app_keys_read", "display_name": "Org App Keys + Read", "description": "View Application Keys owned by all users in the organization.", + "created": "2020-09-01T14:04:14.317866+00:00", "group_name": "API and Application + Keys", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "04668d0a-ec5c-11ea-9483-37d199df4587", "attributes": {"name": "org_app_keys_write", + "display_name": "Org App Keys Write", "description": "Manage Application Keys + owned by all users in the organization.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "attributes": {"name": "synthetics_private_location_read", "display_name": + "Synthetics Private Locations Read", "description": "View, search, and use + Synthetics private locations.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Synthetic Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", + "attributes": {"name": "synthetics_private_location_write", "display_name": + "Synthetics Private Locations Write", "description": "Create and delete private + locations in addition to having access to the associated installation guidelines.", + "created": "2020-09-01T14:04:14.317866+00:00", "group_name": "Synthetic Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "04668f62-ec5c-11ea-9483-0fe541ab993f", "attributes": {"name": "billing_read", + "display_name": "Billing Read", "description": "View your organization''s + subscription and payment method but not make edits.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "attributes": + {"name": "billing_edit", "display_name": "Billing Edit", "description": "Manage + your organization''s subscription and payment method.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "attributes": {"name": "usage_read", "display_name": "Usage Read", "description": + "View your organization''s usage and usage attribution.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf", "attributes": + {"name": "usage_edit", "display_name": "Usage Edit", "description": "Manage + your organization''s usage attribution set-up.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "attributes": {"name": "metric_tags_write", "display_name": "Metric Tags Write", + "description": "Edit and save tag configurations for custom metrics.", "created": + "2020-09-01T14:04:14.317866+00:00", "group_name": "Metrics", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "attributes": {"name": "logs_write_historical_view", "display_name": "Logs + Write Historical Views", "description": "Rehydrate logs from Archives.", "created": + "2020-09-16T08:42:43.928080+00:00", "group_name": "Log Management", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "attributes": {"name": "audit_logs_read", "display_name": "Audit Trail Read", + "description": "View Audit Trail in your organization.", "created": "2020-09-17T20:37:03.702585+00:00", + "group_name": "Compliance", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9311970e-f925-11ea-ab4d-1760e76381c1", "attributes": + {"name": "api_keys_read", "display_name": "API Keys Read", "description": + "List and retrieve the key values of all API Keys in your organization.", + "created": "2020-09-17T20:37:16.471514+00:00", "group_name": "API and Application + Keys", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "attributes": {"name": "api_keys_write", + "display_name": "API Keys Write", "description": "Create and rename API Keys + for your organization.", "created": "2020-09-17T20:37:27.331389+00:00", "group_name": + "API and Application Keys", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "attributes": + {"name": "synthetics_global_variable_read", "display_name": "Synthetics Global + Variable Read", "description": "View, search, and use Synthetics global variables.", + "created": "2020-09-17T20:37:50.165103+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", "attributes": {"name": "synthetics_global_variable_write", + "display_name": "Synthetics Global Variable Write", "description": "Create, + edit, and delete global variables for Synthetics.", "created": "2020-09-17T20:38:01.966230+00:00", + "group_name": "Synthetic Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "b6858556-f925-11ea-9222-1f47b8677b93", + "attributes": {"name": "synthetics_read", "display_name": "Synthetics Read", + "description": "List and view configured Synthetic tests and test results.", + "created": "2020-09-17T20:38:15.951574+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "attributes": {"name": "synthetics_write", + "display_name": "Synthetics Write", "description": "Create, edit, and delete + Synthetic tests.", "created": "2020-09-17T20:38:27.421632+00:00", "group_name": + "Synthetic Monitoring", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "attributes": + {"name": "synthetics_default_settings_read", "display_name": "Synthetics Default + Settings Read", "description": "View the default settings for Synthetic Monitoring.", + "created": "2020-09-17T20:38:49.527477+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "cf223140-f925-11ea-a3a2-df370532bcf7", "attributes": {"name": "synthetics_default_settings_write", + "display_name": "Synthetics Default Settings Write", "description": "Edit + the default settings for Synthetic Monitoring.", "created": "2020-09-17T20:38:57.244987+00:00", + "group_name": "Synthetic Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", + "attributes": {"name": "logs_write_facets", "display_name": "Logs Write Facets", + "description": "Create or edit Log Facets.", "created": "2020-10-14T12:54:16.607129+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "attributes": + {"name": "service_account_write", "display_name": "Service Account Write", + "description": "Create, disable, and use Service Accounts in your organization.", + "created": "2020-10-22T14:25:34.868208+00:00", "group_name": "Access Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "attributes": {"name": "apm_read", + "display_name": "APM Read", "description": "Read and query APM and Trace Analytics.", + "created": "2020-11-23T20:59:02.902692+00:00", "group_name": "APM", "display_type": + "read", "restricted": true}}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "attributes": {"name": "apm_retention_filter_read", "display_name": "APM Retention + Filters Read", "description": "Read trace retention filters. A user with this + permission can view the retention filters page, list of filters, their statistics, + and creation info.", "created": "2020-11-23T20:59:11.833795+00:00", "group_name": + "APM", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "attributes": {"name": "apm_retention_filter_write", + "display_name": "APM Retention Filters Write", "description": "Create, edit, + and delete trace retention filters. A user with this permission can create + new retention filters, and update or delete to existing retention filters.", + "created": "2020-11-23T20:59:19.531425+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", + "attributes": {"name": "apm_service_ingest_read", "display_name": "APM Service + Ingest Read", "description": "Access service ingestion pages. A user with + this permission can view the service ingestion page, list of root services, + their statistics, and creation info.", "created": "2020-11-23T20:59:25.933546+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "c8654332-2dce-11eb-9145-d33d26eeb65f", "attributes": + {"name": "apm_service_ingest_write", "display_name": "APM Service Ingest Write", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "created": "2020-11-23T20:59:31.352238+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "attributes": + {"name": "apm_apdex_manage_write", "display_name": "APM Apdex Manage Write", + "description": "Set Apdex T value on any service. A user with this permission + can set the T value from the Apdex graph on the service page.", "created": + "2020-11-23T20:59:47.864214+00:00", "group_name": "APM", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c", + "attributes": {"name": "apm_tag_management_write", "display_name": "APM Tag + Management Write", "description": "Edit second primary tag selection. A user + with this permission can modify the second primary tag dropdown in the APM + settings page.", "created": "2020-11-23T21:00:01.066421+00:00", "group_name": + "APM", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "attributes": {"name": "apm_primary_operation_write", + "display_name": "APM Primary Operation Write", "description": "Edit the operation + name value selection. A user with this permission can modify the operation + name list in the APM settings page and the operation name controller on the + service page.", "created": "2020-11-23T21:00:18.680068+00:00", "group_name": + "APM", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", "attributes": {"name": "audit_logs_write", + "display_name": "Audit Trail Write", "description": "Configure Audit Trail + in your organization.", "created": "2020-12-01T19:12:04.940111+00:00", "group_name": + "Compliance", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", "attributes": {"name": "rum_apps_write", + "display_name": "RUM Apps Write", "description": "Create, edit, and delete + RUM applications. Creating a RUM application automatically generates a Client + Token. In order to create Client Tokens directly, a user needs the Client + Tokens Write permission.", "created": "2021-01-11T19:07:15.721075+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "attributes": {"name": "debugger_write", "display_name": "Dynamic Instrumentation + Write", "description": "Edit Dynamic Instrumentation configuration. Create + or modify Dynamic Instrumentation probes that do not capture function state.", + "created": "2021-03-08T15:07:07.319753+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "attributes": {"name": "debugger_read", "display_name": "Dynamic Instrumentation + Read", "description": "View Dynamic Instrumentation configuration.", "created": + "2021-03-08T15:07:07.333513+00:00", "group_name": "APM", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005", + "attributes": {"name": "data_scanner_read", "display_name": "Data Scanner + Read", "description": "View Sensitive Data Scanner configurations and scanning + results.", "created": "2021-03-29T16:56:27.205044+00:00", "group_name": "Compliance", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "attributes": {"name": "data_scanner_write", + "display_name": "Data Scanner Write", "description": "Edit Sensitive Data + Scanner configurations.", "created": "2021-03-29T16:56:27.219481+00:00", "group_name": + "Compliance", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "attributes": {"name": "org_management", + "display_name": "Org Management", "description": "Edit org configurations, + including authentication and certain security preferences such as configuring + SAML, renaming an org, configuring allowed login methods, creating child orgs, + subscribing & unsubscribing from apps in the marketplace, and enabling & disabling + Remote Configuration for the entire organization.", "created": "2021-04-23T17:51:22.555499+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "99397470-b16d-11eb-a891-da7ad0900005", + "attributes": {"name": "security_monitoring_filters_read", "display_name": + "Security Filters Read", "description": "Read Security Filters.", "created": + "2021-05-10T08:56:24.514661+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "993b34d6-b16d-11eb-a891-da7ad0900005", "attributes": {"name": "security_monitoring_filters_write", + "display_name": "Security Filters Write", "description": "Create, edit, and + delete Security Filters.", "created": "2021-05-10T08:56:24.527411+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", + "attributes": {"name": "incident_read", "display_name": "Incidents Read", + "description": "View incidents in Datadog.", "created": "2021-06-22T15:11:07.986072+00:00", + "group_name": "Case and Incident Management", "display_type": "read", "restricted": + true}}, {"type": "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005", + "attributes": {"name": "incident_write", "display_name": "Incidents Write", + "description": "Create, view, and manage incidents in Datadog.", "created": + "2021-06-22T15:11:08.003239+00:00", "group_name": "Case and Incident Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "122f7508-d36c-11eb-b2bf-da7ad0900005", "attributes": {"name": "incident_settings_read", + "display_name": "Incident Settings Read", "description": "View Incident Settings.", + "created": "2021-06-22T15:11:07.995787+00:00", "group_name": "Case and Incident + Management", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "attributes": {"name": "incident_settings_write", + "display_name": "Incident Settings Write", "description": "Configure Incident + Settings.", "created": "2021-06-22T15:11:07.999194+00:00", "group_name": "Case + and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005", "attributes": + {"name": "appsec_event_rule_read", "display_name": "Application Security Management + Event Rules Read", "description": "View Application Security Management Event + Rules.", "created": "2021-07-19T13:26:35.252432+00:00", "group_name": "Cloud + Security Platform", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005", "attributes": + {"name": "appsec_event_rule_write", "display_name": "Application Security + Management Event Rules Write", "description": "Edit Application Security Management + Event Rules.", "created": "2021-07-19T13:26:35.260787+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "attributes": + {"name": "rum_apps_read", "display_name": "RUM Apps Read", "description": + "View RUM Applications data.", "created": "2021-08-02T09:46:22.567371+00:00", + "group_name": "Real User Monitoring", "display_type": "read", "restricted": + true}}, {"type": "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", + "attributes": {"name": "rum_session_replay_read", "display_name": "RUM Session + Replay Read", "description": "View Session Replays.", "created": "2021-08-02T09:46:22.572685+00:00", + "group_name": "Real User Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "c94811de-16c7-11ec-88cc-da7ad0900005", + "attributes": {"name": "security_monitoring_notification_profiles_read", "display_name": + "Security Notification Rules Read", "description": "Read Notification Rules.", + "created": "2021-09-16T08:26:27.288070+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "attributes": {"name": "security_monitoring_notification_profiles_write", + "display_name": "Security Notification Rules Write", "description": "Create, + edit, and delete Notification Rules.", "created": "2021-09-16T08:26:27.292835+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005", + "attributes": {"name": "apm_generate_metrics", "display_name": "APM Generate + Metrics", "description": "Create custom metrics from spans.", "created": "2021-09-16T15:31:28.639581+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005", "attributes": + {"name": "security_monitoring_cws_agent_rules_read", "display_name": "Cloud + Workload Security Agent Rules Read", "description": "Read Cloud Workload Security + Agent Rules.", "created": "2021-11-17T10:41:45.755009+00:00", "group_name": + "Cloud Security Platform", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "f5e1489a-4792-11ec-944b-da7ad0900005", "attributes": + {"name": "security_monitoring_cws_agent_rules_write", "display_name": "Cloud + Workload Security Agent Rules Write", "description": "Create, edit, and delete + Cloud Workload Security Agent Rules.", "created": "2021-11-17T10:41:45.761956+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", + "attributes": {"name": "apm_pipelines_write", "display_name": "APM Pipelines + Write", "description": "Add and change APM pipeline configurations.", "created": + "2021-12-06T14:51:25.389398+00:00", "group_name": "APM", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005", + "attributes": {"name": "apm_pipelines_read", "display_name": "APM Pipelines + Read", "description": "View APM pipeline configurations.", "created": "2021-12-07T11:21:23.741014+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "attributes": + {"name": "observability_pipelines_read", "display_name": "Observability Pipelines + Read", "description": "View pipelines in your organization.", "created": "2021-12-09T00:11:41.567875+00:00", + "group_name": "Observability Pipelines", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "attributes": {"name": "observability_pipelines_write", "display_name": "Observability + Pipelines Write", "description": "Edit pipelines in your organization.", "created": + "2021-12-09T00:11:41.572883+00:00", "group_name": "Observability Pipelines", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "e31e0056-8502-11ec-b266-da7ad0900005", "attributes": {"name": "workflows_read", + "display_name": "Workflows Read", "description": "View workflows.", "created": + "2022-02-03T15:06:38.846399+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "e31f0230-8502-11ec-b266-da7ad0900005", "attributes": {"name": "workflows_write", + "display_name": "Workflows Write", "description": "Create, edit, and delete + workflows.", "created": "2022-02-03T15:06:38.853003+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "workflows_run", "display_name": "Workflows Run", "description": + "Run workflows.", "created": "2022-02-03T15:06:38.849099+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "connections_read", "display_name": "Connections Read", + "description": "List and view available connections. Connections contain secrets + that cannot be revealed.", "created": "2022-02-03T15:06:38.837721+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "connections_write", "display_name": "Connections Write", + "description": "Create and delete connections.", "created": "2022-02-03T15:06:38.843395+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", + "attributes": {"name": "notebooks_read", "display_name": "Notebooks Read", + "description": "View notebooks.", "created": "2022-03-02T18:51:33.435297+00:00", + "group_name": "Notebooks", "display_type": "read", "restricted": true}}, {"type": + "permissions", "id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "attributes": + {"name": "notebooks_write", "display_name": "Notebooks Write", "description": + "Create and change notebooks.", "created": "2022-03-02T18:51:33.439640+00:00", + "group_name": "Notebooks", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005", "attributes": + {"name": "logs_delete_data", "display_name": "Logs Delete Data", "description": + "Delete data from your Logs, including entire indexes.", "created": "2022-02-25T18:51:34.198635+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005", "attributes": + {"name": "rum_generate_metrics", "display_name": "RUM Generate Metrics", "description": + "Create custom metrics from RUM events.", "created": "2022-04-11T16:26:30.469616+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "attributes": {"name": "aws_configurations_manage", "display_name": "AWS Configurations + Manage", "description": "Add or remove but not edit AWS integration configurations.", + "created": "2022-04-26T20:21:48.019179+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "7fbe2266-c59e-11ec-90fb-da7ad0900005", "attributes": {"name": "azure_configurations_manage", + "display_name": "Azure Configurations Manage", "description": "Add or remove + but not edit Azure integration configurations.", "created": "2022-04-26T20:21:48.031171+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "attributes": + {"name": "gcp_configurations_manage", "display_name": "GCP Configurations + Manage", "description": "Add or remove but not edit GCP integration configurations.", + "created": "2022-04-26T20:21:48.027662+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "attributes": {"name": "manage_integrations", + "display_name": "Integrations Manage", "description": "Install, uninstall, + and configure integrations.", "created": "2022-04-26T20:21:48.034453+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "attributes": + {"name": "usage_notifications_read", "display_name": "Usage Notifications + Read", "description": "Receive notifications and view currently configured + notification settings.", "created": "2022-05-17T13:56:29.090665+00:00", "group_name": + "Billing and Usage", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "attributes": + {"name": "usage_notifications_write", "display_name": "Usage Notifications + Write", "description": "Receive notifications and configure notification settings.", + "created": "2022-05-17T13:56:29.094457+00:00", "group_name": "Billing and + Usage", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "attributes": {"name": "generate_dashboard_reports", + "display_name": "Dashboards Report Write", "description": "Schedule PDF reports + from a dashboard.", "created": "2022-06-06T18:15:47.465864+00:00", "group_name": + "Dashboards", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "f33f74be-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_read", + "display_name": "SLOs Read", "description": "View SLOs and status corrections.", + "created": "2022-06-08T16:20:45.638848+00:00", "group_name": "Service Level + Objectives", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "f340161c-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_write", + "display_name": "SLOs Write", "description": "Create, edit, and delete SLOs.", + "created": "2022-06-08T16:20:45.643085+00:00", "group_name": "Service Level + Objectives", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_corrections", + "display_name": "SLOs Status Corrections", "description": "Apply, edit, and + delete SLO status corrections. A user with this permission can make status + corrections, even if they do not have permission to edit those SLOs.", "created": + "2022-06-08T16:20:45.632820+00:00", "group_name": "Service Level Objectives", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "3ad32264-f311-11ec-a058-da7ad0900005", "attributes": {"name": "monitor_config_policy_write", + "display_name": "Monitor Configuration Policy Write", "description": "Create, + update, and delete monitor configuration policies.", "created": "2022-06-23T16:26:26.854058+00:00", + "group_name": "Monitors", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f42ef088-173a-11ed-8654-da7ad0900005", "attributes": + {"name": "apm_service_catalog_write", "display_name": "Service Catalog Write", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "created": "2022-08-08T16:55:49.060954+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "attributes": + {"name": "apm_service_catalog_read", "display_name": "Service Catalog Read", + "description": "View service catalog and service definitions.", "created": + "2022-08-08T16:55:49.055930+00:00", "group_name": "APM", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", + "attributes": {"name": "logs_write_forwarding_rules", "display_name": "Logs + Write Forwarding Rules", "description": "Add and edit forwarding destinations + and rules for logs.", "created": "2022-08-08T21:30:48.328740+00:00", "group_name": + "Log Management", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005", "attributes": + {"name": "connections_resolve", "display_name": "Connections Resolve", "description": + "Resolve connections.", "created": "2022-08-25T15:26:23.943459+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_protect_read", "display_name": "Application + Security Management Protect Read", "description": "View blocked attackers.", + "created": "2022-10-27T09:25:59.057166+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "attributes": {"name": "appsec_protect_write", + "display_name": "Application Security Management Protect Write", "description": + "Manage blocked attackers.", "created": "2022-10-27T09:25:59.060959+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_activation_read", "display_name": "Application + Security Management 1-click Enablement Read", "description": "View whether + Application Security Management has been enabled or disabled on services via + 1-click enablement with Remote Configuration.", "created": "2022-10-27T09:25:59.047444+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_activation_write", "display_name": "Application + Security Management 1-click Enablement Write", "description": "Enable or disable + Application Security Management on services via 1-click enablement.", "created": + "2022-10-27T09:25:59.053394+00:00", "group_name": "Cloud Security Platform", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "c0490360-5a12-11ed-adbe-da7ad0900005", "attributes": {"name": "apps_run", + "display_name": "Apps View", "description": "View and run Apps in App Builder.", + "created": "2022-11-01T18:26:50.026179+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005", "attributes": + {"name": "apps_write", "display_name": "Apps Write", "description": "Create, + edit, and delete Apps in App Builder.", "created": "2022-11-01T18:26:50.036655+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "926612da-7a4c-11ed-b809-da7ad0900005", + "attributes": {"name": "cases_read", "display_name": "Cases Read", "description": + "View Cases.", "created": "2022-12-12T18:41:21.060748+00:00", "group_name": + "Case and Incident Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "attributes": + {"name": "cases_write", "display_name": "Cases Write", "description": "Create + and update cases.", "created": "2022-12-12T18:41:21.067150+00:00", "group_name": + "Case and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "attributes": + {"name": "apm_remote_configuration_write", "display_name": "APM Remote Configuration + Write", "description": "Edit APM Remote Configuration.", "created": "2022-12-12T20:21:20.723147+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "attributes": + {"name": "apm_remote_configuration_read", "display_name": "APM Remote Configuration + Read", "description": "View APM Remote Configuration.", "created": "2022-12-12T20:21:20.716560+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "attributes": + {"name": "ci_visibility_read", "display_name": "CI Visibility Read", "description": + "View CI Visibility.", "created": "2022-12-13T16:02:28.814628+00:00", "group_name": + "Software Delivery", "display_type": "read", "restricted": true}}, {"type": + "permissions", "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "attributes": + {"name": "ci_visibility_write", "display_name": "CI Visibility Tests Write", + "description": "Edit flaky tests and delete Test Services.", "created": "2022-12-13T16:02:28.821529+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "ci_provider_settings_write", "display_name": "CI Provider + Settings Write", "description": "Edit CI Provider settings. Manage GitHub + accounts and repositories for enabling CI Visibility and job logs collection.", + "created": "2022-12-13T16:02:28.806929+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "attributes": {"name": "ci_visibility_settings_write", + "display_name": "CI Visibility Settings Write", "description": "Configure + CI Visibility settings. Set a repository default branch, enable GitHub comments, + and delete test services.", "created": "2022-12-13T16:02:28.818035+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "intelligent_test_runner_activation_write", "display_name": + "Intelligent Test Runner Activation Write", "description": "Deprecated. Enable + or disable Intelligent Test Runner.", "created": "2022-12-13T16:02:28.826271+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "intelligent_test_runner_settings_write", "display_name": + "Intelligent Test Runner Settings Write", "description": "Deprecated. Edit + Intelligent Test Runner settings, such as modifying ITR excluded branch list.", + "created": "2022-12-13T16:02:28.830112+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "55f64460-7d61-11ed-9c36-da7ad0900005", "attributes": {"name": "continuous_profiler_read", + "display_name": "Continuous Profiler Read", "description": "View data in Continuous + Profiler.", "created": "2022-12-16T16:47:32.584514+00:00", "group_name": "APM", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005", "attributes": {"name": "teams_manage", + "display_name": "Teams Manage", "description": "Manage Teams. Create, delete, + rename, and edit metadata of all Teams. To control Team membership across + all Teams, use the User Access Manage permission.", "created": "2023-01-18T20:45:46.126002+00:00", + "group_name": "Teams", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005", "attributes": + {"name": "security_monitoring_findings_read", "display_name": "Security Monitoring + Findings Read", "description": "View a list of findings that include both + misconfigurations and identity risks.", "created": "2023-02-24T14:30:40.720618+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", + "attributes": {"name": "incident_notification_settings_read", "display_name": + "Incident Notification Settings Read", "description": "View Incidents Notification + settings.", "created": "2023-02-24T17:27:09.998449+00:00", "group_name": "Case + and Incident Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "attributes": + {"name": "incident_notification_settings_write", "display_name": "Incident + Notification Settings Write", "description": "Configure Incidents Notification + settings.", "created": "2023-02-24T17:27:09.998449+00:00", "group_name": "Case + and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "attributes": + {"name": "ci_ingestion_control_write", "display_name": "CI Visibility Ingestion + Control Write", "description": "Edit CI Ingestion Control exclusion filters.", + "created": "2023-03-24T10:25:52.891502+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005", "attributes": {"name": "error_tracking_write", + "display_name": "Error Tracking Issue Write", "description": "Edit Error Tracking + issues.", "created": "2023-03-27T16:55:39.540192+00:00", "group_name": "Error + Tracking", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "81e488c0-db35-11ed-a170-da7ad0900005", "attributes": {"name": "watchdog_alerts_write", + "display_name": "Watchdog Alerts Write", "description": "Manage Watchdog Alerts.", + "created": "2023-04-15T02:30:37.731056+00:00", "group_name": "Watchdog", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005", + "attributes": {"name": "saved_views_write", "display_name": "Saved Views Write", + "description": "Modify Saved Views across all Datadog products.", "created": + "2023-04-15T02:30:37.731056+00:00", "group_name": "Cross-Product Features", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "94c8a4da-de87-11ed-9e92-da7ad0900005", "attributes": {"name": "client_tokens_read", + "display_name": "Client Tokens Read", "description": "Read Client Tokens. + Unlike API keys, client tokens may be exposed client-side in JavaScript code + for web browsers and other clients to send data to Datadog.", "created": "2023-04-19T07:55:41.646942+00:00", + "group_name": "API and Application Keys", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "94c927e8-de87-11ed-9e92-da7ad0900005", + "attributes": {"name": "client_tokens_write", "display_name": "Client Tokens + Write", "description": "Create and edit Client Tokens. Unlike API keys, client + tokens may be exposed client-side in JavaScript code for web browsers and + other clients to send data to Datadog.", "created": "2023-04-19T07:55:41.646942+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "619b2642-f41b-11ed-b4e1-da7ad0900005", + "attributes": {"name": "event_correlation_config_read", "display_name": "Event + Correlation Config Read", "description": "Read Event Correlation Configuration + data such as Correlation Rules and Settings.", "created": "2023-05-16T18:56:35.719150+00:00", + "group_name": "Events", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "attributes": + {"name": "event_correlation_config_write", "display_name": "Event Correlation + Config Write", "description": "Manage Event Correlation Configuration such + as Correlation Rules and Settings.", "created": "2023-05-16T18:56:35.719150+00:00", + "group_name": "Events", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005", "attributes": + {"name": "event_config_write", "display_name": "Event Config Write", "description": + "Manage general event configuration such as API Emails.", "created": "2023-05-20T00:00:57.864864+00:00", + "group_name": "Events", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "attributes": + {"name": "security_monitoring_findings_write", "display_name": "Security Monitoring + Findings Write", "description": "Mute CSPM Findings.", "created": "2023-05-23T21:45:42.705754+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "attributes": {"name": "cloud_cost_management_read", "display_name": "Cloud + Cost Management Read", "description": "View Cloud Cost pages and the cloud + cost data source in dashboards and notebooks. For more details, see the Cloud + Cost Management docs.", "created": "2023-05-31T19:20:42.284425+00:00", "group_name": + "Cloud Cost Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "attributes": + {"name": "cloud_cost_management_write", "display_name": "Cloud Cost Management + Write", "description": "Configure cloud cost accounts and global customizations. + For more details, see the Cloud Cost Management docs.", "created": "2023-05-31T19:20:42.284425+00:00", + "group_name": "Cloud Cost Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", + "attributes": {"name": "host_tags_write", "display_name": "Host Tags Write", + "description": "Add and change tags on hosts.", "created": "2023-05-31T05:12:01.547070+00:00", + "group_name": "Metrics", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005", "attributes": + {"name": "ci_visibility_pipelines_write", "display_name": "CI Visibility Pipelines + Write", "description": "Create CI Visibility pipeline spans using the API.", + "created": "2023-06-01T10:15:50.891463+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "attributes": {"name": "quality_gate_rules_read", + "display_name": "Quality Gate Rules Read", "description": "View Quality Gate + Rules.", "created": "2023-06-19T16:27:34.826612+00:00", "group_name": "Software + Delivery", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "attributes": {"name": "quality_gate_rules_write", + "display_name": "Quality Gate Rules Write", "description": "Edit Quality Gate + Rules.", "created": "2023-06-19T16:27:34.826612+00:00", "group_name": "Software + Delivery", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "attributes": {"name": "metrics_metadata_write", + "display_name": "Metrics Metadata Write", "description": "Edit metadata on + metrics.", "created": "2023-06-23T16:21:25.009293+00:00", "group_name": "Metrics", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "4316b75c-093f-11ee-98e9-da7ad0900005", "attributes": {"name": "rum_delete_data", + "display_name": "RUM Delete Data", "description": "Delete data from RUM.", + "created": "2023-06-12T16:36:20.819036+00:00", "group_name": "Real User Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "4316826e-093f-11ee-98e9-da7ad0900005", "attributes": {"name": "appsec_vm_write", + "display_name": "Vulnerability Management Write", "description": "Update status + or assignee of vulnerabilities.", "created": "2023-06-12T16:36:20.819036+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "attributes": {"name": "reference_tables_write", "display_name": "Reference + Tables Write", "description": "Create or modify Reference Tables.", "created": + "2023-06-12T16:36:20.819036+00:00", "group_name": "Reference Tables", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "attributes": {"name": "rum_playlist_write", "display_name": "RUM Playlist + Write", "description": "Create, update, and delete RUM playlists. Add and + remove sessions from RUM playlists.", "created": "2023-07-07T16:26:50.792866+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", + "attributes": {"name": "observability_pipelines_delete", "display_name": "Observability + Pipelines Delete", "description": "Delete pipelines from your organization.", + "created": "2023-07-13T16:25:44.923503+00:00", "group_name": "Observability + Pipelines", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "attributes": {"name": "observability_pipelines_deploy", + "display_name": "Observability Pipelines Deploy", "description": "Deploy pipelines + in your organization.", "created": "2023-07-13T16:25:44.923503+00:00", "group_name": + "Observability Pipelines", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "attributes": + {"name": "processes_generate_metrics", "display_name": "Processes Generate + Metrics", "description": "Create custom metrics from processes.", "created": + "2023-07-12T16:27:03.457484+00:00", "group_name": "Processes", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "attributes": {"name": "api_keys_delete", "display_name": "API Keys Delete", + "description": "Delete API Keys for your organization.", "created": "2023-07-12T16:27:03.457484+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "attributes": {"name": "agent_flare_collection", "display_name": "Agent Flare + Collection", "description": "Collect an Agent flare with Fleet Automation.", + "created": "2023-07-13T16:25:44.923503+00:00", "group_name": "Fleet Automation", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005", "attributes": {"name": "org_connections_write", + "display_name": "Org Connections Write", "description": "Control which organizations + can query your organization''s data.", "created": "2023-07-20T16:25:38.185785+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005", + "attributes": {"name": "org_connections_read", "display_name": "Org Connections + Read", "description": "View which organizations can query data from your organization. + Query data from other organizations.", "created": "2023-07-20T16:25:38.185785+00:00", + "group_name": "Access Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "attributes": + {"name": "facets_write", "display_name": "Facets Write", "description": "Manage + facets for products other than Log Management, such as APM Traces. To modify + Log Facets, use Logs Write Facets.", "created": "2023-07-27T16:26:26.546986+00:00", + "group_name": "Cross-Product Features", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", + "attributes": {"name": "security_monitoring_suppressions_read", "display_name": + "Security Suppressions Read", "description": "Read Rule Suppressions.", "created": + "2023-08-17T16:25:26.209216+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "attributes": {"name": "security_monitoring_suppressions_write", + "display_name": "Security Suppressions Write", "description": "Write Rule + Suppressions.", "created": "2023-08-17T16:25:26.209216+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "attributes": + {"name": "static_analysis_settings_write", "display_name": "Static Analysis + Settings Write", "description": "Edit Static Analysis settings.", "created": + "2023-08-18T16:25:56.688500+00:00", "group_name": "Software Delivery", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005", + "attributes": {"name": "cd_visibility_read", "display_name": "CD Visibility + Read", "description": "View CD Visibility.", "created": "2023-09-08T23:01:01.285130+00:00", + "group_name": "Software Delivery", "display_type": "read", "restricted": true}}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "attributes": + {"name": "ndm_netflow_port_mappings_write", "display_name": "NDM Netflow Port + Mappings Write", "description": "Write NDM Netflow port mappings.", "created": + "2023-10-12T16:26:03.661255+00:00", "group_name": "Network Device Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "2de35000-69e5-11ee-996b-da7ad0900005", "attributes": {"name": "appsec_vm_read", + "display_name": "Vulnerability Management Read", "description": "View infrastructure, + application code and library vulnerabilities. This does not restrict access + to the vulnerability data source through the API or inventory SQL.", "created": + "2023-10-13T16:25:53.335225+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": true}}, {"type": "permissions", "id": + "54f38ef0-6f65-11ee-a094-da7ad0900005", "attributes": {"name": "debugger_capture_variables", + "display_name": "Dynamic Instrumentation Capture Variables", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "created": "2023-10-20T16:25:50.268064+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "f2cc9374-9841-11ee-a301-da7ad0900005", + "attributes": {"name": "error_tracking_settings_write", "display_name": "Error + Tracking Settings Write", "description": "Disable Error Tracking, edit inclusion + filters, and edit rate limit.", "created": "2023-12-11T16:25:50.880331+00:00", + "group_name": "Error Tracking", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "attributes": + {"name": "error_tracking_exclusion_filters_write", "display_name": "Error + Tracking Exclusion Filters Write", "description": "Add or change Error Tracking + exclusion filters.", "created": "2023-12-11T16:25:50.880331+00:00", "group_name": + "Error Tracking", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "attributes": + {"name": "integrations_read", "display_name": "Integrations Read", "description": + "View integrations and their configurations.", "created": "2024-01-23T16:26:45.209142+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "attributes": + {"name": "apm_api_catalog_write", "display_name": "API Catalog Write", "description": + "Add, modify, and delete API catalog definitions.", "created": "2024-02-02T16:25:57.659403+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "attributes": + {"name": "apm_api_catalog_read", "display_name": "API Catalog Read", "description": + "View API catalog and API definitions.", "created": "2024-02-02T16:25:57.659403+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "11280c24-cce8-11ee-af00-da7ad0900005", "attributes": + {"name": "containers_generate_image_metrics", "display_name": "Containers + Write Image Trend Metrics", "description": "Create or edit trend metrics from + container images.", "created": "2024-02-16T16:25:58.736360+00:00", "group_name": + "Containers", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "attributes": {"name": "rum_extend_retention", + "display_name": "RUM Session Replay Extend Retention", "description": "Extend + the retention of Session Replays.", "created": "2024-03-14T16:26:30.797793+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005", + "attributes": {"name": "on_prem_runner_read", "display_name": "Private Action + Runner Read", "description": "View and search Private Action Runners for Workflow + Automation and App Builder.", "created": "2024-03-18T16:26:33.583707+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", + "attributes": {"name": "on_prem_runner_use", "display_name": "Private Action + Runner Contribute", "description": "Attach a Private Action Runner to a connection.", + "created": "2024-03-18T16:26:33.583707+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "attributes": + {"name": "on_prem_runner_write", "display_name": "Private Action Runner Write", + "description": "Create and edit Private Action Runners for Workflow Automation + and App Builder.", "created": "2024-03-18T16:26:33.583707+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", + "attributes": {"name": "dora_settings_write", "display_name": "DORA Settings + Write", "description": "Edit the settings for DORA.", "created": "2024-04-08T16:25:58.692075+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", + "attributes": {"name": "agent_upgrade_write", "display_name": "Agent Upgrade", + "description": "Upgrade Datadog Agents with Fleet Automation.", "created": + "2024-04-22T16:25:53.208974+00:00", "group_name": "Fleet Automation", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", + "attributes": {"name": "continuous_profiler_pgo_read", "display_name": "Read + Continuous Profiler Profile-Guided Optimization (PGO) Data", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "created": "2024-04-23T16:30:30.492439+00:00", "group_name": "APM", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005", + "attributes": {"name": "oci_configurations_manage", "display_name": "OCI Configurations + Manage", "description": "Add or remove but not edit Oracle Cloud integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "attributes": {"name": "aws_configuration_read", + "display_name": "AWS Configuration Read", "description": "View but not add, + remove, or edit AWS integration configurations.", "created": "2024-04-23T16:30:30.492439+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "ccd09204-018e-11ef-afb6-da7ad0900005", "attributes": + {"name": "azure_configuration_read", "display_name": "Azure Configuration + Read", "description": "View but not add, remove, or edit Azure integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "attributes": {"name": "gcp_configuration_read", + "display_name": "GCP Configuration Read", "description": "View but not add, + remove, or edit GCP integration configurations.", "created": "2024-04-23T16:30:30.492439+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005", "attributes": + {"name": "oci_configuration_read", "display_name": "OCI Configuration Read", + "description": "View but not add, remove, or edit Oracle Cloud integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "attributes": {"name": "aws_configuration_edit", + "display_name": "AWS Configuration Edit", "description": "Edit but not add + or remove AWS integration configurations.", "created": "2024-05-02T16:26:19.141095+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "attributes": + {"name": "azure_configuration_edit", "display_name": "Azure Configuration + Edit", "description": "Edit but not add or remove Azure integration configurations.", + "created": "2024-05-02T16:26:19.141095+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005", "attributes": {"name": "gcp_configuration_edit", + "display_name": "GCP Configuration Edit", "description": "Edit but not add + or remove GCP integration configurations.", "created": "2024-05-02T16:26:19.141095+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "attributes": + {"name": "oci_configuration_edit", "display_name": "OCI Configuration Edit", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "created": "2024-05-02T16:26:19.141095+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "attributes": {"name": "llm_observability_read", + "display_name": "LLM Observability Read", "description": "View LLM Observability.", + "created": "2024-05-03T16:26:22.500447+00:00", "group_name": "LLM Observability", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ef950332-13a0-11ef-b582-da7ad0900005", "attributes": {"name": "flex_logs_config_write", + "display_name": "Flex Logs Configuration Write", "description": "Manage your + organization''s flex logs configuration.", "created": "2024-05-16T16:25:40.697830+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "21c5475c-228f-11ef-a00d-da7ad0900005", "attributes": + {"name": "reference_tables_read", "display_name": "Reference Tables Read", + "description": "View Reference Tables.", "created": "2024-06-04T16:26:01.400743+00:00", + "group_name": "Reference Tables", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "75066402-3890-11ef-bbb1-da7ad0900005", "attributes": + {"name": "fleet_policies_write", "display_name": "Agent Configuration Management", + "description": "Create and deploy Agent configurations.", "created": "2024-07-02T16:30:56.156267+00:00", + "group_name": "Fleet Automation", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005", "attributes": + {"name": "orchestration_custom_resource_definitions_write", "display_name": + "Custom Resource Definition Write", "description": "Enable, disable and update + custom resource indexing.", "created": "2024-07-02T16:30:56.156267+00:00", + "group_name": "Orchestration", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005", "attributes": + {"name": "code_analysis_read", "display_name": "Code Analysis Read", "description": + "View Code Analysis.", "created": "2024-08-06T16:26:25.858118+00:00", "group_name": + "Software Delivery", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005", "attributes": + {"name": "orchestration_workload_scaling_write", "display_name": "Workload + Scaling Write", "description": "Enable, disable, and configure workload autoscaling. + Apply workload scaling recommendations.", "created": "2024-08-06T16:26:25.858118+00:00", + "group_name": "Orchestration", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "06e3004e-5987-11ef-89c3-da7ad0900005", "attributes": + {"name": "llm_observability_write", "display_name": "LLM Observability Write", + "description": "Create, Update, and Delete LLM Observability resources including + User Defined Evaluations, OOTB Evaluations, and User Defined Topics.", "created": + "2024-08-13T15:16:34.275999+00:00", "group_name": "LLM Observability", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "attributes": {"name": "observability_pipelines_capture_read", "display_name": + "Observability Pipelines Live Capture Read", "description": "View captured + events of pipelines in your organization.", "created": "2024-08-27T16:50:39.669348+00:00", + "group_name": "Observability Pipelines", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005", + "attributes": {"name": "observability_pipelines_capture_write", "display_name": + "Observability Pipelines Live Capture Write", "description": "Capture live + events of pipelines in your organization.", "created": "2024-08-27T16:50:39.669348+00:00", + "group_name": "Observability Pipelines", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", + "attributes": {"name": "apps_datastore_read", "display_name": "Actions Datastore + Read", "description": "Allows read access to the data within the Actions Datastore.", + "created": "2024-08-22T16:25:15.890147+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "attributes": + {"name": "apps_datastore_write", "display_name": "Actions Datastore Write", + "description": "Allows modification of data within the Actions Datastore, + including adding, editing, and deleting records.", "created": "2024-08-22T16:25:15.890147+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", + "attributes": {"name": "apps_datastore_manage", "display_name": "Actions Datastore + Manage", "description": "Allows management of the Actions Datastore, including + creating, updating, and deleting the datastore itself.", "created": "2024-08-22T16:25:15.890147+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "attributes": {"name": "security_pipelines_read", "display_name": "Security + Pipelines Read", "description": "View Security Pipelines.", "created": "2024-08-30T16:25:36.779590+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "attributes": {"name": "security_pipelines_write", "display_name": "Security + Pipelines Write", "description": "Create, edit, and delete Security Pipelines.", + "created": "2024-08-30T16:25:36.779590+00:00", "group_name": "Cloud Security + Platform", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "8e9b2142-7511-11ef-b225-da7ad0900005", "attributes": {"name": "connection_groups_write", + "display_name": "Connection Groups Write", "description": "Create, delete + and update connection groups.", "created": "2024-09-17T16:26:13.918826+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "attributes": {"name": "quality_gates_evaluations_read", "display_name": "Quality + Gates Evaluations", "description": "Allow quality gates evaluations.", "created": + "2024-09-23T18:00:21.053557+00:00", "group_name": "Software Delivery", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "attributes": {"name": "connection_groups_read", "display_name": "Connection + Groups Read", "description": "Read and use connection groups.", "created": + "2024-09-26T14:35:22.139553+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "83fc9760-7c51-11ef-b846-da7ad0900005", "attributes": {"name": "security_monitoring_cws_agent_rules_actions", + "display_name": "Cloud Workload Security Agent Actions", "description": "Managing + actions on Cloud Workload Security Agent Rules.", "created": "2024-09-26T21:51:42.032795+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005", + "attributes": {"name": "rum_retention_filters_read", "display_name": "RUM + Retention Filters Read", "description": "View RUM Retention filters data.", + "created": "2024-10-02T23:15:17.740884+00:00", "group_name": "Real User Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "300f81cc-8114-11ef-84c0-da7ad0900005", "attributes": {"name": "rum_retention_filters_write", + "display_name": "RUM Retention Filters Write", "description": "Write RUM Retention + filters.", "created": "2024-10-02T23:15:17.740884+00:00", "group_name": "Real + User Monitoring", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005", "attributes": + {"name": "ddsql_editor_read", "display_name": "DDSQL Editor Read", "description": + "View and use DDSQL Editor.", "created": "2024-10-14T13:30:22.950954+00:00", + "group_name": "DDSQL Editor", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "attributes": + {"name": "disaster_recovery_status_read", "display_name": "Datadog Disaster + Recovery Read", "description": "View the disaster recovery status.", "created": + "2024-11-01T21:30:23.309658+00:00", "group_name": "Disaster Recovery", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "attributes": {"name": "disaster_recovery_status_write", "display_name": "Datadog + Disaster Recovery Write", "description": "Update the disaster recovery status.", + "created": "2024-11-01T21:30:23.309658+00:00", "group_name": "Disaster Recovery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "71949074-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "rum_settings_write", + "display_name": "RUM Settings Write", "description": "Write RUM Settings.", + "created": "2024-11-07T13:30:24.249160+00:00", "group_name": "Real User Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "71957e76-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "test_optimization_read", + "display_name": "Test Optimization Read", "description": "View Test Optimization.", + "created": "2024-11-07T13:30:24.249160+00:00", "group_name": "Software Delivery", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "71958024-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "test_optimization_write", + "display_name": "Test Optimization Write", "description": "Manage flaky tests + for Test Optimization.", "created": "2024-11-07T13:30:24.249160+00:00", "group_name": + "Software Delivery", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "attributes": + {"name": "test_optimization_settings_write", "display_name": "Test Optimization + Settings Write", "description": "Create, delete and update Test Optimization + settings.", "created": "2024-11-19T19:06:07.652237+00:00", "group_name": "Software + Delivery", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "attributes": {"name": "security_comments_write", + "display_name": "Security Comments Write", "description": "Write comments + into vulnerabilities.", "created": "2024-11-22T18:40:23.844837+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005", "attributes": + {"name": "security_comments_read", "display_name": "Security Comments Read", + "description": "Read comments of vulnerabilities.", "created": "2024-11-22T18:40:23.844837+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "attributes": {"name": "dashboards_invite_share", "display_name": "Shared + Dashboards Invite-only Write", "description": "Create, modify and delete shared + dashboards with share type ''Invite-only''. These dashboards can only be accessed + by user-specified email addresses.", "created": "2024-12-10T19:11:49.480076+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "attributes": + {"name": "dashboards_embed_share", "display_name": "Shared Dashboards Embed + Write", "description": "Create, modify and delete shared dashboards with share + type ''Embed''. These dashboards can be embedded on user-specified domains.", + "created": "2024-12-10T19:11:49.480076+00:00", "group_name": "Dashboards", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "attributes": {"name": "embeddable_graphs_share", + "display_name": "Shared Graphs Write", "description": "Generate public links + to share embeddable graphs externally.", "created": "2024-12-10T19:11:49.480076+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "attributes": + {"name": "logs_read_workspaces", "display_name": "Read Logs Workspaces", "description": + "View Logs Workspaces.", "created": "2024-12-11T19:21:44.137884+00:00", "group_name": + "Log Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "attributes": + {"name": "logs_write_workspaces", "display_name": "Write Logs Workspaces", + "description": "Create, update, and delete Logs Workspaces.", "created": "2024-12-11T19:21:44.137884+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "attributes": + {"name": "audience_management_read", "display_name": "Profiles Read", "description": + "View Audience Management data.", "created": "2025-01-07T18:36:31.392090+00:00", + "group_name": "Product Analytics", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "attributes": + {"name": "audience_management_write", "display_name": "Profiles Write", "description": + "Modify Audience Management data.", "created": "2025-01-07T18:36:31.392090+00:00", + "group_name": "Product Analytics", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005", + "attributes": {"name": "logs_read_config", "display_name": "Logs Configuration + Read", "description": "Read logs configuration.", "created": "2025-01-14T18:56:50.868001+00:00", + "group_name": "Log Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9b00426a-da87-11ef-9de6-da7ad0900005", "attributes": + {"name": "on_call_read", "display_name": "On-Call Read", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "created": + "2025-01-24T19:15:42.768282+00:00", "group_name": "On-Call", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "9b00ed28-da87-11ef-9de6-da7ad0900005", + "attributes": {"name": "on_call_write", "display_name": "On-Call Write", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "created": "2025-01-24T19:15:42.768282+00:00", "group_name": "On-Call", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "attributes": {"name": "on_call_page", "display_name": "On-Call Page", "description": + "Page On-Call teams and users.", "created": "2025-01-24T19:15:42.768282+00:00", + "group_name": "On-Call", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005", "attributes": + {"name": "error_tracking_read", "display_name": "Error Tracking Read", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "created": "2025-01-30T18:51:27.197297+00:00", "group_name": "Error Tracking", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "attributes": {"name": "on_call_respond", + "display_name": "On-Call Responder", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "created": "2025-02-03T23:42:07.592356+00:00", "group_name": "On-Call", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "attributes": {"name": "process_tags_read", "display_name": "Process Tags + Read", "description": "View Process Tag Rules.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Processes", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "attributes": + {"name": "process_tags_write", "display_name": "Process Tags Write", "description": + "Create, edit and delete Process Tag Rules.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Processes", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "attributes": + {"name": "network_connections_read", "display_name": "Network Connections + Read", "description": "Read Cloud Network Connections.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Cloud Network Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "attributes": {"name": "serverless_aws_instrumentation_read", "display_name": + "Serverless AWS Instrumentation Read", "description": "View remote instrumentation + configuration for serverless workloads.", "created": "2025-02-11T20:36:29.786935+00:00", + "group_name": "Serverless", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "attributes": + {"name": "serverless_aws_instrumentation_write", "display_name": "Serverless + AWS Instrumentation Write", "description": "Add, update, and remove remote + instrumentation configuration for serverless workloads.", "created": "2025-02-11T20:36:29.786935+00:00", + "group_name": "Serverless", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "attributes": + {"name": "coterm_write", "display_name": "CoTerm Write", "description": "Write + terminal recordings.", "created": "2025-02-28T19:06:40.038336+00:00", "group_name": + "CoTerm", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "attributes": {"name": "coterm_read", + "display_name": "CoTerm Read", "description": "Read terminal recordings.", + "created": "2025-02-28T19:06:40.038336+00:00", "group_name": "CoTerm", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "attributes": {"name": "data_streams_monitoring_capture_messages", "display_name": + "Data Streams Monitoring Capture Messages", "description": "Capture messages + from Kafka topics in the Data Streams Monitoring product.", "created": "2025-03-06T18:51:28.120564+00:00", + "group_name": "Data Streams Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "db45b75e-0360-11f0-8ac3-da7ad0900005", + "attributes": {"name": "cloudcraft_read", "display_name": "Cloudcraft Read", + "description": "View infrastructure diagrams in the Cloudcraft product.", + "created": "2025-03-17T18:51:37.899118+00:00", "group_name": "Infrastructure", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "9bb09240-0fee-11f0-958c-da7ad0900005", "attributes": {"name": "ndm_device_profiles_view", + "display_name": "NDM Device Profiles View", "description": "View NDM device + profiles.", "created": "2025-04-02T18:16:33.714415+00:00", "group_name": "Network + Device Monitoring", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "9bb09a10-0fee-11f0-958c-da7ad0900005", "attributes": + {"name": "ndm_device_profiles_edit", "display_name": "NDM Device Profiles + Edit", "description": "Edit NDM device profiles.", "created": "2025-04-02T18:16:33.714415+00:00", + "group_name": "Network Device Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "ndm_devices_read", "display_name": "NDM Read", "description": + "Read NDM data directly. Note: even without this permission, NDM data can + be retrieved via general infrastructure query APIs.", "created": "2025-04-24T21:30:24.005670+00:00", + "group_name": "Network Device Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "ndm_device_tags_write", "display_name": "NDM Device + Tags Write", "description": "Write NDM device tags.", "created": "2025-04-24T21:30:24.005670+00:00", + "group_name": "Network Device Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "orchestration_workload_scaling_read", "display_name": + "Workload Scaling Read", "description": "View workload autoscaling objects + and recommendations.", "created": "2025-04-24T21:30:24.005670+00:00", "group_name": + "Orchestration", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "attributes": {"name": "bits_investigations_read", + "display_name": "Bits Investigations Read", "description": "Read Bits investigations.", + "created": "2025-04-29T18:51:50.984055+00:00", "group_name": "Bits AI", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "attributes": {"name": "sheets_read", "display_name": "Sheets Read", "description": + "View Sheets.", "created": "2025-04-30T23:15:19.683852+00:00", "group_name": + "Sheets", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "fbf841c6-2618-11f0-8595-da7ad0900005", "attributes": {"name": "sheets_write", + "display_name": "Sheets Write", "description": "Create and change Sheets.", + "created": "2025-04-30T23:15:19.683852+00:00", "group_name": "Sheets", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", + "attributes": {"name": "orchestration_autoscaling_manage", "display_name": + "Autoscaling Manage", "description": "Manage autoscaling cluster level configuration.", + "created": "2025-05-19T18:00:40.454044+00:00", "group_name": "Orchestration", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "12465c5e-3a5c-11f0-becd-da7ad0900005", "attributes": {"name": "code_coverage_read", + "display_name": "Code Coverage read", "description": "View Code Coverage data.", + "created": "2025-05-26T18:05:56.647000+00:00", "group_name": "Software Delivery", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "attributes": {"name": "cases_shared_settings_write", + "display_name": "Case Management Shared Settings Write", "description": "Configure + shared settings for Case Management.", "created": "2025-06-17T18:22:00.814348+00:00", + "group_name": "Case and Incident Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", + "attributes": {"name": "actions_interface_run", "display_name": "Actions Interface + Run", "description": "Execute actions in the Bits AI Action Interface.", "created": + "2025-07-01T14:36:49.982499+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", "attributes": {"name": "ai_guard_evaluate", + "display_name": "AI Guard Evaluate", "description": "Evaluate AI Guard rules.", + "created": "2025-07-09T18:30:33.053855+00:00", "group_name": "Application + Security", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "attributes": {"name": "generate_ccm_report_schedules", + "display_name": "Cloud Cost Report Schedules Write", "description": "View + all report schedules and manage only the ones they''ve created.", "created": + "2025-07-10T18:40:35.388063+00:00", "group_name": "Cloud Cost Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "attributes": {"name": "manage_ccm_report_schedules", + "display_name": "Cloud Cost Report Schedules Manage", "description": "View, + create, and fully manage all report schedules across the organization.", "created": + "2025-07-10T18:40:35.388063+00:00", "group_name": "Cloud Cost Management", + "display_type": "write", "restricted": false}}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005", + "attributes": {"name": "Datadog Read Only Role", "managed": true, "created_at": + "2024-10-08T14:32:47.265744+00:00", "modified_at": "2024-10-08T14:32:47.266206+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": + "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", + "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": + "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", + "id": "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": + "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": + "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f33f74be-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": + "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", + "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": + "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", + "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", "id": + "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": + "permissions", "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", + "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", "id": + "3c002814-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", + "id": "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": + "35e4e288-df3b-11ef-886f-da7ad0900005"}, {"type": "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005"}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": + "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", + "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", "id": + "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", + "id": "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": + "12465c5e-3a5c-11f0-becd-da7ad0900005"}]}}}, {"type": "roles", "id": "693fe720-9569-11ef-969d-da7ad0900005", + "attributes": {"name": "Copy of Datadog Admin Role", "managed": false, "created_at": + "2024-10-28T20:15:44.156681+00:00", "modified_at": "2024-10-28T20:15:44.167199+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e"}, {"type": + "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": "permissions", + "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", "id": + "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": + "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": "permissions", + "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", "id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d"}, + {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19"}, {"type": + "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, {"type": "permissions", + "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": "permissions", "id": + "04668d0a-ec5c-11ea-9483-37d199df4587"}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, + {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc"}, {"type": + "permissions", "id": "04668f62-ec5c-11ea-9483-0fe541ab993f"}, {"type": "permissions", + "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02"}, {"type": "permissions", "id": + "046690de-ec5c-11ea-9483-bbcd905fcdca"}, {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf"}, + {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": + "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", + "id": "8b753262-f925-11ea-82fc-93f07fd96e76"}, {"type": "permissions", "id": + "9311970e-f925-11ea-ab4d-1760e76381c1"}, {"type": "permissions", "id": "998aabac-f925-11ea-b43d-8f1f42f3894e"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "72bc07d8-1472-11eb-a97b-8bff514d7382"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e"}, {"type": + "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": "permissions", + "id": "c8654332-2dce-11eb-9145-d33d26eeb65f"}, {"type": "permissions", "id": + "d23cc894-2dce-11eb-9145-37bf7b2dadc2"}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a"}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", "id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, + {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005"}, {"type": + "permissions", "id": "b39fb79a-90af-11eb-9428-da7ad0900005"}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "993b34d6-b16d-11eb-a891-da7ad0900005"}, + {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, {"type": + "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": + "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "c948b30a-16c7-11ec-88cc-da7ad0900005"}, + {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", + "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": + "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005"}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": + "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005"}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "3ad32264-f311-11ec-a058-da7ad0900005"}, {"type": "permissions", + "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005"}, + {"type": "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", + "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": + "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005"}, + {"type": "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": + "8b254e6a-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005"}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": "81e488c0-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", "id": + "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, + {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, + {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, {"type": + "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": + "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", "id": "4316b75c-093f-11ee-98e9-da7ad0900005"}, + {"type": "permissions", "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": + "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", + "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, {"type": "permissions", "id": + "eadf64b2-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": "eadf675a-2199-11ee-9a0e-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005"}, {"type": "permissions", + "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": + "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", + "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": + "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", + "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}, {"type": "permissions", "id": + "f2cc9374-9841-11ee-a301-da7ad0900005"}, {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005"}, + {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, {"type": + "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": + "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005"}, + {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": + "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", + "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": + "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd09204-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", + "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": + "permissions", "id": "ef950332-13a0-11ef-b582-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75066402-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005"}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", + "id": "06e3004e-5987-11ef-89c3-da7ad0900005"}, {"type": "permissions", "id": + "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", + "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005"}, + {"type": "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": + "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", + "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": + "83fc9760-7c51-11ef-b846-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "80ae7688-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": "71949074-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": + "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", + "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": "permissions", "id": + "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005"}, + {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", + "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", + "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", "id": + "35e4e288-df3b-11ef-886f-da7ad0900005"}]}}}, {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005", + "attributes": {"name": "Datadog Standard Role", "managed": true, "created_at": + "2024-10-08T14:32:47.215056+00:00", "modified_at": "2024-10-08T14:32:47.215828+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": + "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", + "id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, + {"type": "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": + "permissions", "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", + "id": "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": + "5de1e178-8536-11ea-968a-2fd9395bff90"}, {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, + {"type": "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": + "permissions", "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", + "id": "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": + "93654d1c-e706-11ea-9a85-d320ff02824d"}, {"type": "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, + {"type": "permissions", "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": + "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, {"type": "permissions", + "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": "permissions", "id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", "id": "9311970e-f925-11ea-ab4d-1760e76381c1"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": + "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", + "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, + {"type": "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "f07e4234-e894-11eb-ab79-da7ad0900005"}, {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": + "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": + "c948b30a-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, + {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": + "permissions", "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "cf873174-574f-11ec-9869-da7ad0900005"}, {"type": "permissions", "id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, + {"type": "permissions", "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": + "permissions", "id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", + "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": "permissions", "id": + "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": + "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", + "id": "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": + "permissions", "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, + {"type": "permissions", "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": + "permissions", "id": "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", + "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": "permissions", "id": + "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": + "81e488c0-db35-11ed-a170-da7ad0900005"}, {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": + "permissions", "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": + "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, + {"type": "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": + "permissions", "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", + "id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, + {"type": "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": + "permissions", "id": "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", + "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", "id": + "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", + "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": + "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, + {"type": "permissions", "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": + "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", + "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": "permissions", "id": + "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, + {"type": "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": + "permissions", "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": + "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, + {"type": "permissions", "id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": + "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09204-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, {"type": + "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75072806-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, + {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": + "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", + "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, + {"type": "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": + "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": "permissions", + "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", "id": + "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": + "permissions", "id": "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", + "id": "3c002814-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": + "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, + {"type": "permissions", "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", + "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": + "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, + {"type": "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": + "permissions", "id": "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", + "id": "9b00ed28-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": + "9b010d44-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005"}, + {"type": "permissions", "id": "7ad4419a-e288-11ef-bbbc-da7ad0900005"}, {"type": + "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", + "id": "4a6cadb6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": + "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, + {"type": "permissions", "id": "23f76dc4-f607-11ef-99cf-da7ad0900005"}, {"type": + "permissions", "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", + "id": "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", "id": + "9bb09240-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", "id": + "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": "fbf841c6-2618-11f0-8595-da7ad0900005"}, + {"type": "permissions", "id": "12465c5e-3a5c-11f0-becd-da7ad0900005"}, {"type": + "permissions", "id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005"}, {"type": "permissions", + "id": "d2c0335e-5688-11f0-ad5e-da7ad0900005"}, {"type": "permissions", "id": + "cc7517b0-5cf2-11f0-85d4-da7ad0900005"}, {"type": "permissions", "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005"}]}}}], + "meta": {"page": {"total_count": 8, "total_filtered_count": 8, "max_page_size": + 1000}}}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/roles?page%5Bnumber%5D=0&page%5Bsize%5D=100 + response: + body: + string: '{"data": [{"id": "693fe720-9569-11ef-969d-da7ad0900005", "type": "roles", + "attributes": {"created_at": "2024-10-28T20:15:44.156681Z", "created_by_handle": + "michael.richey@datadoghq.com", "modified_at": "2024-10-28T20:15:44.167199Z", + "modified_by_handle": "michael.richey@datadoghq.com", "name": "Copy of Datadog + Admin Role", "team_count": 0, "user_count": 2}, "relationships": {"permissions": + {"data": [{"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": "permissions"}, + {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": + "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", + "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions"}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": "permissions"}, + {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "type": "permissions"}, {"id": + "046690de-ec5c-11ea-9483-bbcd905fcdca", "type": "permissions"}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions"}, {"id": + "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions"}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions"}, {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": + "permissions"}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": + "c8654332-2dce-11eb-9145-d33d26eeb65f", "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", + "type": "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, + {"id": "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": + "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": "permissions"}, + {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": "permissions"}, {"id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "type": "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", + "type": "permissions"}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": + "permissions"}, {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, + {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions"}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions"}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, + {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": + "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions"}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": + "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions"}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": + "permissions"}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, + {"id": "f42ef088-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", + "type": "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": + "permissions"}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, + {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions"}, {"id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", + "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", "type": + "permissions"}, {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, + {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": "permissions"}, {"id": + "f40ff7be-966b-11ec-8253-da7ad0900005", "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions"}, + {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", + "type": "permissions"}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions"}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "type": "permissions"}, + {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": + "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", + "type": "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": "permissions"}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152", "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": + "permissions"}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, + {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005", "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions"}, {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": + "permissions"}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, + {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions"}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": + "permissions"}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, + {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": + "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", + "type": "permissions"}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions"}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, + {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions"}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions"}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, + {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", "type": "permissions"}, {"id": + "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": + "permissions"}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions"}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "ef44613e-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": + "permissions"}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", "type": "permissions"}, {"id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions"}, {"id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions"}, + {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": "permissions"}, {"id": + "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions"}, {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": + "permissions"}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, + {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": + "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": + "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, + {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", + "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": "permissions"}, + {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, {"id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions"}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005", "type": "permissions"}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", + "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, + {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": + "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": "permissions"}, + {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": + "c04a7614-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "type": "permissions"}, + {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", "type": "permissions"}, {"id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions"}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", + "type": "permissions"}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "type": + "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": + "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", + "type": "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": + "permissions"}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": "permissions"}, + {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, {"id": + "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions"}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, + {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": + "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions"}, {"id": "83fc9760-7c51-11ef-b846-da7ad0900005", "type": + "permissions"}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, + {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions"}, {"id": + "76e47222-8a30-11ef-8675-da7ad0900005", "type": "permissions"}, {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": + "permissions"}, {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions"}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", "type": "permissions"}, {"id": + "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", + "type": "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": + "permissions"}, {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": "permissions"}, {"id": + "7d962a3c-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", + "type": "permissions"}, {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": + "permissions"}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": + "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", + "type": "permissions"}, {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": + "permissions"}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "7d9641ac-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": + "permissions"}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": + "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions"}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions"}]}}}, {"id": "3020f50c-8582-11ef-ad61-da7ad0900005", "type": + "roles", "attributes": {"created_at": "2024-10-08T14:32:47.147289Z", "managed": + true, "modified_at": "2024-10-08T14:32:47.147932Z", "name": "Datadog Admin + Role", "team_count": 0, "user_count": 7}, "relationships": {"permissions": + {"data": [{"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": "permissions"}, + {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": + "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", + "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions"}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": "permissions"}, + {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "type": "permissions"}, {"id": + "046690de-ec5c-11ea-9483-bbcd905fcdca", "type": "permissions"}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions"}, {"id": + "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions"}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions"}, {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": + "permissions"}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": + "c8654332-2dce-11eb-9145-d33d26eeb65f", "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", + "type": "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, + {"id": "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": + "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": "permissions"}, + {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": "permissions"}, {"id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "type": "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", + "type": "permissions"}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": + "permissions"}, {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, + {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions"}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions"}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, + {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": + "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions"}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": + "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions"}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": + "permissions"}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, + {"id": "f42ef088-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", + "type": "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": + "permissions"}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, + {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions"}, {"id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", + "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", "type": + "permissions"}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, {"id": + "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": "permissions"}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions"}, {"id": + "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": + "permissions"}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": "permissions"}, + {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "type": "permissions"}, {"id": + "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", + "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions"}, + {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": "permissions"}, {"id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": "permissions"}, + {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, {"id": + "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", "type": + "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, {"id": + "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", + "type": "permissions"}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", "type": + "permissions"}, {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions"}, + {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, {"id": + "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", "type": + "permissions"}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, + {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": + "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", + "type": "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions"}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, + {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "type": + "permissions"}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, + {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": + "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", "type": "permissions"}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", + "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": "permissions"}, + {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions"}, {"id": + "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": + "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions"}, {"id": + "80ae7688-9898-11ef-8b23-da7ad0900005", "type": "permissions"}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", + "type": "permissions"}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "75066402-3890-11ef-bbb1-da7ad0900005", "type": "permissions"}, {"id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", + "type": "permissions"}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions"}, {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, + {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, {"id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions"}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions"}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions"}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions"}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, + {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions"}, {"id": + "cf873174-574f-11ec-9869-da7ad0900005", "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", + "type": "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": + "permissions"}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", "type": + "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": "permissions"}, + {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions"}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": + "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions"}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": "permissions"}, {"id": + "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions"}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "type": "permissions"}, {"id": + "48d8ce74-0065-11ee-9c16-da7ad0900005", "type": "permissions"}, {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", + "type": "permissions"}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": + "permissions"}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "type": "permissions"}, + {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, {"id": + "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", + "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": + "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions"}, + {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": "permissions"}, {"id": + "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", + "type": "permissions"}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, + {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, {"id": + "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": + "permissions"}, {"id": "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions"}, + {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": + "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": + "permissions"}, {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, + {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", + "type": "permissions"}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "ccd09f06-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": + "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions"}, {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": "permissions"}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": + "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", + "type": "permissions"}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", "type": + "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, + {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, {"id": + "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, + {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, {"id": + "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", + "type": "permissions"}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "7d9641ac-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": + "permissions"}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, {"id": + "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions"}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions"}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, + {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, {"id": + "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": "permissions"}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions"}, {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions"}, + {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, {"id": + "02e65e42-fabc-11ef-a653-da7ad0900005", "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions"}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions"}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions"}, + {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": + "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions"}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", "type": + "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions"}, + {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", "type": "permissions"}, {"id": + "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions"}]}}}, {"id": + "3032ffb8-8582-11ef-8bad-da7ad0900005", "type": "roles", "attributes": {"created_at": + "2024-10-08T14:32:47.265744Z", "managed": true, "modified_at": "2024-10-08T14:32:47.266206Z", + "name": "Datadog Read Only Role", "team_count": 0, "user_count": 2}, "relationships": + {"permissions": {"data": [{"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": "permissions"}, + {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions"}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", + "type": "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": "permissions"}, + {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, {"id": + "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": "permissions"}, + {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": "permissions"}, {"id": + "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", + "type": "permissions"}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": + "permissions"}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, + {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": "permissions"}, {"id": + "5de1e178-8536-11ea-968a-2fd9395bff90", "type": "permissions"}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": + "permissions"}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": + "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": + "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": "permissions"}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", + "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, + {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, + {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": "permissions"}, {"id": + "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": "permissions"}, {"id": + "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", + "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, + {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, {"id": + "54f98c32-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "type": "permissions"}]}}}, {"id": "302b4f34-8582-11ef-b6a4-da7ad0900005", + "type": "roles", "attributes": {"created_at": "2024-10-08T14:32:47.215056Z", + "managed": true, "modified_at": "2024-10-08T14:32:47.215828Z", "name": "Datadog + Standard Role", "team_count": 0, "user_count": 3}, "relationships": {"permissions": + {"data": [{"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, + {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": + "65eea998-f6a1-11ed-9953-da7ad0900005", "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions"}, {"id": + "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", + "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, + {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, {"id": + "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": "permissions"}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", + "type": "permissions"}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": + "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": "permissions"}, + {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, {"id": + "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", + "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": "permissions"}, {"id": + "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions"}, + {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions"}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions"}, {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, + {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": + "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", + "type": "permissions"}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions"}, {"id": + "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": "permissions"}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", + "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions"}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152", "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": + "permissions"}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, + {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005", "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "04668bde-ec5c-11ea-9483-fb6cb6586c6a", "type": "permissions"}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", + "type": "permissions"}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": + "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", "type": "permissions"}, + {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, {"id": + "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": + "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, + {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": + "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "type": "permissions"}, + {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": "permissions"}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions"}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "11280c24-cce8-11ee-af00-da7ad0900005", "type": "permissions"}, {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions"}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "type": + "permissions"}, {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions"}, + {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", "type": "permissions"}, {"id": + "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", + "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": + "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions"}, + {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": + "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", + "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": "permissions"}, + {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", "type": + "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": "permissions"}, + {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, {"id": + "e31cca10-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions"}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, + {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions"}, {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": + "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": + "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", + "type": "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": + "permissions"}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, + {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions"}, {"id": + "e31e6b54-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": + "permissions"}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, + {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": "permissions"}, {"id": + "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": + "permissions"}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": + "d039cfec-b44f-11ed-8db8-da7ad0900005", "type": "permissions"}, {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", + "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": + "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": "permissions"}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": + "permissions"}, {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, + {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": + "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, + {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions"}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", + "type": "permissions"}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions"}, {"id": + "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, {"id": + "9bb09240-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", + "type": "permissions"}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, + {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions"}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions"}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", + "type": "permissions"}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": + "permissions"}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, + {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": + "54f98c32-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "type": "permissions"}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", "type": + "permissions"}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions"}]}}}], + "meta": {"page": {"total_count": 4, "total_filtered_count": 4}}}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: DELETE + uri: https://api.us5.datadoghq.com/api/v2/rum/applications/2a7320bc-904c-437d-9f6b-854e8675314d + response: + body: + string: '' + headers: {} + status: + code: 204 + message: No Content +version: 1 diff --git a/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_sync_per_file.frozen b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_sync_per_file.frozen new file mode 100644 index 000000000..94ec8d2d8 --- /dev/null +++ b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_sync_per_file.frozen @@ -0,0 +1 @@ +2025-08-27T16:03:03.763123-04:00 \ No newline at end of file diff --git a/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_sync_per_file.yaml b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_sync_per_file.yaml new file mode 100644 index 000000000..a55af925e --- /dev/null +++ b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_sync_per_file.yaml @@ -0,0 +1,7185 @@ +interactions: +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/hamr + response: + body: + string: '{"data": {"id": "30187db5-8582-11ef-969b-8248c7cda362", "type": "hamr_org_connections", + "attributes": {"HamrStatus": 1, "IsPrimary": true, "ModifiedAt": "2024-10-08 + 15:06:20.300120", "ModifiedBy": "charlie.zhang", "TargetOrgDatacenter": "us5.prod.dog", + "TargetOrgName": "DDR Internal Testing US5", "TargetOrgUuid": "b9e754c7-857e-11ef-afbd-c64ba5fcf2d1"}}}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/rum/applications + response: + body: + string: '{"data": [{"type": "rum_application", "attributes": {"type": "browser", + "is_active": true, "product_scales": {"rum_event_processing_scale": {"last_modified_at": + 1756321641996, "state": "ALL"}, "product_analytics_retention_scale": {"last_modified_at": + 1756321641996, "state": "NONE"}}, "remote_config_id": "0256b730-312e-419a-904f-2ab6d9836eba", + "created_by_handle": "michael.richey@datadoghq.com", "updated_at": 1756321932553, + "tags": [], "updated_by_handle": "Datadog", "application_id": "16371816-ab2a-41aa-b12a-40ec4d9628e8", + "name": "Test RUM Application", "org_id": 1000315894, "created_at": 1756321641996, + "product_analytics_replay_sample_rate": 100}, "id": "16371816-ab2a-41aa-b12a-40ec4d9628e8"}]}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/rum/applications/16371816-ab2a-41aa-b12a-40ec4d9628e8 + response: + body: + string: '{"data": {"type": "rum_application", "attributes": {"name": "Test RUM + Application", "product_scales": {"product_analytics_retention_scale": {"state": + "NONE", "last_modified_at": 1756321641996}, "rum_event_processing_scale": + {"state": "ALL", "last_modified_at": 1756321641996}}, "client_token": "pubcfef5fa71c23a0c961cc1f1f69db5a32", + "product_analytics_replay_sample_rate": 100, "created_by_handle": "michael.richey@datadoghq.com", + "application_id": "16371816-ab2a-41aa-b12a-40ec4d9628e8", "updated_by_handle": + "Datadog", "updated_at": 1756321932553, "hash": "pubcfef5fa71c23a0c961cc1f1f69db5a32", + "remote_config_id": "0256b730-312e-419a-904f-2ab6d9836eba", "is_active": true, + "created_at": 1756321641996, "type": "browser", "tags": [], "org_id": 1000315894}, + "id": "16371816-ab2a-41aa-b12a-40ec4d9628e8"}}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.us5.datadoghq.com/api/v2/hamr + response: + body: + string: '{"data": {"id": "b9e754c7-857e-11ef-afbd-c64ba5fcf2d1", "type": "hamr_org_connections", + "attributes": {"HamrStatus": 1, "IsPrimary": false, "ModifiedAt": "2024-10-08 + 15:06:20.300120", "ModifiedBy": "charlie.zhang", "TargetOrgDatacenter": "eu1.prod.dog", + "TargetOrgName": "DDR Internal Testing eu1", "TargetOrgUuid": "30187db5-8582-11ef-969b-8248c7cda362"}}}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: '{"data": {"type": "rum_application_create", "attributes": {"name": "Test + RUM Application", "product_scales": {"product_analytics_retention_scale": {}, + "rum_event_processing_scale": {"state": "ALL"}}, "product_analytics_replay_sample_rate": + 100, "type": "browser", "tags": []}}}' + headers: + Content-Type: + - application/json + method: POST + uri: https://api.us5.datadoghq.com/api/v2/rum/applications + response: + body: + string: '{"data": {"type": "rum_application", "attributes": {"org_id": 1300336245, + "product_analytics_replay_sample_rate": 100, "hash": "pubaef111a2a1c5666d083f31db82a2b360", + "product_scales": {"rum_event_processing_scale": {"state": "ALL", "last_modified_at": + 1756324984740}, "product_analytics_retention_scale": {"state": "NONE", "last_modified_at": + 1756324984740}}, "created_at": 1756324984740, "tags": [], "type": "browser", + "application_id": "812b8766-fbee-4aa3-8232-892ec810a933", "name": "Test RUM + Application", "updated_at": 1756324984740, "created_by_handle": "17d29c8a-6285-11f0-be9b-76de006a05ea", + "updated_by_handle": "17d29c8a-6285-11f0-be9b-76de006a05ea", "is_active": + false, "client_token": "pubaef111a2a1c5666d083f31db82a2b360"}, "id": "812b8766-fbee-4aa3-8232-892ec810a933"}}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/users?page%5Bnumber%5D=0&page%5Bsize%5D=500 + response: + body: + string: '{"data": [{"type": "users", "id": "6b69113d-6f18-11f0-9ad5-1ad15dd71168", + "attributes": {"name": "Ida Adjivon", "handle": "ida.adjivon@datadoghq.com", + "created_at": "2025-08-01T20:45:12.043180+00:00", "modified_at": "2025-08-01T21:35:25.635446+00:00", + "email": "ida.adjivon@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/d3ff11e3ff125d30050f4dfff3fa614c?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "81f6f2c7-923f-11ef-879a-6ee0822e247c", "attributes": {"name": "Justine + Lo", "handle": "justine.lo@datadoghq.com", "created_at": "2024-10-24T19:38:13.281489+00:00", + "modified_at": "2024-10-25T14:18:33.835459+00:00", "email": "justine.lo@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/7d75964971289cf50e6090d76b45e3f6?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "b301b340-8582-11ef-ba31-3219ecc6cb25", "attributes": {"name": "Louis + Cheynel", "handle": "louis.cheynel@datadoghq.com", "created_at": "2024-10-08T14:36:26.725077+00:00", + "modified_at": "2025-02-19T21:12:46.164959+00:00", "email": "louis.cheynel@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/791d1a56daa2bd0f5bb25ed286d3f8bb?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": true, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Disabled", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "30533c3c-8582-11ef-938f-cecf6f9ed4ad", "attributes": {"name": "Michael + Richey", "handle": "michael.richey+ddreu1@datadoghq.com", "created_at": "2024-10-08T14:32:47.477901+00:00", + "modified_at": "2024-10-08T14:32:47.477901+00:00", "email": "michael.richey+ddreu1@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/b5b0452adbe01caf57c1e5f6fb97a631?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "693fe720-9569-11ef-969d-da7ad0900005"}, {"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, + "org": {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "98fe080d-8fda-11ef-aa03-c6ac9d6cb0b0", "attributes": + {"name": "Michael Richey", "handle": "michael.richey@datadoghq.com", "created_at": + "2024-10-21T18:30:50.420260+00:00", "modified_at": "2025-03-03T15:47:53.789029+00:00", + "email": "michael.richey@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/3ae7b2387f1a71bbb857d6f03993bdf3?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "b32e572e-8582-11ef-98fe-f2a776cd34b8", "attributes": {"name": "Ron + Hay", "handle": "ron.hay@datadoghq.com", "created_at": "2024-10-08T14:36:27.017641+00:00", + "modified_at": "2025-06-10T13:33:23.138895+00:00", "email": "ron.hay@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/1c9c2a5daac55fc5ae86178cd5e7b9c2?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "265f9002-9b9e-11ef-9152-56a58ecd5b70", "attributes": + {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com", "created_at": + "2024-11-05T17:48:22.271026+00:00", "modified_at": "2025-01-23T19:52:06.634848+00:00", + "email": "sherzod.karimov@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/993f2cc00ad75833dbc76f2a93bb227d?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "693fe720-9569-11ef-969d-da7ad0900005"}, {"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "b32f283f-8582-11ef-be6e-1e59aae1ca5b", "attributes": + {"name": "Tim Alexander", "handle": "tim.alexander@datadoghq.com", "created_at": + "2024-10-08T14:36:27.022996+00:00", "modified_at": "2024-10-08T15:29:54.659973+00:00", + "email": "tim.alexander@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/6269dae26686287d4bdd307a26e33f34?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}], + "included": [{"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005", + "attributes": {"name": "Datadog Admin Role", "managed": true, "created_at": + "2024-10-08T14:32:47.147289+00:00", "modified_at": "2024-10-08T14:32:47.147932+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e"}, {"type": + "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": "permissions", + "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", "id": + "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": + "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": "permissions", + "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", "id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d"}, + {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19"}, {"type": + "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, {"type": "permissions", + "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": "permissions", "id": + "04668d0a-ec5c-11ea-9483-37d199df4587"}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, + {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc"}, {"type": + "permissions", "id": "04668f62-ec5c-11ea-9483-0fe541ab993f"}, {"type": "permissions", + "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02"}, {"type": "permissions", "id": + "046690de-ec5c-11ea-9483-bbcd905fcdca"}, {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf"}, + {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": + "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", + "id": "8b753262-f925-11ea-82fc-93f07fd96e76"}, {"type": "permissions", "id": + "9311970e-f925-11ea-ab4d-1760e76381c1"}, {"type": "permissions", "id": "998aabac-f925-11ea-b43d-8f1f42f3894e"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "72bc07d8-1472-11eb-a97b-8bff514d7382"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e"}, {"type": + "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": "permissions", + "id": "c8654332-2dce-11eb-9145-d33d26eeb65f"}, {"type": "permissions", "id": + "d23cc894-2dce-11eb-9145-37bf7b2dadc2"}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a"}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", "id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, + {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005"}, {"type": + "permissions", "id": "b39fb79a-90af-11eb-9428-da7ad0900005"}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "993b34d6-b16d-11eb-a891-da7ad0900005"}, + {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, {"type": + "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": + "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "c948b30a-16c7-11ec-88cc-da7ad0900005"}, + {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", + "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": + "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005"}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": + "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005"}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "3ad32264-f311-11ec-a058-da7ad0900005"}, {"type": "permissions", + "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005"}, + {"type": "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", + "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": + "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005"}, + {"type": "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": + "8b254e6a-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005"}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": "81e488c0-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", "id": + "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, + {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, + {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, {"type": + "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": + "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", "id": "4316b75c-093f-11ee-98e9-da7ad0900005"}, + {"type": "permissions", "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": + "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", + "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, {"type": "permissions", "id": + "eadf64b2-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": "eadf675a-2199-11ee-9a0e-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005"}, {"type": "permissions", + "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": + "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", + "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": + "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", + "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}, {"type": "permissions", "id": + "f2cc9374-9841-11ee-a301-da7ad0900005"}, {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005"}, + {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, {"type": + "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": + "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005"}, + {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": + "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", + "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": + "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd09204-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", + "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": + "permissions", "id": "ef950332-13a0-11ef-b582-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75066402-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005"}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", + "id": "06e3004e-5987-11ef-89c3-da7ad0900005"}, {"type": "permissions", "id": + "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", + "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005"}, + {"type": "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": + "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", + "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": + "83fc9760-7c51-11ef-b846-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "80ae7688-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": "71949074-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": + "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", + "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": "permissions", "id": + "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005"}, + {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", + "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", + "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", "id": + "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": "9b00ed28-da87-11ef-9de6-da7ad0900005"}, + {"type": "permissions", "id": "9b010d44-da87-11ef-9de6-da7ad0900005"}, {"type": + "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005"}, {"type": "permissions", + "id": "7ad4419a-e288-11ef-bbbc-da7ad0900005"}, {"type": "permissions", "id": + "4a6c29d6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": "4a6cadb6-e806-11ef-8710-da7ad0900005"}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": + "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", + "id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", "id": + "23f76dc4-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, + {"type": "permissions", "id": "02e65e42-fabc-11ef-a653-da7ad0900005"}, {"type": + "permissions", "id": "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", + "id": "9bb09240-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": + "9bb09a10-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", "id": + "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": "fbf841c6-2618-11f0-8595-da7ad0900005"}, + {"type": "permissions", "id": "2cead6ec-34db-11f0-9eb2-da7ad0900005"}, {"type": + "permissions", "id": "12465c5e-3a5c-11f0-becd-da7ad0900005"}, {"type": "permissions", + "id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005"}, {"type": "permissions", "id": + "d2c0335e-5688-11f0-ad5e-da7ad0900005"}, {"type": "permissions", "id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005"}, + {"type": "permissions", "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005"}, {"type": + "permissions", "id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005"}]}}}, {"type": + "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "attributes": + {"name": "logs_read_index_data", "display_name": "Logs Read Index Data", "description": + "Read log data, possibly scoped to one or more indexes. In order to read log + data, a user must have both this permission and Logs Read Data. This permission + can be granted in a limited capacity per index from the Logs interface or + APIs. If granted via the Roles interface or API the permission has global + scope. Restrictions are limited to the Log Management product.", "created": + "2018-10-31T14:00:23.650159+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", + "attributes": {"name": "logs_modify_indexes", "display_name": "Logs Modify + Indexes", "description": "Read and modify all indexes in your account. This + includes the ability to grant the Logs Read Index Data and Logs Write Exclusion + Filters permission to other roles, for some or all indexes.", "created": "2018-10-31T14:00:23.664332+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "attributes": + {"name": "logs_live_tail", "display_name": "Logs Live Tail", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "created": "2018-10-31T14:00:23.676180+00:00", "group_name": + "Log Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "attributes": + {"name": "logs_write_exclusion_filters", "display_name": "Logs Write Exclusion + Filters", "description": "Add and change exclusion filters for all or some + log indexes. Can be granted in a limited capacity per index to specific roles + via the Logs interface or API. If granted from the Roles interface or API, + the permission has global scope.", "created": "2018-10-31T14:00:23.699543+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "attributes": + {"name": "logs_write_pipelines", "display_name": "Logs Write Pipelines", "description": + "Add and change log pipeline configurations, including the ability to grant + the Logs Write Processors permission to other roles, for some or all pipelines.", + "created": "2018-10-31T14:00:23.710821+00:00", "group_name": "Log Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "505f4538-dd15-11e8-9308-47a4732f715f", "attributes": {"name": "logs_write_processors", + "display_name": "Logs Write Processors", "description": "Add and change some + or all log processor configurations. Can be granted in a limited capacity + per pipeline to specific roles via the Logs interface or API. If granted via + the Roles interface or API the permission has global scope.", "created": "2018-10-31T14:00:24.726927+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e", "attributes": + {"name": "logs_write_archives", "display_name": "Logs Write Archives", "description": + "Add and edit Log Archives.", "created": "2018-10-31T14:00:24.730570+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "attributes": + {"name": "logs_generate_metrics", "display_name": "Logs Generate Metrics", + "description": "Create custom metrics from logs.", "created": "2019-07-25T12:37:55.949477+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "attributes": + {"name": "dashboards_read", "display_name": "Dashboards Read", "description": + "View dashboards.", "created": "2019-09-10T14:41:53.120685+00:00", "group_name": + "Dashboards", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "attributes": {"name": "dashboards_write", + "display_name": "Dashboards Write", "description": "Create and change dashboards.", + "created": "2019-09-10T14:41:53.136336+00:00", "group_name": "Dashboards", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f", "attributes": {"name": "dashboards_public_share", + "display_name": "Shared Dashboards Public Write", "description": "Create, + modify and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "created": "2019-09-10T14:41:53.150548+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "attributes": + {"name": "monitors_read", "display_name": "Monitors Read", "description": + "View monitors.", "created": "2019-09-16T18:49:59.270746+00:00", "group_name": + "Monitors", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "attributes": {"name": "monitors_write", + "display_name": "Monitors Write", "description": "Edit and delete individual + monitors.", "created": "2019-09-16T18:50:07.944781+00:00", "group_name": "Monitors", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "d3159858-d8b2-11e9-a336-e363d6ef331b", "attributes": {"name": "monitors_downtime", + "display_name": "Manage Downtimes", "description": "Set downtimes to suppress + alerts from any monitor in an organization. Mute and unmute monitors. The + ability to write monitors is not required to set downtimes.", "created": "2019-09-16T18:50:16.869407+00:00", + "group_name": "Monitors", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "attributes": + {"name": "logs_read_data", "display_name": "Logs Read Data", "description": + "Read log data. In order to read log data, a user must have both this permission + and Logs Read Index Data. This permission can be restricted with restriction + queries. Restrictions are limited to the Log Management product.", "created": + "2020-04-06T16:29:12.337169+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "attributes": {"name": "logs_read_archives", "display_name": "Logs Read Archives", + "description": "Read Log Archives location and use it for rehydration.", "created": + "2020-04-23T07:45:13.801938+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "attributes": {"name": "security_monitoring_rules_read", "display_name": "Security + Rules Read", "description": "Read Detection Rules.", "created": "2020-06-09T13:55:12.166762+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", + "attributes": {"name": "security_monitoring_rules_write", "display_name": + "Security Rules Write", "description": "Create and edit Detection Rules.", + "created": "2020-06-09T13:55:21.036857+00:00", "group_name": "Cloud Security + Platform", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9", "attributes": {"name": "security_monitoring_signals_read", + "display_name": "Security Signals Read", "description": "View Security Signals.", + "created": "2020-06-09T13:55:29.398066+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", "attributes": {"name": "security_monitoring_signals_write", + "display_name": "Security Signals Write", "description": "Modify Security + Signals.", "created": "2021-08-17T15:11:19.976019+00:00", "group_name": "Cloud + Security Platform", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d", "attributes": + {"name": "user_access_invite", "display_name": "User Access Invite", "description": + "Invite other users to your organization.", "created": "2020-08-25T19:10:01.692112+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", + "attributes": {"name": "user_access_manage", "display_name": "User Access + Manage", "description": "Disable users, manage user roles, manage SAML-to-role + mappings, and configure logs restriction queries.", "created": "2020-08-25T19:10:12.116164+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30", + "attributes": {"name": "user_app_keys", "display_name": "User App Keys", "description": + "View and manage Application Keys owned by the user.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "attributes": {"name": "org_app_keys_read", "display_name": "Org App Keys + Read", "description": "View Application Keys owned by all users in the organization.", + "created": "2020-09-01T14:04:14.317866+00:00", "group_name": "API and Application + Keys", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "04668d0a-ec5c-11ea-9483-37d199df4587", "attributes": {"name": "org_app_keys_write", + "display_name": "Org App Keys Write", "description": "Manage Application Keys + owned by all users in the organization.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "attributes": {"name": "synthetics_private_location_read", "display_name": + "Synthetics Private Locations Read", "description": "View, search, and use + Synthetics private locations.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Synthetic Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", + "attributes": {"name": "synthetics_private_location_write", "display_name": + "Synthetics Private Locations Write", "description": "Create and delete private + locations in addition to having access to the associated installation guidelines.", + "created": "2020-09-01T14:04:14.317866+00:00", "group_name": "Synthetic Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "04668f62-ec5c-11ea-9483-0fe541ab993f", "attributes": {"name": "billing_read", + "display_name": "Billing Read", "description": "View your organization''s + subscription and payment method but not make edits.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "attributes": + {"name": "billing_edit", "display_name": "Billing Edit", "description": "Manage + your organization''s subscription and payment method.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "attributes": {"name": "usage_read", "display_name": "Usage Read", "description": + "View your organization''s usage and usage attribution.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf", "attributes": + {"name": "usage_edit", "display_name": "Usage Edit", "description": "Manage + your organization''s usage attribution set-up.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "attributes": {"name": "metric_tags_write", "display_name": "Metric Tags Write", + "description": "Edit and save tag configurations for custom metrics.", "created": + "2020-09-01T14:04:14.317866+00:00", "group_name": "Metrics", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "attributes": {"name": "logs_write_historical_view", "display_name": "Logs + Write Historical Views", "description": "Rehydrate logs from Archives.", "created": + "2020-09-16T08:42:43.928080+00:00", "group_name": "Log Management", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "attributes": {"name": "audit_logs_read", "display_name": "Audit Trail Read", + "description": "View Audit Trail in your organization.", "created": "2020-09-17T20:37:03.702585+00:00", + "group_name": "Compliance", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9311970e-f925-11ea-ab4d-1760e76381c1", "attributes": + {"name": "api_keys_read", "display_name": "API Keys Read", "description": + "List and retrieve the key values of all API Keys in your organization.", + "created": "2020-09-17T20:37:16.471514+00:00", "group_name": "API and Application + Keys", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "attributes": {"name": "api_keys_write", + "display_name": "API Keys Write", "description": "Create and rename API Keys + for your organization.", "created": "2020-09-17T20:37:27.331389+00:00", "group_name": + "API and Application Keys", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "attributes": + {"name": "synthetics_global_variable_read", "display_name": "Synthetics Global + Variable Read", "description": "View, search, and use Synthetics global variables.", + "created": "2020-09-17T20:37:50.165103+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", "attributes": {"name": "synthetics_global_variable_write", + "display_name": "Synthetics Global Variable Write", "description": "Create, + edit, and delete global variables for Synthetics.", "created": "2020-09-17T20:38:01.966230+00:00", + "group_name": "Synthetic Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "b6858556-f925-11ea-9222-1f47b8677b93", + "attributes": {"name": "synthetics_read", "display_name": "Synthetics Read", + "description": "List and view configured Synthetic tests and test results.", + "created": "2020-09-17T20:38:15.951574+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "attributes": {"name": "synthetics_write", + "display_name": "Synthetics Write", "description": "Create, edit, and delete + Synthetic tests.", "created": "2020-09-17T20:38:27.421632+00:00", "group_name": + "Synthetic Monitoring", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "attributes": + {"name": "synthetics_default_settings_read", "display_name": "Synthetics Default + Settings Read", "description": "View the default settings for Synthetic Monitoring.", + "created": "2020-09-17T20:38:49.527477+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "cf223140-f925-11ea-a3a2-df370532bcf7", "attributes": {"name": "synthetics_default_settings_write", + "display_name": "Synthetics Default Settings Write", "description": "Edit + the default settings for Synthetic Monitoring.", "created": "2020-09-17T20:38:57.244987+00:00", + "group_name": "Synthetic Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", + "attributes": {"name": "logs_write_facets", "display_name": "Logs Write Facets", + "description": "Create or edit Log Facets.", "created": "2020-10-14T12:54:16.607129+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "attributes": + {"name": "service_account_write", "display_name": "Service Account Write", + "description": "Create, disable, and use Service Accounts in your organization.", + "created": "2020-10-22T14:25:34.868208+00:00", "group_name": "Access Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "attributes": {"name": "apm_read", + "display_name": "APM Read", "description": "Read and query APM and Trace Analytics.", + "created": "2020-11-23T20:59:02.902692+00:00", "group_name": "APM", "display_type": + "read", "restricted": true}}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "attributes": {"name": "apm_retention_filter_read", "display_name": "APM Retention + Filters Read", "description": "Read trace retention filters. A user with this + permission can view the retention filters page, list of filters, their statistics, + and creation info.", "created": "2020-11-23T20:59:11.833795+00:00", "group_name": + "APM", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "attributes": {"name": "apm_retention_filter_write", + "display_name": "APM Retention Filters Write", "description": "Create, edit, + and delete trace retention filters. A user with this permission can create + new retention filters, and update or delete to existing retention filters.", + "created": "2020-11-23T20:59:19.531425+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", + "attributes": {"name": "apm_service_ingest_read", "display_name": "APM Service + Ingest Read", "description": "Access service ingestion pages. A user with + this permission can view the service ingestion page, list of root services, + their statistics, and creation info.", "created": "2020-11-23T20:59:25.933546+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "c8654332-2dce-11eb-9145-d33d26eeb65f", "attributes": + {"name": "apm_service_ingest_write", "display_name": "APM Service Ingest Write", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "created": "2020-11-23T20:59:31.352238+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "attributes": + {"name": "apm_apdex_manage_write", "display_name": "APM Apdex Manage Write", + "description": "Set Apdex T value on any service. A user with this permission + can set the T value from the Apdex graph on the service page.", "created": + "2020-11-23T20:59:47.864214+00:00", "group_name": "APM", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c", + "attributes": {"name": "apm_tag_management_write", "display_name": "APM Tag + Management Write", "description": "Edit second primary tag selection. A user + with this permission can modify the second primary tag dropdown in the APM + settings page.", "created": "2020-11-23T21:00:01.066421+00:00", "group_name": + "APM", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "attributes": {"name": "apm_primary_operation_write", + "display_name": "APM Primary Operation Write", "description": "Edit the operation + name value selection. A user with this permission can modify the operation + name list in the APM settings page and the operation name controller on the + service page.", "created": "2020-11-23T21:00:18.680068+00:00", "group_name": + "APM", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", "attributes": {"name": "audit_logs_write", + "display_name": "Audit Trail Write", "description": "Configure Audit Trail + in your organization.", "created": "2020-12-01T19:12:04.940111+00:00", "group_name": + "Compliance", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", "attributes": {"name": "rum_apps_write", + "display_name": "RUM Apps Write", "description": "Create, edit, and delete + RUM applications. Creating a RUM application automatically generates a Client + Token. In order to create Client Tokens directly, a user needs the Client + Tokens Write permission.", "created": "2021-01-11T19:07:15.721075+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "attributes": {"name": "debugger_write", "display_name": "Dynamic Instrumentation + Write", "description": "Edit Dynamic Instrumentation configuration. Create + or modify Dynamic Instrumentation probes that do not capture function state.", + "created": "2021-03-08T15:07:07.319753+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "attributes": {"name": "debugger_read", "display_name": "Dynamic Instrumentation + Read", "description": "View Dynamic Instrumentation configuration.", "created": + "2021-03-08T15:07:07.333513+00:00", "group_name": "APM", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005", + "attributes": {"name": "data_scanner_read", "display_name": "Data Scanner + Read", "description": "View Sensitive Data Scanner configurations and scanning + results.", "created": "2021-03-29T16:56:27.205044+00:00", "group_name": "Compliance", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "attributes": {"name": "data_scanner_write", + "display_name": "Data Scanner Write", "description": "Edit Sensitive Data + Scanner configurations.", "created": "2021-03-29T16:56:27.219481+00:00", "group_name": + "Compliance", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "attributes": {"name": "org_management", + "display_name": "Org Management", "description": "Edit org configurations, + including authentication and certain security preferences such as configuring + SAML, renaming an org, configuring allowed login methods, creating child orgs, + subscribing & unsubscribing from apps in the marketplace, and enabling & disabling + Remote Configuration for the entire organization.", "created": "2021-04-23T17:51:22.555499+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "99397470-b16d-11eb-a891-da7ad0900005", + "attributes": {"name": "security_monitoring_filters_read", "display_name": + "Security Filters Read", "description": "Read Security Filters.", "created": + "2021-05-10T08:56:24.514661+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "993b34d6-b16d-11eb-a891-da7ad0900005", "attributes": {"name": "security_monitoring_filters_write", + "display_name": "Security Filters Write", "description": "Create, edit, and + delete Security Filters.", "created": "2021-05-10T08:56:24.527411+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", + "attributes": {"name": "incident_read", "display_name": "Incidents Read", + "description": "View incidents in Datadog.", "created": "2021-06-22T15:11:07.986072+00:00", + "group_name": "Case and Incident Management", "display_type": "read", "restricted": + true}}, {"type": "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005", + "attributes": {"name": "incident_write", "display_name": "Incidents Write", + "description": "Create, view, and manage incidents in Datadog.", "created": + "2021-06-22T15:11:08.003239+00:00", "group_name": "Case and Incident Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "122f7508-d36c-11eb-b2bf-da7ad0900005", "attributes": {"name": "incident_settings_read", + "display_name": "Incident Settings Read", "description": "View Incident Settings.", + "created": "2021-06-22T15:11:07.995787+00:00", "group_name": "Case and Incident + Management", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "attributes": {"name": "incident_settings_write", + "display_name": "Incident Settings Write", "description": "Configure Incident + Settings.", "created": "2021-06-22T15:11:07.999194+00:00", "group_name": "Case + and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005", "attributes": + {"name": "appsec_event_rule_read", "display_name": "Application Security Management + Event Rules Read", "description": "View Application Security Management Event + Rules.", "created": "2021-07-19T13:26:35.252432+00:00", "group_name": "Cloud + Security Platform", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005", "attributes": + {"name": "appsec_event_rule_write", "display_name": "Application Security + Management Event Rules Write", "description": "Edit Application Security Management + Event Rules.", "created": "2021-07-19T13:26:35.260787+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "attributes": + {"name": "rum_apps_read", "display_name": "RUM Apps Read", "description": + "View RUM Applications data.", "created": "2021-08-02T09:46:22.567371+00:00", + "group_name": "Real User Monitoring", "display_type": "read", "restricted": + true}}, {"type": "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", + "attributes": {"name": "rum_session_replay_read", "display_name": "RUM Session + Replay Read", "description": "View Session Replays.", "created": "2021-08-02T09:46:22.572685+00:00", + "group_name": "Real User Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "c94811de-16c7-11ec-88cc-da7ad0900005", + "attributes": {"name": "security_monitoring_notification_profiles_read", "display_name": + "Security Notification Rules Read", "description": "Read Notification Rules.", + "created": "2021-09-16T08:26:27.288070+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "attributes": {"name": "security_monitoring_notification_profiles_write", + "display_name": "Security Notification Rules Write", "description": "Create, + edit, and delete Notification Rules.", "created": "2021-09-16T08:26:27.292835+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005", + "attributes": {"name": "apm_generate_metrics", "display_name": "APM Generate + Metrics", "description": "Create custom metrics from spans.", "created": "2021-09-16T15:31:28.639581+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005", "attributes": + {"name": "security_monitoring_cws_agent_rules_read", "display_name": "Cloud + Workload Security Agent Rules Read", "description": "Read Cloud Workload Security + Agent Rules.", "created": "2021-11-17T10:41:45.755009+00:00", "group_name": + "Cloud Security Platform", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "f5e1489a-4792-11ec-944b-da7ad0900005", "attributes": + {"name": "security_monitoring_cws_agent_rules_write", "display_name": "Cloud + Workload Security Agent Rules Write", "description": "Create, edit, and delete + Cloud Workload Security Agent Rules.", "created": "2021-11-17T10:41:45.761956+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", + "attributes": {"name": "apm_pipelines_write", "display_name": "APM Pipelines + Write", "description": "Add and change APM pipeline configurations.", "created": + "2021-12-06T14:51:25.389398+00:00", "group_name": "APM", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005", + "attributes": {"name": "apm_pipelines_read", "display_name": "APM Pipelines + Read", "description": "View APM pipeline configurations.", "created": "2021-12-07T11:21:23.741014+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "attributes": + {"name": "observability_pipelines_read", "display_name": "Observability Pipelines + Read", "description": "View pipelines in your organization.", "created": "2021-12-09T00:11:41.567875+00:00", + "group_name": "Observability Pipelines", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "attributes": {"name": "observability_pipelines_write", "display_name": "Observability + Pipelines Write", "description": "Edit pipelines in your organization.", "created": + "2021-12-09T00:11:41.572883+00:00", "group_name": "Observability Pipelines", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "e31e0056-8502-11ec-b266-da7ad0900005", "attributes": {"name": "workflows_read", + "display_name": "Workflows Read", "description": "View workflows.", "created": + "2022-02-03T15:06:38.846399+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "e31f0230-8502-11ec-b266-da7ad0900005", "attributes": {"name": "workflows_write", + "display_name": "Workflows Write", "description": "Create, edit, and delete + workflows.", "created": "2022-02-03T15:06:38.853003+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "workflows_run", "display_name": "Workflows Run", "description": + "Run workflows.", "created": "2022-02-03T15:06:38.849099+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "connections_read", "display_name": "Connections Read", + "description": "List and view available connections. Connections contain secrets + that cannot be revealed.", "created": "2022-02-03T15:06:38.837721+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "connections_write", "display_name": "Connections Write", + "description": "Create and delete connections.", "created": "2022-02-03T15:06:38.843395+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", + "attributes": {"name": "notebooks_read", "display_name": "Notebooks Read", + "description": "View notebooks.", "created": "2022-03-02T18:51:33.435297+00:00", + "group_name": "Notebooks", "display_type": "read", "restricted": true}}, {"type": + "permissions", "id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "attributes": + {"name": "notebooks_write", "display_name": "Notebooks Write", "description": + "Create and change notebooks.", "created": "2022-03-02T18:51:33.439640+00:00", + "group_name": "Notebooks", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005", "attributes": + {"name": "logs_delete_data", "display_name": "Logs Delete Data", "description": + "Delete data from your Logs, including entire indexes.", "created": "2022-02-25T18:51:34.198635+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005", "attributes": + {"name": "rum_generate_metrics", "display_name": "RUM Generate Metrics", "description": + "Create custom metrics from RUM events.", "created": "2022-04-11T16:26:30.469616+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "attributes": {"name": "aws_configurations_manage", "display_name": "AWS Configurations + Manage", "description": "Add or remove but not edit AWS integration configurations.", + "created": "2022-04-26T20:21:48.019179+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "7fbe2266-c59e-11ec-90fb-da7ad0900005", "attributes": {"name": "azure_configurations_manage", + "display_name": "Azure Configurations Manage", "description": "Add or remove + but not edit Azure integration configurations.", "created": "2022-04-26T20:21:48.031171+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "attributes": + {"name": "gcp_configurations_manage", "display_name": "GCP Configurations + Manage", "description": "Add or remove but not edit GCP integration configurations.", + "created": "2022-04-26T20:21:48.027662+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "attributes": {"name": "manage_integrations", + "display_name": "Integrations Manage", "description": "Install, uninstall, + and configure integrations.", "created": "2022-04-26T20:21:48.034453+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "attributes": + {"name": "usage_notifications_read", "display_name": "Usage Notifications + Read", "description": "Receive notifications and view currently configured + notification settings.", "created": "2022-05-17T13:56:29.090665+00:00", "group_name": + "Billing and Usage", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "attributes": + {"name": "usage_notifications_write", "display_name": "Usage Notifications + Write", "description": "Receive notifications and configure notification settings.", + "created": "2022-05-17T13:56:29.094457+00:00", "group_name": "Billing and + Usage", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "attributes": {"name": "generate_dashboard_reports", + "display_name": "Dashboards Report Write", "description": "Schedule PDF reports + from a dashboard.", "created": "2022-06-06T18:15:47.465864+00:00", "group_name": + "Dashboards", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "f33f74be-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_read", + "display_name": "SLOs Read", "description": "View SLOs and status corrections.", + "created": "2022-06-08T16:20:45.638848+00:00", "group_name": "Service Level + Objectives", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "f340161c-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_write", + "display_name": "SLOs Write", "description": "Create, edit, and delete SLOs.", + "created": "2022-06-08T16:20:45.643085+00:00", "group_name": "Service Level + Objectives", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_corrections", + "display_name": "SLOs Status Corrections", "description": "Apply, edit, and + delete SLO status corrections. A user with this permission can make status + corrections, even if they do not have permission to edit those SLOs.", "created": + "2022-06-08T16:20:45.632820+00:00", "group_name": "Service Level Objectives", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "3ad32264-f311-11ec-a058-da7ad0900005", "attributes": {"name": "monitor_config_policy_write", + "display_name": "Monitor Configuration Policy Write", "description": "Create, + update, and delete monitor configuration policies.", "created": "2022-06-23T16:26:26.854058+00:00", + "group_name": "Monitors", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f42ef088-173a-11ed-8654-da7ad0900005", "attributes": + {"name": "apm_service_catalog_write", "display_name": "Service Catalog Write", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "created": "2022-08-08T16:55:49.060954+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "attributes": + {"name": "apm_service_catalog_read", "display_name": "Service Catalog Read", + "description": "View service catalog and service definitions.", "created": + "2022-08-08T16:55:49.055930+00:00", "group_name": "APM", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", + "attributes": {"name": "logs_write_forwarding_rules", "display_name": "Logs + Write Forwarding Rules", "description": "Add and edit forwarding destinations + and rules for logs.", "created": "2022-08-08T21:30:48.328740+00:00", "group_name": + "Log Management", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005", "attributes": + {"name": "connections_resolve", "display_name": "Connections Resolve", "description": + "Resolve connections.", "created": "2022-08-25T15:26:23.943459+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_protect_read", "display_name": "Application + Security Management Protect Read", "description": "View blocked attackers.", + "created": "2022-10-27T09:25:59.057166+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "attributes": {"name": "appsec_protect_write", + "display_name": "Application Security Management Protect Write", "description": + "Manage blocked attackers.", "created": "2022-10-27T09:25:59.060959+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_activation_read", "display_name": "Application + Security Management 1-click Enablement Read", "description": "View whether + Application Security Management has been enabled or disabled on services via + 1-click enablement with Remote Configuration.", "created": "2022-10-27T09:25:59.047444+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_activation_write", "display_name": "Application + Security Management 1-click Enablement Write", "description": "Enable or disable + Application Security Management on services via 1-click enablement.", "created": + "2022-10-27T09:25:59.053394+00:00", "group_name": "Cloud Security Platform", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "c0490360-5a12-11ed-adbe-da7ad0900005", "attributes": {"name": "apps_run", + "display_name": "Apps View", "description": "View and run Apps in App Builder.", + "created": "2022-11-01T18:26:50.026179+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005", "attributes": + {"name": "apps_write", "display_name": "Apps Write", "description": "Create, + edit, and delete Apps in App Builder.", "created": "2022-11-01T18:26:50.036655+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "926612da-7a4c-11ed-b809-da7ad0900005", + "attributes": {"name": "cases_read", "display_name": "Cases Read", "description": + "View Cases.", "created": "2022-12-12T18:41:21.060748+00:00", "group_name": + "Case and Incident Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "attributes": + {"name": "cases_write", "display_name": "Cases Write", "description": "Create + and update cases.", "created": "2022-12-12T18:41:21.067150+00:00", "group_name": + "Case and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "attributes": + {"name": "apm_remote_configuration_write", "display_name": "APM Remote Configuration + Write", "description": "Edit APM Remote Configuration.", "created": "2022-12-12T20:21:20.723147+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "attributes": + {"name": "apm_remote_configuration_read", "display_name": "APM Remote Configuration + Read", "description": "View APM Remote Configuration.", "created": "2022-12-12T20:21:20.716560+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "attributes": + {"name": "ci_visibility_read", "display_name": "CI Visibility Read", "description": + "View CI Visibility.", "created": "2022-12-13T16:02:28.814628+00:00", "group_name": + "Software Delivery", "display_type": "read", "restricted": true}}, {"type": + "permissions", "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "attributes": + {"name": "ci_visibility_write", "display_name": "CI Visibility Tests Write", + "description": "Edit flaky tests and delete Test Services.", "created": "2022-12-13T16:02:28.821529+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "ci_provider_settings_write", "display_name": "CI Provider + Settings Write", "description": "Edit CI Provider settings. Manage GitHub + accounts and repositories for enabling CI Visibility and job logs collection.", + "created": "2022-12-13T16:02:28.806929+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "attributes": {"name": "ci_visibility_settings_write", + "display_name": "CI Visibility Settings Write", "description": "Configure + CI Visibility settings. Set a repository default branch, enable GitHub comments, + and delete test services.", "created": "2022-12-13T16:02:28.818035+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "intelligent_test_runner_activation_write", "display_name": + "Intelligent Test Runner Activation Write", "description": "Deprecated. Enable + or disable Intelligent Test Runner.", "created": "2022-12-13T16:02:28.826271+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "intelligent_test_runner_settings_write", "display_name": + "Intelligent Test Runner Settings Write", "description": "Deprecated. Edit + Intelligent Test Runner settings, such as modifying ITR excluded branch list.", + "created": "2022-12-13T16:02:28.830112+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "55f64460-7d61-11ed-9c36-da7ad0900005", "attributes": {"name": "continuous_profiler_read", + "display_name": "Continuous Profiler Read", "description": "View data in Continuous + Profiler.", "created": "2022-12-16T16:47:32.584514+00:00", "group_name": "APM", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005", "attributes": {"name": "teams_manage", + "display_name": "Teams Manage", "description": "Manage Teams. Create, delete, + rename, and edit metadata of all Teams. To control Team membership across + all Teams, use the User Access Manage permission.", "created": "2023-01-18T20:45:46.126002+00:00", + "group_name": "Teams", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005", "attributes": + {"name": "security_monitoring_findings_read", "display_name": "Security Monitoring + Findings Read", "description": "View a list of findings that include both + misconfigurations and identity risks.", "created": "2023-02-24T14:30:40.720618+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", + "attributes": {"name": "incident_notification_settings_read", "display_name": + "Incident Notification Settings Read", "description": "View Incidents Notification + settings.", "created": "2023-02-24T17:27:09.998449+00:00", "group_name": "Case + and Incident Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "attributes": + {"name": "incident_notification_settings_write", "display_name": "Incident + Notification Settings Write", "description": "Configure Incidents Notification + settings.", "created": "2023-02-24T17:27:09.998449+00:00", "group_name": "Case + and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "attributes": + {"name": "ci_ingestion_control_write", "display_name": "CI Visibility Ingestion + Control Write", "description": "Edit CI Ingestion Control exclusion filters.", + "created": "2023-03-24T10:25:52.891502+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005", "attributes": {"name": "error_tracking_write", + "display_name": "Error Tracking Issue Write", "description": "Edit Error Tracking + issues.", "created": "2023-03-27T16:55:39.540192+00:00", "group_name": "Error + Tracking", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "81e488c0-db35-11ed-a170-da7ad0900005", "attributes": {"name": "watchdog_alerts_write", + "display_name": "Watchdog Alerts Write", "description": "Manage Watchdog Alerts.", + "created": "2023-04-15T02:30:37.731056+00:00", "group_name": "Watchdog", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005", + "attributes": {"name": "saved_views_write", "display_name": "Saved Views Write", + "description": "Modify Saved Views across all Datadog products.", "created": + "2023-04-15T02:30:37.731056+00:00", "group_name": "Cross-Product Features", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "94c8a4da-de87-11ed-9e92-da7ad0900005", "attributes": {"name": "client_tokens_read", + "display_name": "Client Tokens Read", "description": "Read Client Tokens. + Unlike API keys, client tokens may be exposed client-side in JavaScript code + for web browsers and other clients to send data to Datadog.", "created": "2023-04-19T07:55:41.646942+00:00", + "group_name": "API and Application Keys", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "94c927e8-de87-11ed-9e92-da7ad0900005", + "attributes": {"name": "client_tokens_write", "display_name": "Client Tokens + Write", "description": "Create and edit Client Tokens. Unlike API keys, client + tokens may be exposed client-side in JavaScript code for web browsers and + other clients to send data to Datadog.", "created": "2023-04-19T07:55:41.646942+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "619b2642-f41b-11ed-b4e1-da7ad0900005", + "attributes": {"name": "event_correlation_config_read", "display_name": "Event + Correlation Config Read", "description": "Read Event Correlation Configuration + data such as Correlation Rules and Settings.", "created": "2023-05-16T18:56:35.719150+00:00", + "group_name": "Events", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "attributes": + {"name": "event_correlation_config_write", "display_name": "Event Correlation + Config Write", "description": "Manage Event Correlation Configuration such + as Correlation Rules and Settings.", "created": "2023-05-16T18:56:35.719150+00:00", + "group_name": "Events", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005", "attributes": + {"name": "event_config_write", "display_name": "Event Config Write", "description": + "Manage general event configuration such as API Emails.", "created": "2023-05-20T00:00:57.864864+00:00", + "group_name": "Events", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "attributes": + {"name": "security_monitoring_findings_write", "display_name": "Security Monitoring + Findings Write", "description": "Mute CSPM Findings.", "created": "2023-05-23T21:45:42.705754+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "attributes": {"name": "cloud_cost_management_read", "display_name": "Cloud + Cost Management Read", "description": "View Cloud Cost pages and the cloud + cost data source in dashboards and notebooks. For more details, see the Cloud + Cost Management docs.", "created": "2023-05-31T19:20:42.284425+00:00", "group_name": + "Cloud Cost Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "attributes": + {"name": "cloud_cost_management_write", "display_name": "Cloud Cost Management + Write", "description": "Configure cloud cost accounts and global customizations. + For more details, see the Cloud Cost Management docs.", "created": "2023-05-31T19:20:42.284425+00:00", + "group_name": "Cloud Cost Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", + "attributes": {"name": "host_tags_write", "display_name": "Host Tags Write", + "description": "Add and change tags on hosts.", "created": "2023-05-31T05:12:01.547070+00:00", + "group_name": "Metrics", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005", "attributes": + {"name": "ci_visibility_pipelines_write", "display_name": "CI Visibility Pipelines + Write", "description": "Create CI Visibility pipeline spans using the API.", + "created": "2023-06-01T10:15:50.891463+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "attributes": {"name": "quality_gate_rules_read", + "display_name": "Quality Gate Rules Read", "description": "View Quality Gate + Rules.", "created": "2023-06-19T16:27:34.826612+00:00", "group_name": "Software + Delivery", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "attributes": {"name": "quality_gate_rules_write", + "display_name": "Quality Gate Rules Write", "description": "Edit Quality Gate + Rules.", "created": "2023-06-19T16:27:34.826612+00:00", "group_name": "Software + Delivery", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "attributes": {"name": "metrics_metadata_write", + "display_name": "Metrics Metadata Write", "description": "Edit metadata on + metrics.", "created": "2023-06-23T16:21:25.009293+00:00", "group_name": "Metrics", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "4316b75c-093f-11ee-98e9-da7ad0900005", "attributes": {"name": "rum_delete_data", + "display_name": "RUM Delete Data", "description": "Delete data from RUM.", + "created": "2023-06-12T16:36:20.819036+00:00", "group_name": "Real User Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "4316826e-093f-11ee-98e9-da7ad0900005", "attributes": {"name": "appsec_vm_write", + "display_name": "Vulnerability Management Write", "description": "Update status + or assignee of vulnerabilities.", "created": "2023-06-12T16:36:20.819036+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "attributes": {"name": "reference_tables_write", "display_name": "Reference + Tables Write", "description": "Create or modify Reference Tables.", "created": + "2023-06-12T16:36:20.819036+00:00", "group_name": "Reference Tables", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "attributes": {"name": "rum_playlist_write", "display_name": "RUM Playlist + Write", "description": "Create, update, and delete RUM playlists. Add and + remove sessions from RUM playlists.", "created": "2023-07-07T16:26:50.792866+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", + "attributes": {"name": "observability_pipelines_delete", "display_name": "Observability + Pipelines Delete", "description": "Delete pipelines from your organization.", + "created": "2023-07-13T16:25:44.923503+00:00", "group_name": "Observability + Pipelines", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "attributes": {"name": "observability_pipelines_deploy", + "display_name": "Observability Pipelines Deploy", "description": "Deploy pipelines + in your organization.", "created": "2023-07-13T16:25:44.923503+00:00", "group_name": + "Observability Pipelines", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "attributes": + {"name": "processes_generate_metrics", "display_name": "Processes Generate + Metrics", "description": "Create custom metrics from processes.", "created": + "2023-07-12T16:27:03.457484+00:00", "group_name": "Processes", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "attributes": {"name": "api_keys_delete", "display_name": "API Keys Delete", + "description": "Delete API Keys for your organization.", "created": "2023-07-12T16:27:03.457484+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "attributes": {"name": "agent_flare_collection", "display_name": "Agent Flare + Collection", "description": "Collect an Agent flare with Fleet Automation.", + "created": "2023-07-13T16:25:44.923503+00:00", "group_name": "Fleet Automation", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005", "attributes": {"name": "org_connections_write", + "display_name": "Org Connections Write", "description": "Control which organizations + can query your organization''s data.", "created": "2023-07-20T16:25:38.185785+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005", + "attributes": {"name": "org_connections_read", "display_name": "Org Connections + Read", "description": "View which organizations can query data from your organization. + Query data from other organizations.", "created": "2023-07-20T16:25:38.185785+00:00", + "group_name": "Access Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "attributes": + {"name": "facets_write", "display_name": "Facets Write", "description": "Manage + facets for products other than Log Management, such as APM Traces. To modify + Log Facets, use Logs Write Facets.", "created": "2023-07-27T16:26:26.546986+00:00", + "group_name": "Cross-Product Features", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", + "attributes": {"name": "security_monitoring_suppressions_read", "display_name": + "Security Suppressions Read", "description": "Read Rule Suppressions.", "created": + "2023-08-17T16:25:26.209216+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "attributes": {"name": "security_monitoring_suppressions_write", + "display_name": "Security Suppressions Write", "description": "Write Rule + Suppressions.", "created": "2023-08-17T16:25:26.209216+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "attributes": + {"name": "static_analysis_settings_write", "display_name": "Static Analysis + Settings Write", "description": "Edit Static Analysis settings.", "created": + "2023-08-18T16:25:56.688500+00:00", "group_name": "Software Delivery", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005", + "attributes": {"name": "cd_visibility_read", "display_name": "CD Visibility + Read", "description": "View CD Visibility.", "created": "2023-09-08T23:01:01.285130+00:00", + "group_name": "Software Delivery", "display_type": "read", "restricted": true}}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "attributes": + {"name": "ndm_netflow_port_mappings_write", "display_name": "NDM Netflow Port + Mappings Write", "description": "Write NDM Netflow port mappings.", "created": + "2023-10-12T16:26:03.661255+00:00", "group_name": "Network Device Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "2de35000-69e5-11ee-996b-da7ad0900005", "attributes": {"name": "appsec_vm_read", + "display_name": "Vulnerability Management Read", "description": "View infrastructure, + application code and library vulnerabilities. This does not restrict access + to the vulnerability data source through the API or inventory SQL.", "created": + "2023-10-13T16:25:53.335225+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": true}}, {"type": "permissions", "id": + "54f38ef0-6f65-11ee-a094-da7ad0900005", "attributes": {"name": "debugger_capture_variables", + "display_name": "Dynamic Instrumentation Capture Variables", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "created": "2023-10-20T16:25:50.268064+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "f2cc9374-9841-11ee-a301-da7ad0900005", + "attributes": {"name": "error_tracking_settings_write", "display_name": "Error + Tracking Settings Write", "description": "Disable Error Tracking, edit inclusion + filters, and edit rate limit.", "created": "2023-12-11T16:25:50.880331+00:00", + "group_name": "Error Tracking", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "attributes": + {"name": "error_tracking_exclusion_filters_write", "display_name": "Error + Tracking Exclusion Filters Write", "description": "Add or change Error Tracking + exclusion filters.", "created": "2023-12-11T16:25:50.880331+00:00", "group_name": + "Error Tracking", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "attributes": + {"name": "integrations_read", "display_name": "Integrations Read", "description": + "View integrations and their configurations.", "created": "2024-01-23T16:26:45.209142+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "attributes": + {"name": "apm_api_catalog_write", "display_name": "API Catalog Write", "description": + "Add, modify, and delete API catalog definitions.", "created": "2024-02-02T16:25:57.659403+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "attributes": + {"name": "apm_api_catalog_read", "display_name": "API Catalog Read", "description": + "View API catalog and API definitions.", "created": "2024-02-02T16:25:57.659403+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "11280c24-cce8-11ee-af00-da7ad0900005", "attributes": + {"name": "containers_generate_image_metrics", "display_name": "Containers + Write Image Trend Metrics", "description": "Create or edit trend metrics from + container images.", "created": "2024-02-16T16:25:58.736360+00:00", "group_name": + "Containers", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "attributes": {"name": "rum_extend_retention", + "display_name": "RUM Session Replay Extend Retention", "description": "Extend + the retention of Session Replays.", "created": "2024-03-14T16:26:30.797793+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005", + "attributes": {"name": "on_prem_runner_read", "display_name": "Private Action + Runner Read", "description": "View and search Private Action Runners for Workflow + Automation and App Builder.", "created": "2024-03-18T16:26:33.583707+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", + "attributes": {"name": "on_prem_runner_use", "display_name": "Private Action + Runner Contribute", "description": "Attach a Private Action Runner to a connection.", + "created": "2024-03-18T16:26:33.583707+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "attributes": + {"name": "on_prem_runner_write", "display_name": "Private Action Runner Write", + "description": "Create and edit Private Action Runners for Workflow Automation + and App Builder.", "created": "2024-03-18T16:26:33.583707+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", + "attributes": {"name": "dora_settings_write", "display_name": "DORA Settings + Write", "description": "Edit the settings for DORA.", "created": "2024-04-08T16:25:58.692075+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", + "attributes": {"name": "agent_upgrade_write", "display_name": "Agent Upgrade", + "description": "Upgrade Datadog Agents with Fleet Automation.", "created": + "2024-04-22T16:25:53.208974+00:00", "group_name": "Fleet Automation", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", + "attributes": {"name": "continuous_profiler_pgo_read", "display_name": "Read + Continuous Profiler Profile-Guided Optimization (PGO) Data", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "created": "2024-04-23T16:30:30.492439+00:00", "group_name": "APM", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005", + "attributes": {"name": "oci_configurations_manage", "display_name": "OCI Configurations + Manage", "description": "Add or remove but not edit Oracle Cloud integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "attributes": {"name": "aws_configuration_read", + "display_name": "AWS Configuration Read", "description": "View but not add, + remove, or edit AWS integration configurations.", "created": "2024-04-23T16:30:30.492439+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "ccd09204-018e-11ef-afb6-da7ad0900005", "attributes": + {"name": "azure_configuration_read", "display_name": "Azure Configuration + Read", "description": "View but not add, remove, or edit Azure integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "attributes": {"name": "gcp_configuration_read", + "display_name": "GCP Configuration Read", "description": "View but not add, + remove, or edit GCP integration configurations.", "created": "2024-04-23T16:30:30.492439+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005", "attributes": + {"name": "oci_configuration_read", "display_name": "OCI Configuration Read", + "description": "View but not add, remove, or edit Oracle Cloud integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "attributes": {"name": "aws_configuration_edit", + "display_name": "AWS Configuration Edit", "description": "Edit but not add + or remove AWS integration configurations.", "created": "2024-05-02T16:26:19.141095+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "attributes": + {"name": "azure_configuration_edit", "display_name": "Azure Configuration + Edit", "description": "Edit but not add or remove Azure integration configurations.", + "created": "2024-05-02T16:26:19.141095+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005", "attributes": {"name": "gcp_configuration_edit", + "display_name": "GCP Configuration Edit", "description": "Edit but not add + or remove GCP integration configurations.", "created": "2024-05-02T16:26:19.141095+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "attributes": + {"name": "oci_configuration_edit", "display_name": "OCI Configuration Edit", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "created": "2024-05-02T16:26:19.141095+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "attributes": {"name": "llm_observability_read", + "display_name": "LLM Observability Read", "description": "View LLM Observability.", + "created": "2024-05-03T16:26:22.500447+00:00", "group_name": "LLM Observability", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ef950332-13a0-11ef-b582-da7ad0900005", "attributes": {"name": "flex_logs_config_write", + "display_name": "Flex Logs Configuration Write", "description": "Manage your + organization''s flex logs configuration.", "created": "2024-05-16T16:25:40.697830+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "21c5475c-228f-11ef-a00d-da7ad0900005", "attributes": + {"name": "reference_tables_read", "display_name": "Reference Tables Read", + "description": "View Reference Tables.", "created": "2024-06-04T16:26:01.400743+00:00", + "group_name": "Reference Tables", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "75066402-3890-11ef-bbb1-da7ad0900005", "attributes": + {"name": "fleet_policies_write", "display_name": "Agent Configuration Management", + "description": "Create and deploy Agent configurations.", "created": "2024-07-02T16:30:56.156267+00:00", + "group_name": "Fleet Automation", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005", "attributes": + {"name": "orchestration_custom_resource_definitions_write", "display_name": + "Custom Resource Definition Write", "description": "Enable, disable and update + custom resource indexing.", "created": "2024-07-02T16:30:56.156267+00:00", + "group_name": "Orchestration", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005", "attributes": + {"name": "code_analysis_read", "display_name": "Code Analysis Read", "description": + "View Code Analysis.", "created": "2024-08-06T16:26:25.858118+00:00", "group_name": + "Software Delivery", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005", "attributes": + {"name": "orchestration_workload_scaling_write", "display_name": "Workload + Scaling Write", "description": "Enable, disable, and configure workload autoscaling. + Apply workload scaling recommendations.", "created": "2024-08-06T16:26:25.858118+00:00", + "group_name": "Orchestration", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "06e3004e-5987-11ef-89c3-da7ad0900005", "attributes": + {"name": "llm_observability_write", "display_name": "LLM Observability Write", + "description": "Create, Update, and Delete LLM Observability resources including + User Defined Evaluations, OOTB Evaluations, and User Defined Topics.", "created": + "2024-08-13T15:16:34.275999+00:00", "group_name": "LLM Observability", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "attributes": {"name": "observability_pipelines_capture_read", "display_name": + "Observability Pipelines Live Capture Read", "description": "View captured + events of pipelines in your organization.", "created": "2024-08-27T16:50:39.669348+00:00", + "group_name": "Observability Pipelines", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005", + "attributes": {"name": "observability_pipelines_capture_write", "display_name": + "Observability Pipelines Live Capture Write", "description": "Capture live + events of pipelines in your organization.", "created": "2024-08-27T16:50:39.669348+00:00", + "group_name": "Observability Pipelines", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", + "attributes": {"name": "apps_datastore_read", "display_name": "Actions Datastore + Read", "description": "Allows read access to the data within the Actions Datastore.", + "created": "2024-08-22T16:25:15.890147+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "attributes": + {"name": "apps_datastore_write", "display_name": "Actions Datastore Write", + "description": "Allows modification of data within the Actions Datastore, + including adding, editing, and deleting records.", "created": "2024-08-22T16:25:15.890147+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", + "attributes": {"name": "apps_datastore_manage", "display_name": "Actions Datastore + Manage", "description": "Allows management of the Actions Datastore, including + creating, updating, and deleting the datastore itself.", "created": "2024-08-22T16:25:15.890147+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "attributes": {"name": "security_pipelines_read", "display_name": "Security + Pipelines Read", "description": "View Security Pipelines.", "created": "2024-08-30T16:25:36.779590+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "attributes": {"name": "security_pipelines_write", "display_name": "Security + Pipelines Write", "description": "Create, edit, and delete Security Pipelines.", + "created": "2024-08-30T16:25:36.779590+00:00", "group_name": "Cloud Security + Platform", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "8e9b2142-7511-11ef-b225-da7ad0900005", "attributes": {"name": "connection_groups_write", + "display_name": "Connection Groups Write", "description": "Create, delete + and update connection groups.", "created": "2024-09-17T16:26:13.918826+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "attributes": {"name": "quality_gates_evaluations_read", "display_name": "Quality + Gates Evaluations", "description": "Allow quality gates evaluations.", "created": + "2024-09-23T18:00:21.053557+00:00", "group_name": "Software Delivery", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "attributes": {"name": "connection_groups_read", "display_name": "Connection + Groups Read", "description": "Read and use connection groups.", "created": + "2024-09-26T14:35:22.139553+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "83fc9760-7c51-11ef-b846-da7ad0900005", "attributes": {"name": "security_monitoring_cws_agent_rules_actions", + "display_name": "Cloud Workload Security Agent Actions", "description": "Managing + actions on Cloud Workload Security Agent Rules.", "created": "2024-09-26T21:51:42.032795+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005", + "attributes": {"name": "rum_retention_filters_read", "display_name": "RUM + Retention Filters Read", "description": "View RUM Retention filters data.", + "created": "2024-10-02T23:15:17.740884+00:00", "group_name": "Real User Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "300f81cc-8114-11ef-84c0-da7ad0900005", "attributes": {"name": "rum_retention_filters_write", + "display_name": "RUM Retention Filters Write", "description": "Write RUM Retention + filters.", "created": "2024-10-02T23:15:17.740884+00:00", "group_name": "Real + User Monitoring", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005", "attributes": + {"name": "ddsql_editor_read", "display_name": "DDSQL Editor Read", "description": + "View and use DDSQL Editor.", "created": "2024-10-14T13:30:22.950954+00:00", + "group_name": "DDSQL Editor", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "attributes": + {"name": "disaster_recovery_status_read", "display_name": "Datadog Disaster + Recovery Read", "description": "View the disaster recovery status.", "created": + "2024-11-01T21:30:23.309658+00:00", "group_name": "Disaster Recovery", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "attributes": {"name": "disaster_recovery_status_write", "display_name": "Datadog + Disaster Recovery Write", "description": "Update the disaster recovery status.", + "created": "2024-11-01T21:30:23.309658+00:00", "group_name": "Disaster Recovery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "71949074-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "rum_settings_write", + "display_name": "RUM Settings Write", "description": "Write RUM Settings.", + "created": "2024-11-07T13:30:24.249160+00:00", "group_name": "Real User Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "71957e76-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "test_optimization_read", + "display_name": "Test Optimization Read", "description": "View Test Optimization.", + "created": "2024-11-07T13:30:24.249160+00:00", "group_name": "Software Delivery", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "71958024-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "test_optimization_write", + "display_name": "Test Optimization Write", "description": "Manage flaky tests + for Test Optimization.", "created": "2024-11-07T13:30:24.249160+00:00", "group_name": + "Software Delivery", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "attributes": + {"name": "test_optimization_settings_write", "display_name": "Test Optimization + Settings Write", "description": "Create, delete and update Test Optimization + settings.", "created": "2024-11-19T19:06:07.652237+00:00", "group_name": "Software + Delivery", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "attributes": {"name": "security_comments_write", + "display_name": "Security Comments Write", "description": "Write comments + into vulnerabilities.", "created": "2024-11-22T18:40:23.844837+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005", "attributes": + {"name": "security_comments_read", "display_name": "Security Comments Read", + "description": "Read comments of vulnerabilities.", "created": "2024-11-22T18:40:23.844837+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "attributes": {"name": "dashboards_invite_share", "display_name": "Shared + Dashboards Invite-only Write", "description": "Create, modify and delete shared + dashboards with share type ''Invite-only''. These dashboards can only be accessed + by user-specified email addresses.", "created": "2024-12-10T19:11:49.480076+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "attributes": + {"name": "dashboards_embed_share", "display_name": "Shared Dashboards Embed + Write", "description": "Create, modify and delete shared dashboards with share + type ''Embed''. These dashboards can be embedded on user-specified domains.", + "created": "2024-12-10T19:11:49.480076+00:00", "group_name": "Dashboards", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "attributes": {"name": "embeddable_graphs_share", + "display_name": "Shared Graphs Write", "description": "Generate public links + to share embeddable graphs externally.", "created": "2024-12-10T19:11:49.480076+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "attributes": + {"name": "logs_read_workspaces", "display_name": "Read Logs Workspaces", "description": + "View Logs Workspaces.", "created": "2024-12-11T19:21:44.137884+00:00", "group_name": + "Log Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "attributes": + {"name": "logs_write_workspaces", "display_name": "Write Logs Workspaces", + "description": "Create, update, and delete Logs Workspaces.", "created": "2024-12-11T19:21:44.137884+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "attributes": + {"name": "audience_management_read", "display_name": "Profiles Read", "description": + "View Audience Management data.", "created": "2025-01-07T18:36:31.392090+00:00", + "group_name": "Product Analytics", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "attributes": + {"name": "audience_management_write", "display_name": "Profiles Write", "description": + "Modify Audience Management data.", "created": "2025-01-07T18:36:31.392090+00:00", + "group_name": "Product Analytics", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005", + "attributes": {"name": "logs_read_config", "display_name": "Logs Configuration + Read", "description": "Read logs configuration.", "created": "2025-01-14T18:56:50.868001+00:00", + "group_name": "Log Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9b00426a-da87-11ef-9de6-da7ad0900005", "attributes": + {"name": "on_call_read", "display_name": "On-Call Read", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "created": + "2025-01-24T19:15:42.768282+00:00", "group_name": "On-Call", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "9b00ed28-da87-11ef-9de6-da7ad0900005", + "attributes": {"name": "on_call_write", "display_name": "On-Call Write", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "created": "2025-01-24T19:15:42.768282+00:00", "group_name": "On-Call", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "attributes": {"name": "on_call_page", "display_name": "On-Call Page", "description": + "Page On-Call teams and users.", "created": "2025-01-24T19:15:42.768282+00:00", + "group_name": "On-Call", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005", "attributes": + {"name": "error_tracking_read", "display_name": "Error Tracking Read", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "created": "2025-01-30T18:51:27.197297+00:00", "group_name": "Error Tracking", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "attributes": {"name": "on_call_respond", + "display_name": "On-Call Responder", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "created": "2025-02-03T23:42:07.592356+00:00", "group_name": "On-Call", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "attributes": {"name": "process_tags_read", "display_name": "Process Tags + Read", "description": "View Process Tag Rules.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Processes", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "attributes": + {"name": "process_tags_write", "display_name": "Process Tags Write", "description": + "Create, edit and delete Process Tag Rules.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Processes", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "attributes": + {"name": "network_connections_read", "display_name": "Network Connections + Read", "description": "Read Cloud Network Connections.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Cloud Network Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "attributes": {"name": "serverless_aws_instrumentation_read", "display_name": + "Serverless AWS Instrumentation Read", "description": "View remote instrumentation + configuration for serverless workloads.", "created": "2025-02-11T20:36:29.786935+00:00", + "group_name": "Serverless", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "attributes": + {"name": "serverless_aws_instrumentation_write", "display_name": "Serverless + AWS Instrumentation Write", "description": "Add, update, and remove remote + instrumentation configuration for serverless workloads.", "created": "2025-02-11T20:36:29.786935+00:00", + "group_name": "Serverless", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "attributes": + {"name": "coterm_write", "display_name": "CoTerm Write", "description": "Write + terminal recordings.", "created": "2025-02-28T19:06:40.038336+00:00", "group_name": + "CoTerm", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "attributes": {"name": "coterm_read", + "display_name": "CoTerm Read", "description": "Read terminal recordings.", + "created": "2025-02-28T19:06:40.038336+00:00", "group_name": "CoTerm", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "attributes": {"name": "data_streams_monitoring_capture_messages", "display_name": + "Data Streams Monitoring Capture Messages", "description": "Capture messages + from Kafka topics in the Data Streams Monitoring product.", "created": "2025-03-06T18:51:28.120564+00:00", + "group_name": "Data Streams Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "db45b75e-0360-11f0-8ac3-da7ad0900005", + "attributes": {"name": "cloudcraft_read", "display_name": "Cloudcraft Read", + "description": "View infrastructure diagrams in the Cloudcraft product.", + "created": "2025-03-17T18:51:37.899118+00:00", "group_name": "Infrastructure", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "9bb09240-0fee-11f0-958c-da7ad0900005", "attributes": {"name": "ndm_device_profiles_view", + "display_name": "NDM Device Profiles View", "description": "View NDM device + profiles.", "created": "2025-04-02T18:16:33.714415+00:00", "group_name": "Network + Device Monitoring", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "9bb09a10-0fee-11f0-958c-da7ad0900005", "attributes": + {"name": "ndm_device_profiles_edit", "display_name": "NDM Device Profiles + Edit", "description": "Edit NDM device profiles.", "created": "2025-04-02T18:16:33.714415+00:00", + "group_name": "Network Device Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "ndm_devices_read", "display_name": "NDM Read", "description": + "Read NDM data directly. Note: even without this permission, NDM data can + be retrieved via general infrastructure query APIs.", "created": "2025-04-24T21:30:24.005670+00:00", + "group_name": "Network Device Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "ndm_device_tags_write", "display_name": "NDM Device + Tags Write", "description": "Write NDM device tags.", "created": "2025-04-24T21:30:24.005670+00:00", + "group_name": "Network Device Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "orchestration_workload_scaling_read", "display_name": + "Workload Scaling Read", "description": "View workload autoscaling objects + and recommendations.", "created": "2025-04-24T21:30:24.005670+00:00", "group_name": + "Orchestration", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "attributes": {"name": "bits_investigations_read", + "display_name": "Bits Investigations Read", "description": "Read Bits investigations.", + "created": "2025-04-29T18:51:50.984055+00:00", "group_name": "Bits AI", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "attributes": {"name": "sheets_read", "display_name": "Sheets Read", "description": + "View Sheets.", "created": "2025-04-30T23:15:19.683852+00:00", "group_name": + "Sheets", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "fbf841c6-2618-11f0-8595-da7ad0900005", "attributes": {"name": "sheets_write", + "display_name": "Sheets Write", "description": "Create and change Sheets.", + "created": "2025-04-30T23:15:19.683852+00:00", "group_name": "Sheets", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", + "attributes": {"name": "orchestration_autoscaling_manage", "display_name": + "Autoscaling Manage", "description": "Manage autoscaling cluster level configuration.", + "created": "2025-05-19T18:00:40.454044+00:00", "group_name": "Orchestration", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "12465c5e-3a5c-11f0-becd-da7ad0900005", "attributes": {"name": "code_coverage_read", + "display_name": "Code Coverage read", "description": "View Code Coverage data.", + "created": "2025-05-26T18:05:56.647000+00:00", "group_name": "Software Delivery", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "attributes": {"name": "cases_shared_settings_write", + "display_name": "Case Management Shared Settings Write", "description": "Configure + shared settings for Case Management.", "created": "2025-06-17T18:22:00.814348+00:00", + "group_name": "Case and Incident Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", + "attributes": {"name": "actions_interface_run", "display_name": "Actions Interface + Run", "description": "Execute actions in the Bits AI Action Interface.", "created": + "2025-07-01T14:36:49.982499+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", "attributes": {"name": "ai_guard_evaluate", + "display_name": "AI Guard Evaluate", "description": "Evaluate AI Guard rules.", + "created": "2025-07-09T18:30:33.053855+00:00", "group_name": "Application + Security", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "attributes": {"name": "generate_ccm_report_schedules", + "display_name": "Cloud Cost Report Schedules Write", "description": "View + all report schedules and manage only the ones they''ve created.", "created": + "2025-07-10T18:40:35.388063+00:00", "group_name": "Cloud Cost Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "attributes": {"name": "manage_ccm_report_schedules", + "display_name": "Cloud Cost Report Schedules Manage", "description": "View, + create, and fully manage all report schedules across the organization.", "created": + "2025-07-10T18:40:35.388063+00:00", "group_name": "Cloud Cost Management", + "display_type": "write", "restricted": false}}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005", + "attributes": {"name": "Datadog Read Only Role", "managed": true, "created_at": + "2024-10-08T14:32:47.265744+00:00", "modified_at": "2024-10-08T14:32:47.266206+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": + "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", + "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": + "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", + "id": "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": + "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": + "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f33f74be-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": + "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", + "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": + "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", + "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", "id": + "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": + "permissions", "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", + "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", "id": + "3c002814-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", + "id": "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": + "35e4e288-df3b-11ef-886f-da7ad0900005"}, {"type": "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005"}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": + "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", + "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", "id": + "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", + "id": "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": + "12465c5e-3a5c-11f0-becd-da7ad0900005"}]}}}, {"type": "roles", "id": "693fe720-9569-11ef-969d-da7ad0900005", + "attributes": {"name": "Copy of Datadog Admin Role", "managed": false, "created_at": + "2024-10-28T20:15:44.156681+00:00", "modified_at": "2024-10-28T20:15:44.167199+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e"}, {"type": + "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": "permissions", + "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", "id": + "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": + "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": "permissions", + "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", "id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d"}, + {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19"}, {"type": + "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, {"type": "permissions", + "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": "permissions", "id": + "04668d0a-ec5c-11ea-9483-37d199df4587"}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, + {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc"}, {"type": + "permissions", "id": "04668f62-ec5c-11ea-9483-0fe541ab993f"}, {"type": "permissions", + "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02"}, {"type": "permissions", "id": + "046690de-ec5c-11ea-9483-bbcd905fcdca"}, {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf"}, + {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": + "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", + "id": "8b753262-f925-11ea-82fc-93f07fd96e76"}, {"type": "permissions", "id": + "9311970e-f925-11ea-ab4d-1760e76381c1"}, {"type": "permissions", "id": "998aabac-f925-11ea-b43d-8f1f42f3894e"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "72bc07d8-1472-11eb-a97b-8bff514d7382"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e"}, {"type": + "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": "permissions", + "id": "c8654332-2dce-11eb-9145-d33d26eeb65f"}, {"type": "permissions", "id": + "d23cc894-2dce-11eb-9145-37bf7b2dadc2"}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a"}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", "id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, + {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005"}, {"type": + "permissions", "id": "b39fb79a-90af-11eb-9428-da7ad0900005"}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "993b34d6-b16d-11eb-a891-da7ad0900005"}, + {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, {"type": + "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": + "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "c948b30a-16c7-11ec-88cc-da7ad0900005"}, + {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", + "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": + "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005"}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": + "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005"}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "3ad32264-f311-11ec-a058-da7ad0900005"}, {"type": "permissions", + "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005"}, + {"type": "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", + "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": + "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005"}, + {"type": "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": + "8b254e6a-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005"}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": "81e488c0-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", "id": + "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, + {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, + {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, {"type": + "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": + "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", "id": "4316b75c-093f-11ee-98e9-da7ad0900005"}, + {"type": "permissions", "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": + "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", + "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, {"type": "permissions", "id": + "eadf64b2-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": "eadf675a-2199-11ee-9a0e-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005"}, {"type": "permissions", + "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": + "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", + "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": + "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", + "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}, {"type": "permissions", "id": + "f2cc9374-9841-11ee-a301-da7ad0900005"}, {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005"}, + {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, {"type": + "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": + "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005"}, + {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": + "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", + "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": + "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd09204-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", + "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": + "permissions", "id": "ef950332-13a0-11ef-b582-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75066402-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005"}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", + "id": "06e3004e-5987-11ef-89c3-da7ad0900005"}, {"type": "permissions", "id": + "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", + "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005"}, + {"type": "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": + "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", + "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": + "83fc9760-7c51-11ef-b846-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "80ae7688-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": "71949074-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": + "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", + "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": "permissions", "id": + "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005"}, + {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", + "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", + "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", "id": + "35e4e288-df3b-11ef-886f-da7ad0900005"}]}}}, {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005", + "attributes": {"name": "Datadog Standard Role", "managed": true, "created_at": + "2024-10-08T14:32:47.215056+00:00", "modified_at": "2024-10-08T14:32:47.215828+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": + "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", + "id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, + {"type": "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": + "permissions", "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", + "id": "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": + "5de1e178-8536-11ea-968a-2fd9395bff90"}, {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, + {"type": "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": + "permissions", "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", + "id": "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": + "93654d1c-e706-11ea-9a85-d320ff02824d"}, {"type": "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, + {"type": "permissions", "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": + "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, {"type": "permissions", + "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": "permissions", "id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", "id": "9311970e-f925-11ea-ab4d-1760e76381c1"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": + "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", + "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, + {"type": "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "f07e4234-e894-11eb-ab79-da7ad0900005"}, {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": + "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": + "c948b30a-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, + {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": + "permissions", "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "cf873174-574f-11ec-9869-da7ad0900005"}, {"type": "permissions", "id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, + {"type": "permissions", "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": + "permissions", "id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", + "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": "permissions", "id": + "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": + "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", + "id": "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": + "permissions", "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, + {"type": "permissions", "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": + "permissions", "id": "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", + "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": "permissions", "id": + "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": + "81e488c0-db35-11ed-a170-da7ad0900005"}, {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": + "permissions", "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": + "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, + {"type": "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": + "permissions", "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", + "id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, + {"type": "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": + "permissions", "id": "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", + "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", "id": + "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", + "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": + "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, + {"type": "permissions", "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": + "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", + "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": "permissions", "id": + "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, + {"type": "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": + "permissions", "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": + "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, + {"type": "permissions", "id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": + "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09204-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, {"type": + "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75072806-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, + {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": + "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", + "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, + {"type": "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": + "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": "permissions", + "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", "id": + "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": + "permissions", "id": "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", + "id": "3c002814-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": + "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, + {"type": "permissions", "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", + "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": + "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, + {"type": "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": + "permissions", "id": "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", + "id": "9b00ed28-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": + "9b010d44-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005"}, + {"type": "permissions", "id": "7ad4419a-e288-11ef-bbbc-da7ad0900005"}, {"type": + "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", + "id": "4a6cadb6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": + "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, + {"type": "permissions", "id": "23f76dc4-f607-11ef-99cf-da7ad0900005"}, {"type": + "permissions", "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", + "id": "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", "id": + "9bb09240-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", "id": + "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": "fbf841c6-2618-11f0-8595-da7ad0900005"}, + {"type": "permissions", "id": "12465c5e-3a5c-11f0-becd-da7ad0900005"}, {"type": + "permissions", "id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005"}, {"type": "permissions", + "id": "d2c0335e-5688-11f0-ad5e-da7ad0900005"}, {"type": "permissions", "id": + "cc7517b0-5cf2-11f0-85d4-da7ad0900005"}, {"type": "permissions", "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005"}]}}}], + "meta": {"page": {"total_count": 8, "total_filtered_count": 8, "max_page_size": + 1000}}}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/roles?page%5Bnumber%5D=0&page%5Bsize%5D=100 + response: + body: + string: '{"data": [{"id": "693fe720-9569-11ef-969d-da7ad0900005", "type": "roles", + "attributes": {"created_at": "2024-10-28T20:15:44.156681Z", "created_by_handle": + "michael.richey@datadoghq.com", "modified_at": "2024-10-28T20:15:44.167199Z", + "modified_by_handle": "michael.richey@datadoghq.com", "name": "Copy of Datadog + Admin Role", "team_count": 0, "user_count": 2}, "relationships": {"permissions": + {"data": [{"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": "permissions"}, + {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": + "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", + "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions"}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": "permissions"}, + {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "type": "permissions"}, {"id": + "046690de-ec5c-11ea-9483-bbcd905fcdca", "type": "permissions"}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions"}, {"id": + "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions"}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions"}, {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": + "permissions"}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": + "c8654332-2dce-11eb-9145-d33d26eeb65f", "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", + "type": "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, + {"id": "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": + "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": "permissions"}, + {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": "permissions"}, {"id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "type": "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", + "type": "permissions"}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": + "permissions"}, {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, + {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions"}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions"}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, + {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": + "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions"}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": + "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions"}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": + "permissions"}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, + {"id": "f42ef088-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", + "type": "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": + "permissions"}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, + {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions"}, {"id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", + "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", "type": + "permissions"}, {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, + {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": "permissions"}, {"id": + "f40ff7be-966b-11ec-8253-da7ad0900005", "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions"}, + {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", + "type": "permissions"}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions"}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "type": "permissions"}, + {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": + "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", + "type": "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": "permissions"}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152", "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": + "permissions"}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, + {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005", "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions"}, {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": + "permissions"}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, + {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions"}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": + "permissions"}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, + {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": + "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", + "type": "permissions"}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions"}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, + {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions"}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions"}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, + {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", "type": "permissions"}, {"id": + "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": + "permissions"}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions"}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "ef44613e-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": + "permissions"}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", "type": "permissions"}, {"id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions"}, {"id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions"}, + {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": "permissions"}, {"id": + "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions"}, {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": + "permissions"}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, + {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": + "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": + "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, + {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", + "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": "permissions"}, + {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, {"id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions"}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005", "type": "permissions"}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", + "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, + {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": + "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": "permissions"}, + {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": + "c04a7614-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "type": "permissions"}, + {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", "type": "permissions"}, {"id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions"}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", + "type": "permissions"}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "type": + "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": + "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", + "type": "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": + "permissions"}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": "permissions"}, + {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, {"id": + "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions"}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, + {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": + "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions"}, {"id": "83fc9760-7c51-11ef-b846-da7ad0900005", "type": + "permissions"}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, + {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions"}, {"id": + "76e47222-8a30-11ef-8675-da7ad0900005", "type": "permissions"}, {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": + "permissions"}, {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions"}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", "type": "permissions"}, {"id": + "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", + "type": "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": + "permissions"}, {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": "permissions"}, {"id": + "7d962a3c-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", + "type": "permissions"}, {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": + "permissions"}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": + "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", + "type": "permissions"}, {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": + "permissions"}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "7d9641ac-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": + "permissions"}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": + "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions"}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions"}]}}}, {"id": "3020f50c-8582-11ef-ad61-da7ad0900005", "type": + "roles", "attributes": {"created_at": "2024-10-08T14:32:47.147289Z", "managed": + true, "modified_at": "2024-10-08T14:32:47.147932Z", "name": "Datadog Admin + Role", "team_count": 0, "user_count": 7}, "relationships": {"permissions": + {"data": [{"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": "permissions"}, + {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": + "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", + "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions"}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": "permissions"}, + {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "type": "permissions"}, {"id": + "046690de-ec5c-11ea-9483-bbcd905fcdca", "type": "permissions"}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions"}, {"id": + "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions"}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions"}, {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": + "permissions"}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": + "c8654332-2dce-11eb-9145-d33d26eeb65f", "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", + "type": "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, + {"id": "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": + "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": "permissions"}, + {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": "permissions"}, {"id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "type": "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", + "type": "permissions"}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": + "permissions"}, {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, + {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions"}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions"}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, + {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": + "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions"}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": + "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions"}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": + "permissions"}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, + {"id": "f42ef088-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", + "type": "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": + "permissions"}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, + {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions"}, {"id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", + "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", "type": + "permissions"}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, {"id": + "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": "permissions"}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions"}, {"id": + "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": + "permissions"}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": "permissions"}, + {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "type": "permissions"}, {"id": + "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", + "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions"}, + {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": "permissions"}, {"id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": "permissions"}, + {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, {"id": + "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", "type": + "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, {"id": + "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", + "type": "permissions"}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", "type": + "permissions"}, {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions"}, + {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, {"id": + "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", "type": + "permissions"}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, + {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": + "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", + "type": "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions"}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, + {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "type": + "permissions"}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, + {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": + "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", "type": "permissions"}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", + "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": "permissions"}, + {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions"}, {"id": + "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": + "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions"}, {"id": + "80ae7688-9898-11ef-8b23-da7ad0900005", "type": "permissions"}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", + "type": "permissions"}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "75066402-3890-11ef-bbb1-da7ad0900005", "type": "permissions"}, {"id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", + "type": "permissions"}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions"}, {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, + {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, {"id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions"}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions"}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions"}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions"}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, + {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions"}, {"id": + "cf873174-574f-11ec-9869-da7ad0900005", "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", + "type": "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": + "permissions"}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", "type": + "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": "permissions"}, + {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions"}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": + "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions"}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": "permissions"}, {"id": + "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions"}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "type": "permissions"}, {"id": + "48d8ce74-0065-11ee-9c16-da7ad0900005", "type": "permissions"}, {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", + "type": "permissions"}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": + "permissions"}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "type": "permissions"}, + {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, {"id": + "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", + "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": + "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions"}, + {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": "permissions"}, {"id": + "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", + "type": "permissions"}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, + {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, {"id": + "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": + "permissions"}, {"id": "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions"}, + {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": + "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": + "permissions"}, {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, + {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", + "type": "permissions"}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "ccd09f06-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": + "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions"}, {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": "permissions"}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": + "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", + "type": "permissions"}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", "type": + "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, + {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, {"id": + "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, + {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, {"id": + "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", + "type": "permissions"}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "7d9641ac-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": + "permissions"}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, {"id": + "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions"}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions"}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, + {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, {"id": + "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": "permissions"}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions"}, {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions"}, + {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, {"id": + "02e65e42-fabc-11ef-a653-da7ad0900005", "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions"}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions"}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions"}, + {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": + "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions"}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", "type": + "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions"}, + {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", "type": "permissions"}, {"id": + "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions"}]}}}, {"id": + "3032ffb8-8582-11ef-8bad-da7ad0900005", "type": "roles", "attributes": {"created_at": + "2024-10-08T14:32:47.265744Z", "managed": true, "modified_at": "2024-10-08T14:32:47.266206Z", + "name": "Datadog Read Only Role", "team_count": 0, "user_count": 2}, "relationships": + {"permissions": {"data": [{"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": "permissions"}, + {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions"}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", + "type": "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": "permissions"}, + {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, {"id": + "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": "permissions"}, + {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": "permissions"}, {"id": + "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", + "type": "permissions"}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": + "permissions"}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, + {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": "permissions"}, {"id": + "5de1e178-8536-11ea-968a-2fd9395bff90", "type": "permissions"}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": + "permissions"}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": + "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": + "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": "permissions"}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", + "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, + {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, + {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": "permissions"}, {"id": + "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": "permissions"}, {"id": + "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", + "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, + {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, {"id": + "54f98c32-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "type": "permissions"}]}}}, {"id": "302b4f34-8582-11ef-b6a4-da7ad0900005", + "type": "roles", "attributes": {"created_at": "2024-10-08T14:32:47.215056Z", + "managed": true, "modified_at": "2024-10-08T14:32:47.215828Z", "name": "Datadog + Standard Role", "team_count": 0, "user_count": 3}, "relationships": {"permissions": + {"data": [{"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, + {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": + "65eea998-f6a1-11ed-9953-da7ad0900005", "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions"}, {"id": + "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", + "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, + {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, {"id": + "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": "permissions"}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", + "type": "permissions"}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": + "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": "permissions"}, + {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, {"id": + "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", + "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": "permissions"}, {"id": + "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions"}, + {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions"}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions"}, {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, + {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": + "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", + "type": "permissions"}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions"}, {"id": + "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": "permissions"}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", + "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions"}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152", "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": + "permissions"}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, + {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005", "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "04668bde-ec5c-11ea-9483-fb6cb6586c6a", "type": "permissions"}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", + "type": "permissions"}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": + "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", "type": "permissions"}, + {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, {"id": + "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": + "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, + {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": + "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "type": "permissions"}, + {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": "permissions"}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions"}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "11280c24-cce8-11ee-af00-da7ad0900005", "type": "permissions"}, {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions"}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "type": + "permissions"}, {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions"}, + {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", "type": "permissions"}, {"id": + "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", + "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": + "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions"}, + {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": + "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", + "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": "permissions"}, + {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", "type": + "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": "permissions"}, + {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, {"id": + "e31cca10-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions"}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, + {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions"}, {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": + "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": + "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", + "type": "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": + "permissions"}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, + {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions"}, {"id": + "e31e6b54-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": + "permissions"}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, + {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": "permissions"}, {"id": + "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": + "permissions"}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": + "d039cfec-b44f-11ed-8db8-da7ad0900005", "type": "permissions"}, {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", + "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": + "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": "permissions"}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": + "permissions"}, {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, + {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": + "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, + {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions"}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", + "type": "permissions"}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions"}, {"id": + "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, {"id": + "9bb09240-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", + "type": "permissions"}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, + {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions"}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions"}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", + "type": "permissions"}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": + "permissions"}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, + {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": + "54f98c32-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "type": "permissions"}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", "type": + "permissions"}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions"}]}}}], + "meta": {"page": {"total_count": 4, "total_filtered_count": 4}}}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: DELETE + uri: https://api.us5.datadoghq.com/api/v2/rum/applications/812b8766-fbee-4aa3-8232-892ec810a933 + response: + body: + string: '' + headers: {} + status: + code: 204 + message: No Content +version: 1 diff --git a/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_update_sync.frozen b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_update_sync.frozen new file mode 100644 index 000000000..ac369f8f6 --- /dev/null +++ b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_update_sync.frozen @@ -0,0 +1 @@ +2025-08-27T16:02:55.403413-04:00 \ No newline at end of file diff --git a/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_update_sync.yaml b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_update_sync.yaml new file mode 100644 index 000000000..0261dbab5 --- /dev/null +++ b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_update_sync.yaml @@ -0,0 +1,7222 @@ +interactions: +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/rum/applications + response: + body: + string: '{"data": [{"type": "rum_application", "attributes": {"product_scales": + {"product_analytics_retention_scale": {"state": "NONE", "last_modified_at": + 1756321641996}, "rum_event_processing_scale": {"state": "ALL", "last_modified_at": + 1756321641996}}, "created_by_handle": "michael.richey@datadoghq.com", "product_analytics_replay_sample_rate": + 100, "tags": [], "name": "Test RUM Application", "application_id": "16371816-ab2a-41aa-b12a-40ec4d9628e8", + "is_active": true, "created_at": 1756321641996, "remote_config_id": "0256b730-312e-419a-904f-2ab6d9836eba", + "type": "browser", "org_id": 1000315894, "updated_by_handle": "Datadog", "updated_at": + 1756321932553}, "id": "16371816-ab2a-41aa-b12a-40ec4d9628e8"}]}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/rum/applications/16371816-ab2a-41aa-b12a-40ec4d9628e8 + response: + body: + string: '{"data": {"type": "rum_application", "attributes": {"type": "browser", + "is_active": true, "client_token": "pubcfef5fa71c23a0c961cc1f1f69db5a32", + "name": "Test RUM Application", "hash": "pubcfef5fa71c23a0c961cc1f1f69db5a32", + "application_id": "16371816-ab2a-41aa-b12a-40ec4d9628e8", "created_by_handle": + "michael.richey@datadoghq.com", "product_analytics_replay_sample_rate": 100, + "remote_config_id": "0256b730-312e-419a-904f-2ab6d9836eba", "updated_at": + 1756321932553, "created_at": 1756321641996, "org_id": 1000315894, "updated_by_handle": + "Datadog", "tags": [], "product_scales": {"rum_event_processing_scale": {"state": + "ALL", "last_modified_at": 1756321641996}, "product_analytics_retention_scale": + {"state": "NONE", "last_modified_at": 1756321641996}}}, "id": "16371816-ab2a-41aa-b12a-40ec4d9628e8"}}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: '{"data": {"type": "rum_application_create", "attributes": {"type": "browser", + "name": "Test RUM Application", "product_analytics_replay_sample_rate": 100, + "tags": [], "product_scales": {"rum_event_processing_scale": {"state": "ALL"}, + "product_analytics_retention_scale": {}}}}}' + headers: + Content-Type: + - application/json + method: POST + uri: https://api.us5.datadoghq.com/api/v2/rum/applications + response: + body: + string: '{"data": {"type": "rum_application", "attributes": {"created_at": 1756324976188, + "tags": [], "client_token": "pubb5ed9c24b36d50df1c1c97d3ec2efd5b", "updated_at": + 1756324976188, "name": "Test RUM Application", "product_analytics_replay_sample_rate": + 100, "type": "browser", "application_id": "4a278953-1324-44ea-b3c3-b4c847dc151b", + "is_active": false, "org_id": 1300336245, "product_scales": {"rum_event_processing_scale": + {"state": "ALL", "last_modified_at": 1756324976188}, "product_analytics_retention_scale": + {"state": "NONE", "last_modified_at": 1756324976188}}, "created_by_handle": + "17d29c8a-6285-11f0-be9b-76de006a05ea", "updated_by_handle": "17d29c8a-6285-11f0-be9b-76de006a05ea", + "hash": "pubb5ed9c24b36d50df1c1c97d3ec2efd5b"}, "id": "4a278953-1324-44ea-b3c3-b4c847dc151b"}}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.us5.datadoghq.com/api/v2/rum/applications + response: + body: + string: '{"data": [{"type": "rum_application", "attributes": {"tags": [], "name": + "Test RUM Application", "is_active": false, "product_analytics_replay_sample_rate": + 100, "created_by_handle": "17d29c8a-6285-11f0-be9b-76de006a05ea", "org_id": + 1300336245, "product_scales": {"product_analytics_retention_scale": {"state": + "NONE", "last_modified_at": 1756324976188}, "rum_event_processing_scale": + {"state": "ALL", "last_modified_at": 1756324976188}}, "type": "browser", "updated_at": + 1756324976188, "created_at": 1756324976188, "application_id": "4a278953-1324-44ea-b3c3-b4c847dc151b", + "updated_by_handle": "17d29c8a-6285-11f0-be9b-76de006a05ea"}, "id": "4a278953-1324-44ea-b3c3-b4c847dc151b"}]}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.us5.datadoghq.com/api/v2/rum/applications/4a278953-1324-44ea-b3c3-b4c847dc151b + response: + body: + string: '{"data": {"type": "rum_application", "attributes": {"application_id": + "4a278953-1324-44ea-b3c3-b4c847dc151b", "product_scales": {"product_analytics_retention_scale": + {"state": "NONE", "last_modified_at": 1756324976188}, "rum_event_processing_scale": + {"state": "ALL", "last_modified_at": 1756324976188}}, "updated_by_handle": + "17d29c8a-6285-11f0-be9b-76de006a05ea", "updated_at": 1756324976188, "org_id": + 1300336245, "created_at": 1756324976188, "is_active": false, "client_token": + "pubb5ed9c24b36d50df1c1c97d3ec2efd5b", "type": "browser", "name": "Test RUM + Application", "product_analytics_replay_sample_rate": 100, "created_by_handle": + "17d29c8a-6285-11f0-be9b-76de006a05ea", "hash": "pubb5ed9c24b36d50df1c1c97d3ec2efd5b", + "tags": []}, "id": "4a278953-1324-44ea-b3c3-b4c847dc151b"}}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: '{"data": {"type": "rum_application_update", "attributes": {"type": "browser", + "name": "Test RUM Applicationupdated", "product_analytics_replay_sample_rate": + 100, "tags": [], "product_scales": {"rum_event_processing_scale": {"state": + "ALL"}, "product_analytics_retention_scale": {}}}, "id": "4a278953-1324-44ea-b3c3-b4c847dc151b"}}' + headers: + Content-Type: + - application/json + method: PATCH + uri: https://api.us5.datadoghq.com/api/v2/rum/applications/4a278953-1324-44ea-b3c3-b4c847dc151b + response: + body: + string: '{"data": {"type": "rum_application", "attributes": {"client_token": + "pubb5ed9c24b36d50df1c1c97d3ec2efd5b", "tags": [], "name": "Test RUM Applicationupdated", + "hash": "pubb5ed9c24b36d50df1c1c97d3ec2efd5b", "is_active": false, "product_analytics_replay_sample_rate": + 100, "created_by_handle": "17d29c8a-6285-11f0-be9b-76de006a05ea", "org_id": + 1300336245, "product_scales": {"product_analytics_retention_scale": {"state": + "NONE", "last_modified_at": 1756324976188}, "rum_event_processing_scale": + {"state": "ALL", "last_modified_at": 1756324976188}}, "type": "browser", "updated_at": + 1756324976777, "created_at": 1756324976188, "application_id": "4a278953-1324-44ea-b3c3-b4c847dc151b", + "updated_by_handle": "17d29c8a-6285-11f0-be9b-76de006a05ea"}, "id": "4a278953-1324-44ea-b3c3-b4c847dc151b"}}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/users?page%5Bnumber%5D=0&page%5Bsize%5D=500 + response: + body: + string: '{"data": [{"type": "users", "id": "6b69113d-6f18-11f0-9ad5-1ad15dd71168", + "attributes": {"name": "Ida Adjivon", "handle": "ida.adjivon@datadoghq.com", + "created_at": "2025-08-01T20:45:12.043180+00:00", "modified_at": "2025-08-01T21:35:25.635446+00:00", + "email": "ida.adjivon@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/d3ff11e3ff125d30050f4dfff3fa614c?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "81f6f2c7-923f-11ef-879a-6ee0822e247c", "attributes": {"name": "Justine + Lo", "handle": "justine.lo@datadoghq.com", "created_at": "2024-10-24T19:38:13.281489+00:00", + "modified_at": "2024-10-25T14:18:33.835459+00:00", "email": "justine.lo@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/7d75964971289cf50e6090d76b45e3f6?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "b301b340-8582-11ef-ba31-3219ecc6cb25", "attributes": {"name": "Louis + Cheynel", "handle": "louis.cheynel@datadoghq.com", "created_at": "2024-10-08T14:36:26.725077+00:00", + "modified_at": "2025-02-19T21:12:46.164959+00:00", "email": "louis.cheynel@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/791d1a56daa2bd0f5bb25ed286d3f8bb?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": true, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Disabled", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "30533c3c-8582-11ef-938f-cecf6f9ed4ad", "attributes": {"name": "Michael + Richey", "handle": "michael.richey+ddreu1@datadoghq.com", "created_at": "2024-10-08T14:32:47.477901+00:00", + "modified_at": "2024-10-08T14:32:47.477901+00:00", "email": "michael.richey+ddreu1@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/b5b0452adbe01caf57c1e5f6fb97a631?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "693fe720-9569-11ef-969d-da7ad0900005"}, {"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, + "org": {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "98fe080d-8fda-11ef-aa03-c6ac9d6cb0b0", "attributes": + {"name": "Michael Richey", "handle": "michael.richey@datadoghq.com", "created_at": + "2024-10-21T18:30:50.420260+00:00", "modified_at": "2025-03-03T15:47:53.789029+00:00", + "email": "michael.richey@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/3ae7b2387f1a71bbb857d6f03993bdf3?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "b32e572e-8582-11ef-98fe-f2a776cd34b8", "attributes": {"name": "Ron + Hay", "handle": "ron.hay@datadoghq.com", "created_at": "2024-10-08T14:36:27.017641+00:00", + "modified_at": "2025-06-10T13:33:23.138895+00:00", "email": "ron.hay@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/1c9c2a5daac55fc5ae86178cd5e7b9c2?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "265f9002-9b9e-11ef-9152-56a58ecd5b70", "attributes": + {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com", "created_at": + "2024-11-05T17:48:22.271026+00:00", "modified_at": "2025-01-23T19:52:06.634848+00:00", + "email": "sherzod.karimov@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/993f2cc00ad75833dbc76f2a93bb227d?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "693fe720-9569-11ef-969d-da7ad0900005"}, {"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "b32f283f-8582-11ef-be6e-1e59aae1ca5b", "attributes": + {"name": "Tim Alexander", "handle": "tim.alexander@datadoghq.com", "created_at": + "2024-10-08T14:36:27.022996+00:00", "modified_at": "2024-10-08T15:29:54.659973+00:00", + "email": "tim.alexander@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/6269dae26686287d4bdd307a26e33f34?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}], + "included": [{"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005", + "attributes": {"name": "Datadog Admin Role", "managed": true, "created_at": + "2024-10-08T14:32:47.147289+00:00", "modified_at": "2024-10-08T14:32:47.147932+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e"}, {"type": + "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": "permissions", + "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", "id": + "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": + "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": "permissions", + "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", "id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d"}, + {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19"}, {"type": + "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, {"type": "permissions", + "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": "permissions", "id": + "04668d0a-ec5c-11ea-9483-37d199df4587"}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, + {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc"}, {"type": + "permissions", "id": "04668f62-ec5c-11ea-9483-0fe541ab993f"}, {"type": "permissions", + "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02"}, {"type": "permissions", "id": + "046690de-ec5c-11ea-9483-bbcd905fcdca"}, {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf"}, + {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": + "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", + "id": "8b753262-f925-11ea-82fc-93f07fd96e76"}, {"type": "permissions", "id": + "9311970e-f925-11ea-ab4d-1760e76381c1"}, {"type": "permissions", "id": "998aabac-f925-11ea-b43d-8f1f42f3894e"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "72bc07d8-1472-11eb-a97b-8bff514d7382"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e"}, {"type": + "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": "permissions", + "id": "c8654332-2dce-11eb-9145-d33d26eeb65f"}, {"type": "permissions", "id": + "d23cc894-2dce-11eb-9145-37bf7b2dadc2"}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a"}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", "id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, + {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005"}, {"type": + "permissions", "id": "b39fb79a-90af-11eb-9428-da7ad0900005"}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "993b34d6-b16d-11eb-a891-da7ad0900005"}, + {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, {"type": + "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": + "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "c948b30a-16c7-11ec-88cc-da7ad0900005"}, + {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", + "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": + "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005"}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": + "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005"}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "3ad32264-f311-11ec-a058-da7ad0900005"}, {"type": "permissions", + "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005"}, + {"type": "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", + "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": + "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005"}, + {"type": "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": + "8b254e6a-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005"}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": "81e488c0-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", "id": + "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, + {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, + {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, {"type": + "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": + "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", "id": "4316b75c-093f-11ee-98e9-da7ad0900005"}, + {"type": "permissions", "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": + "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", + "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, {"type": "permissions", "id": + "eadf64b2-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": "eadf675a-2199-11ee-9a0e-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005"}, {"type": "permissions", + "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": + "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", + "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": + "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", + "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}, {"type": "permissions", "id": + "f2cc9374-9841-11ee-a301-da7ad0900005"}, {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005"}, + {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, {"type": + "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": + "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005"}, + {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": + "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", + "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": + "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd09204-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", + "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": + "permissions", "id": "ef950332-13a0-11ef-b582-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75066402-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005"}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", + "id": "06e3004e-5987-11ef-89c3-da7ad0900005"}, {"type": "permissions", "id": + "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", + "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005"}, + {"type": "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": + "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", + "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": + "83fc9760-7c51-11ef-b846-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "80ae7688-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": "71949074-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": + "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", + "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": "permissions", "id": + "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005"}, + {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", + "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", + "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", "id": + "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": "9b00ed28-da87-11ef-9de6-da7ad0900005"}, + {"type": "permissions", "id": "9b010d44-da87-11ef-9de6-da7ad0900005"}, {"type": + "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005"}, {"type": "permissions", + "id": "7ad4419a-e288-11ef-bbbc-da7ad0900005"}, {"type": "permissions", "id": + "4a6c29d6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": "4a6cadb6-e806-11ef-8710-da7ad0900005"}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": + "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", + "id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", "id": + "23f76dc4-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, + {"type": "permissions", "id": "02e65e42-fabc-11ef-a653-da7ad0900005"}, {"type": + "permissions", "id": "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", + "id": "9bb09240-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": + "9bb09a10-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", "id": + "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": "fbf841c6-2618-11f0-8595-da7ad0900005"}, + {"type": "permissions", "id": "2cead6ec-34db-11f0-9eb2-da7ad0900005"}, {"type": + "permissions", "id": "12465c5e-3a5c-11f0-becd-da7ad0900005"}, {"type": "permissions", + "id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005"}, {"type": "permissions", "id": + "d2c0335e-5688-11f0-ad5e-da7ad0900005"}, {"type": "permissions", "id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005"}, + {"type": "permissions", "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005"}, {"type": + "permissions", "id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005"}]}}}, {"type": + "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "attributes": + {"name": "logs_read_index_data", "display_name": "Logs Read Index Data", "description": + "Read log data, possibly scoped to one or more indexes. In order to read log + data, a user must have both this permission and Logs Read Data. This permission + can be granted in a limited capacity per index from the Logs interface or + APIs. If granted via the Roles interface or API the permission has global + scope. Restrictions are limited to the Log Management product.", "created": + "2018-10-31T14:00:23.650159+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", + "attributes": {"name": "logs_modify_indexes", "display_name": "Logs Modify + Indexes", "description": "Read and modify all indexes in your account. This + includes the ability to grant the Logs Read Index Data and Logs Write Exclusion + Filters permission to other roles, for some or all indexes.", "created": "2018-10-31T14:00:23.664332+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "attributes": + {"name": "logs_live_tail", "display_name": "Logs Live Tail", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "created": "2018-10-31T14:00:23.676180+00:00", "group_name": + "Log Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "attributes": + {"name": "logs_write_exclusion_filters", "display_name": "Logs Write Exclusion + Filters", "description": "Add and change exclusion filters for all or some + log indexes. Can be granted in a limited capacity per index to specific roles + via the Logs interface or API. If granted from the Roles interface or API, + the permission has global scope.", "created": "2018-10-31T14:00:23.699543+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "attributes": + {"name": "logs_write_pipelines", "display_name": "Logs Write Pipelines", "description": + "Add and change log pipeline configurations, including the ability to grant + the Logs Write Processors permission to other roles, for some or all pipelines.", + "created": "2018-10-31T14:00:23.710821+00:00", "group_name": "Log Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "505f4538-dd15-11e8-9308-47a4732f715f", "attributes": {"name": "logs_write_processors", + "display_name": "Logs Write Processors", "description": "Add and change some + or all log processor configurations. Can be granted in a limited capacity + per pipeline to specific roles via the Logs interface or API. If granted via + the Roles interface or API the permission has global scope.", "created": "2018-10-31T14:00:24.726927+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e", "attributes": + {"name": "logs_write_archives", "display_name": "Logs Write Archives", "description": + "Add and edit Log Archives.", "created": "2018-10-31T14:00:24.730570+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "attributes": + {"name": "logs_generate_metrics", "display_name": "Logs Generate Metrics", + "description": "Create custom metrics from logs.", "created": "2019-07-25T12:37:55.949477+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "attributes": + {"name": "dashboards_read", "display_name": "Dashboards Read", "description": + "View dashboards.", "created": "2019-09-10T14:41:53.120685+00:00", "group_name": + "Dashboards", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "attributes": {"name": "dashboards_write", + "display_name": "Dashboards Write", "description": "Create and change dashboards.", + "created": "2019-09-10T14:41:53.136336+00:00", "group_name": "Dashboards", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f", "attributes": {"name": "dashboards_public_share", + "display_name": "Shared Dashboards Public Write", "description": "Create, + modify and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "created": "2019-09-10T14:41:53.150548+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "attributes": + {"name": "monitors_read", "display_name": "Monitors Read", "description": + "View monitors.", "created": "2019-09-16T18:49:59.270746+00:00", "group_name": + "Monitors", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "attributes": {"name": "monitors_write", + "display_name": "Monitors Write", "description": "Edit and delete individual + monitors.", "created": "2019-09-16T18:50:07.944781+00:00", "group_name": "Monitors", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "d3159858-d8b2-11e9-a336-e363d6ef331b", "attributes": {"name": "monitors_downtime", + "display_name": "Manage Downtimes", "description": "Set downtimes to suppress + alerts from any monitor in an organization. Mute and unmute monitors. The + ability to write monitors is not required to set downtimes.", "created": "2019-09-16T18:50:16.869407+00:00", + "group_name": "Monitors", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "attributes": + {"name": "logs_read_data", "display_name": "Logs Read Data", "description": + "Read log data. In order to read log data, a user must have both this permission + and Logs Read Index Data. This permission can be restricted with restriction + queries. Restrictions are limited to the Log Management product.", "created": + "2020-04-06T16:29:12.337169+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "attributes": {"name": "logs_read_archives", "display_name": "Logs Read Archives", + "description": "Read Log Archives location and use it for rehydration.", "created": + "2020-04-23T07:45:13.801938+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "attributes": {"name": "security_monitoring_rules_read", "display_name": "Security + Rules Read", "description": "Read Detection Rules.", "created": "2020-06-09T13:55:12.166762+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", + "attributes": {"name": "security_monitoring_rules_write", "display_name": + "Security Rules Write", "description": "Create and edit Detection Rules.", + "created": "2020-06-09T13:55:21.036857+00:00", "group_name": "Cloud Security + Platform", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9", "attributes": {"name": "security_monitoring_signals_read", + "display_name": "Security Signals Read", "description": "View Security Signals.", + "created": "2020-06-09T13:55:29.398066+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", "attributes": {"name": "security_monitoring_signals_write", + "display_name": "Security Signals Write", "description": "Modify Security + Signals.", "created": "2021-08-17T15:11:19.976019+00:00", "group_name": "Cloud + Security Platform", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d", "attributes": + {"name": "user_access_invite", "display_name": "User Access Invite", "description": + "Invite other users to your organization.", "created": "2020-08-25T19:10:01.692112+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", + "attributes": {"name": "user_access_manage", "display_name": "User Access + Manage", "description": "Disable users, manage user roles, manage SAML-to-role + mappings, and configure logs restriction queries.", "created": "2020-08-25T19:10:12.116164+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30", + "attributes": {"name": "user_app_keys", "display_name": "User App Keys", "description": + "View and manage Application Keys owned by the user.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "attributes": {"name": "org_app_keys_read", "display_name": "Org App Keys + Read", "description": "View Application Keys owned by all users in the organization.", + "created": "2020-09-01T14:04:14.317866+00:00", "group_name": "API and Application + Keys", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "04668d0a-ec5c-11ea-9483-37d199df4587", "attributes": {"name": "org_app_keys_write", + "display_name": "Org App Keys Write", "description": "Manage Application Keys + owned by all users in the organization.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "attributes": {"name": "synthetics_private_location_read", "display_name": + "Synthetics Private Locations Read", "description": "View, search, and use + Synthetics private locations.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Synthetic Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", + "attributes": {"name": "synthetics_private_location_write", "display_name": + "Synthetics Private Locations Write", "description": "Create and delete private + locations in addition to having access to the associated installation guidelines.", + "created": "2020-09-01T14:04:14.317866+00:00", "group_name": "Synthetic Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "04668f62-ec5c-11ea-9483-0fe541ab993f", "attributes": {"name": "billing_read", + "display_name": "Billing Read", "description": "View your organization''s + subscription and payment method but not make edits.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "attributes": + {"name": "billing_edit", "display_name": "Billing Edit", "description": "Manage + your organization''s subscription and payment method.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "attributes": {"name": "usage_read", "display_name": "Usage Read", "description": + "View your organization''s usage and usage attribution.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf", "attributes": + {"name": "usage_edit", "display_name": "Usage Edit", "description": "Manage + your organization''s usage attribution set-up.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "attributes": {"name": "metric_tags_write", "display_name": "Metric Tags Write", + "description": "Edit and save tag configurations for custom metrics.", "created": + "2020-09-01T14:04:14.317866+00:00", "group_name": "Metrics", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "attributes": {"name": "logs_write_historical_view", "display_name": "Logs + Write Historical Views", "description": "Rehydrate logs from Archives.", "created": + "2020-09-16T08:42:43.928080+00:00", "group_name": "Log Management", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "attributes": {"name": "audit_logs_read", "display_name": "Audit Trail Read", + "description": "View Audit Trail in your organization.", "created": "2020-09-17T20:37:03.702585+00:00", + "group_name": "Compliance", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9311970e-f925-11ea-ab4d-1760e76381c1", "attributes": + {"name": "api_keys_read", "display_name": "API Keys Read", "description": + "List and retrieve the key values of all API Keys in your organization.", + "created": "2020-09-17T20:37:16.471514+00:00", "group_name": "API and Application + Keys", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "attributes": {"name": "api_keys_write", + "display_name": "API Keys Write", "description": "Create and rename API Keys + for your organization.", "created": "2020-09-17T20:37:27.331389+00:00", "group_name": + "API and Application Keys", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "attributes": + {"name": "synthetics_global_variable_read", "display_name": "Synthetics Global + Variable Read", "description": "View, search, and use Synthetics global variables.", + "created": "2020-09-17T20:37:50.165103+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", "attributes": {"name": "synthetics_global_variable_write", + "display_name": "Synthetics Global Variable Write", "description": "Create, + edit, and delete global variables for Synthetics.", "created": "2020-09-17T20:38:01.966230+00:00", + "group_name": "Synthetic Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "b6858556-f925-11ea-9222-1f47b8677b93", + "attributes": {"name": "synthetics_read", "display_name": "Synthetics Read", + "description": "List and view configured Synthetic tests and test results.", + "created": "2020-09-17T20:38:15.951574+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "attributes": {"name": "synthetics_write", + "display_name": "Synthetics Write", "description": "Create, edit, and delete + Synthetic tests.", "created": "2020-09-17T20:38:27.421632+00:00", "group_name": + "Synthetic Monitoring", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "attributes": + {"name": "synthetics_default_settings_read", "display_name": "Synthetics Default + Settings Read", "description": "View the default settings for Synthetic Monitoring.", + "created": "2020-09-17T20:38:49.527477+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "cf223140-f925-11ea-a3a2-df370532bcf7", "attributes": {"name": "synthetics_default_settings_write", + "display_name": "Synthetics Default Settings Write", "description": "Edit + the default settings for Synthetic Monitoring.", "created": "2020-09-17T20:38:57.244987+00:00", + "group_name": "Synthetic Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", + "attributes": {"name": "logs_write_facets", "display_name": "Logs Write Facets", + "description": "Create or edit Log Facets.", "created": "2020-10-14T12:54:16.607129+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "attributes": + {"name": "service_account_write", "display_name": "Service Account Write", + "description": "Create, disable, and use Service Accounts in your organization.", + "created": "2020-10-22T14:25:34.868208+00:00", "group_name": "Access Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "attributes": {"name": "apm_read", + "display_name": "APM Read", "description": "Read and query APM and Trace Analytics.", + "created": "2020-11-23T20:59:02.902692+00:00", "group_name": "APM", "display_type": + "read", "restricted": true}}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "attributes": {"name": "apm_retention_filter_read", "display_name": "APM Retention + Filters Read", "description": "Read trace retention filters. A user with this + permission can view the retention filters page, list of filters, their statistics, + and creation info.", "created": "2020-11-23T20:59:11.833795+00:00", "group_name": + "APM", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "attributes": {"name": "apm_retention_filter_write", + "display_name": "APM Retention Filters Write", "description": "Create, edit, + and delete trace retention filters. A user with this permission can create + new retention filters, and update or delete to existing retention filters.", + "created": "2020-11-23T20:59:19.531425+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", + "attributes": {"name": "apm_service_ingest_read", "display_name": "APM Service + Ingest Read", "description": "Access service ingestion pages. A user with + this permission can view the service ingestion page, list of root services, + their statistics, and creation info.", "created": "2020-11-23T20:59:25.933546+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "c8654332-2dce-11eb-9145-d33d26eeb65f", "attributes": + {"name": "apm_service_ingest_write", "display_name": "APM Service Ingest Write", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "created": "2020-11-23T20:59:31.352238+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "attributes": + {"name": "apm_apdex_manage_write", "display_name": "APM Apdex Manage Write", + "description": "Set Apdex T value on any service. A user with this permission + can set the T value from the Apdex graph on the service page.", "created": + "2020-11-23T20:59:47.864214+00:00", "group_name": "APM", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c", + "attributes": {"name": "apm_tag_management_write", "display_name": "APM Tag + Management Write", "description": "Edit second primary tag selection. A user + with this permission can modify the second primary tag dropdown in the APM + settings page.", "created": "2020-11-23T21:00:01.066421+00:00", "group_name": + "APM", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "attributes": {"name": "apm_primary_operation_write", + "display_name": "APM Primary Operation Write", "description": "Edit the operation + name value selection. A user with this permission can modify the operation + name list in the APM settings page and the operation name controller on the + service page.", "created": "2020-11-23T21:00:18.680068+00:00", "group_name": + "APM", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", "attributes": {"name": "audit_logs_write", + "display_name": "Audit Trail Write", "description": "Configure Audit Trail + in your organization.", "created": "2020-12-01T19:12:04.940111+00:00", "group_name": + "Compliance", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", "attributes": {"name": "rum_apps_write", + "display_name": "RUM Apps Write", "description": "Create, edit, and delete + RUM applications. Creating a RUM application automatically generates a Client + Token. In order to create Client Tokens directly, a user needs the Client + Tokens Write permission.", "created": "2021-01-11T19:07:15.721075+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "attributes": {"name": "debugger_write", "display_name": "Dynamic Instrumentation + Write", "description": "Edit Dynamic Instrumentation configuration. Create + or modify Dynamic Instrumentation probes that do not capture function state.", + "created": "2021-03-08T15:07:07.319753+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "attributes": {"name": "debugger_read", "display_name": "Dynamic Instrumentation + Read", "description": "View Dynamic Instrumentation configuration.", "created": + "2021-03-08T15:07:07.333513+00:00", "group_name": "APM", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005", + "attributes": {"name": "data_scanner_read", "display_name": "Data Scanner + Read", "description": "View Sensitive Data Scanner configurations and scanning + results.", "created": "2021-03-29T16:56:27.205044+00:00", "group_name": "Compliance", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "attributes": {"name": "data_scanner_write", + "display_name": "Data Scanner Write", "description": "Edit Sensitive Data + Scanner configurations.", "created": "2021-03-29T16:56:27.219481+00:00", "group_name": + "Compliance", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "attributes": {"name": "org_management", + "display_name": "Org Management", "description": "Edit org configurations, + including authentication and certain security preferences such as configuring + SAML, renaming an org, configuring allowed login methods, creating child orgs, + subscribing & unsubscribing from apps in the marketplace, and enabling & disabling + Remote Configuration for the entire organization.", "created": "2021-04-23T17:51:22.555499+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "99397470-b16d-11eb-a891-da7ad0900005", + "attributes": {"name": "security_monitoring_filters_read", "display_name": + "Security Filters Read", "description": "Read Security Filters.", "created": + "2021-05-10T08:56:24.514661+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "993b34d6-b16d-11eb-a891-da7ad0900005", "attributes": {"name": "security_monitoring_filters_write", + "display_name": "Security Filters Write", "description": "Create, edit, and + delete Security Filters.", "created": "2021-05-10T08:56:24.527411+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", + "attributes": {"name": "incident_read", "display_name": "Incidents Read", + "description": "View incidents in Datadog.", "created": "2021-06-22T15:11:07.986072+00:00", + "group_name": "Case and Incident Management", "display_type": "read", "restricted": + true}}, {"type": "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005", + "attributes": {"name": "incident_write", "display_name": "Incidents Write", + "description": "Create, view, and manage incidents in Datadog.", "created": + "2021-06-22T15:11:08.003239+00:00", "group_name": "Case and Incident Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "122f7508-d36c-11eb-b2bf-da7ad0900005", "attributes": {"name": "incident_settings_read", + "display_name": "Incident Settings Read", "description": "View Incident Settings.", + "created": "2021-06-22T15:11:07.995787+00:00", "group_name": "Case and Incident + Management", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "attributes": {"name": "incident_settings_write", + "display_name": "Incident Settings Write", "description": "Configure Incident + Settings.", "created": "2021-06-22T15:11:07.999194+00:00", "group_name": "Case + and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005", "attributes": + {"name": "appsec_event_rule_read", "display_name": "Application Security Management + Event Rules Read", "description": "View Application Security Management Event + Rules.", "created": "2021-07-19T13:26:35.252432+00:00", "group_name": "Cloud + Security Platform", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005", "attributes": + {"name": "appsec_event_rule_write", "display_name": "Application Security + Management Event Rules Write", "description": "Edit Application Security Management + Event Rules.", "created": "2021-07-19T13:26:35.260787+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "attributes": + {"name": "rum_apps_read", "display_name": "RUM Apps Read", "description": + "View RUM Applications data.", "created": "2021-08-02T09:46:22.567371+00:00", + "group_name": "Real User Monitoring", "display_type": "read", "restricted": + true}}, {"type": "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", + "attributes": {"name": "rum_session_replay_read", "display_name": "RUM Session + Replay Read", "description": "View Session Replays.", "created": "2021-08-02T09:46:22.572685+00:00", + "group_name": "Real User Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "c94811de-16c7-11ec-88cc-da7ad0900005", + "attributes": {"name": "security_monitoring_notification_profiles_read", "display_name": + "Security Notification Rules Read", "description": "Read Notification Rules.", + "created": "2021-09-16T08:26:27.288070+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "attributes": {"name": "security_monitoring_notification_profiles_write", + "display_name": "Security Notification Rules Write", "description": "Create, + edit, and delete Notification Rules.", "created": "2021-09-16T08:26:27.292835+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005", + "attributes": {"name": "apm_generate_metrics", "display_name": "APM Generate + Metrics", "description": "Create custom metrics from spans.", "created": "2021-09-16T15:31:28.639581+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005", "attributes": + {"name": "security_monitoring_cws_agent_rules_read", "display_name": "Cloud + Workload Security Agent Rules Read", "description": "Read Cloud Workload Security + Agent Rules.", "created": "2021-11-17T10:41:45.755009+00:00", "group_name": + "Cloud Security Platform", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "f5e1489a-4792-11ec-944b-da7ad0900005", "attributes": + {"name": "security_monitoring_cws_agent_rules_write", "display_name": "Cloud + Workload Security Agent Rules Write", "description": "Create, edit, and delete + Cloud Workload Security Agent Rules.", "created": "2021-11-17T10:41:45.761956+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", + "attributes": {"name": "apm_pipelines_write", "display_name": "APM Pipelines + Write", "description": "Add and change APM pipeline configurations.", "created": + "2021-12-06T14:51:25.389398+00:00", "group_name": "APM", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005", + "attributes": {"name": "apm_pipelines_read", "display_name": "APM Pipelines + Read", "description": "View APM pipeline configurations.", "created": "2021-12-07T11:21:23.741014+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "attributes": + {"name": "observability_pipelines_read", "display_name": "Observability Pipelines + Read", "description": "View pipelines in your organization.", "created": "2021-12-09T00:11:41.567875+00:00", + "group_name": "Observability Pipelines", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "attributes": {"name": "observability_pipelines_write", "display_name": "Observability + Pipelines Write", "description": "Edit pipelines in your organization.", "created": + "2021-12-09T00:11:41.572883+00:00", "group_name": "Observability Pipelines", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "e31e0056-8502-11ec-b266-da7ad0900005", "attributes": {"name": "workflows_read", + "display_name": "Workflows Read", "description": "View workflows.", "created": + "2022-02-03T15:06:38.846399+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "e31f0230-8502-11ec-b266-da7ad0900005", "attributes": {"name": "workflows_write", + "display_name": "Workflows Write", "description": "Create, edit, and delete + workflows.", "created": "2022-02-03T15:06:38.853003+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "workflows_run", "display_name": "Workflows Run", "description": + "Run workflows.", "created": "2022-02-03T15:06:38.849099+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "connections_read", "display_name": "Connections Read", + "description": "List and view available connections. Connections contain secrets + that cannot be revealed.", "created": "2022-02-03T15:06:38.837721+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "connections_write", "display_name": "Connections Write", + "description": "Create and delete connections.", "created": "2022-02-03T15:06:38.843395+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", + "attributes": {"name": "notebooks_read", "display_name": "Notebooks Read", + "description": "View notebooks.", "created": "2022-03-02T18:51:33.435297+00:00", + "group_name": "Notebooks", "display_type": "read", "restricted": true}}, {"type": + "permissions", "id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "attributes": + {"name": "notebooks_write", "display_name": "Notebooks Write", "description": + "Create and change notebooks.", "created": "2022-03-02T18:51:33.439640+00:00", + "group_name": "Notebooks", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005", "attributes": + {"name": "logs_delete_data", "display_name": "Logs Delete Data", "description": + "Delete data from your Logs, including entire indexes.", "created": "2022-02-25T18:51:34.198635+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005", "attributes": + {"name": "rum_generate_metrics", "display_name": "RUM Generate Metrics", "description": + "Create custom metrics from RUM events.", "created": "2022-04-11T16:26:30.469616+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "attributes": {"name": "aws_configurations_manage", "display_name": "AWS Configurations + Manage", "description": "Add or remove but not edit AWS integration configurations.", + "created": "2022-04-26T20:21:48.019179+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "7fbe2266-c59e-11ec-90fb-da7ad0900005", "attributes": {"name": "azure_configurations_manage", + "display_name": "Azure Configurations Manage", "description": "Add or remove + but not edit Azure integration configurations.", "created": "2022-04-26T20:21:48.031171+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "attributes": + {"name": "gcp_configurations_manage", "display_name": "GCP Configurations + Manage", "description": "Add or remove but not edit GCP integration configurations.", + "created": "2022-04-26T20:21:48.027662+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "attributes": {"name": "manage_integrations", + "display_name": "Integrations Manage", "description": "Install, uninstall, + and configure integrations.", "created": "2022-04-26T20:21:48.034453+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "attributes": + {"name": "usage_notifications_read", "display_name": "Usage Notifications + Read", "description": "Receive notifications and view currently configured + notification settings.", "created": "2022-05-17T13:56:29.090665+00:00", "group_name": + "Billing and Usage", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "attributes": + {"name": "usage_notifications_write", "display_name": "Usage Notifications + Write", "description": "Receive notifications and configure notification settings.", + "created": "2022-05-17T13:56:29.094457+00:00", "group_name": "Billing and + Usage", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "attributes": {"name": "generate_dashboard_reports", + "display_name": "Dashboards Report Write", "description": "Schedule PDF reports + from a dashboard.", "created": "2022-06-06T18:15:47.465864+00:00", "group_name": + "Dashboards", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "f33f74be-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_read", + "display_name": "SLOs Read", "description": "View SLOs and status corrections.", + "created": "2022-06-08T16:20:45.638848+00:00", "group_name": "Service Level + Objectives", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "f340161c-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_write", + "display_name": "SLOs Write", "description": "Create, edit, and delete SLOs.", + "created": "2022-06-08T16:20:45.643085+00:00", "group_name": "Service Level + Objectives", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_corrections", + "display_name": "SLOs Status Corrections", "description": "Apply, edit, and + delete SLO status corrections. A user with this permission can make status + corrections, even if they do not have permission to edit those SLOs.", "created": + "2022-06-08T16:20:45.632820+00:00", "group_name": "Service Level Objectives", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "3ad32264-f311-11ec-a058-da7ad0900005", "attributes": {"name": "monitor_config_policy_write", + "display_name": "Monitor Configuration Policy Write", "description": "Create, + update, and delete monitor configuration policies.", "created": "2022-06-23T16:26:26.854058+00:00", + "group_name": "Monitors", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f42ef088-173a-11ed-8654-da7ad0900005", "attributes": + {"name": "apm_service_catalog_write", "display_name": "Service Catalog Write", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "created": "2022-08-08T16:55:49.060954+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "attributes": + {"name": "apm_service_catalog_read", "display_name": "Service Catalog Read", + "description": "View service catalog and service definitions.", "created": + "2022-08-08T16:55:49.055930+00:00", "group_name": "APM", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", + "attributes": {"name": "logs_write_forwarding_rules", "display_name": "Logs + Write Forwarding Rules", "description": "Add and edit forwarding destinations + and rules for logs.", "created": "2022-08-08T21:30:48.328740+00:00", "group_name": + "Log Management", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005", "attributes": + {"name": "connections_resolve", "display_name": "Connections Resolve", "description": + "Resolve connections.", "created": "2022-08-25T15:26:23.943459+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_protect_read", "display_name": "Application + Security Management Protect Read", "description": "View blocked attackers.", + "created": "2022-10-27T09:25:59.057166+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "attributes": {"name": "appsec_protect_write", + "display_name": "Application Security Management Protect Write", "description": + "Manage blocked attackers.", "created": "2022-10-27T09:25:59.060959+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_activation_read", "display_name": "Application + Security Management 1-click Enablement Read", "description": "View whether + Application Security Management has been enabled or disabled on services via + 1-click enablement with Remote Configuration.", "created": "2022-10-27T09:25:59.047444+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_activation_write", "display_name": "Application + Security Management 1-click Enablement Write", "description": "Enable or disable + Application Security Management on services via 1-click enablement.", "created": + "2022-10-27T09:25:59.053394+00:00", "group_name": "Cloud Security Platform", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "c0490360-5a12-11ed-adbe-da7ad0900005", "attributes": {"name": "apps_run", + "display_name": "Apps View", "description": "View and run Apps in App Builder.", + "created": "2022-11-01T18:26:50.026179+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005", "attributes": + {"name": "apps_write", "display_name": "Apps Write", "description": "Create, + edit, and delete Apps in App Builder.", "created": "2022-11-01T18:26:50.036655+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "926612da-7a4c-11ed-b809-da7ad0900005", + "attributes": {"name": "cases_read", "display_name": "Cases Read", "description": + "View Cases.", "created": "2022-12-12T18:41:21.060748+00:00", "group_name": + "Case and Incident Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "attributes": + {"name": "cases_write", "display_name": "Cases Write", "description": "Create + and update cases.", "created": "2022-12-12T18:41:21.067150+00:00", "group_name": + "Case and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "attributes": + {"name": "apm_remote_configuration_write", "display_name": "APM Remote Configuration + Write", "description": "Edit APM Remote Configuration.", "created": "2022-12-12T20:21:20.723147+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "attributes": + {"name": "apm_remote_configuration_read", "display_name": "APM Remote Configuration + Read", "description": "View APM Remote Configuration.", "created": "2022-12-12T20:21:20.716560+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "attributes": + {"name": "ci_visibility_read", "display_name": "CI Visibility Read", "description": + "View CI Visibility.", "created": "2022-12-13T16:02:28.814628+00:00", "group_name": + "Software Delivery", "display_type": "read", "restricted": true}}, {"type": + "permissions", "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "attributes": + {"name": "ci_visibility_write", "display_name": "CI Visibility Tests Write", + "description": "Edit flaky tests and delete Test Services.", "created": "2022-12-13T16:02:28.821529+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "ci_provider_settings_write", "display_name": "CI Provider + Settings Write", "description": "Edit CI Provider settings. Manage GitHub + accounts and repositories for enabling CI Visibility and job logs collection.", + "created": "2022-12-13T16:02:28.806929+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "attributes": {"name": "ci_visibility_settings_write", + "display_name": "CI Visibility Settings Write", "description": "Configure + CI Visibility settings. Set a repository default branch, enable GitHub comments, + and delete test services.", "created": "2022-12-13T16:02:28.818035+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "intelligent_test_runner_activation_write", "display_name": + "Intelligent Test Runner Activation Write", "description": "Deprecated. Enable + or disable Intelligent Test Runner.", "created": "2022-12-13T16:02:28.826271+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "intelligent_test_runner_settings_write", "display_name": + "Intelligent Test Runner Settings Write", "description": "Deprecated. Edit + Intelligent Test Runner settings, such as modifying ITR excluded branch list.", + "created": "2022-12-13T16:02:28.830112+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "55f64460-7d61-11ed-9c36-da7ad0900005", "attributes": {"name": "continuous_profiler_read", + "display_name": "Continuous Profiler Read", "description": "View data in Continuous + Profiler.", "created": "2022-12-16T16:47:32.584514+00:00", "group_name": "APM", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005", "attributes": {"name": "teams_manage", + "display_name": "Teams Manage", "description": "Manage Teams. Create, delete, + rename, and edit metadata of all Teams. To control Team membership across + all Teams, use the User Access Manage permission.", "created": "2023-01-18T20:45:46.126002+00:00", + "group_name": "Teams", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005", "attributes": + {"name": "security_monitoring_findings_read", "display_name": "Security Monitoring + Findings Read", "description": "View a list of findings that include both + misconfigurations and identity risks.", "created": "2023-02-24T14:30:40.720618+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", + "attributes": {"name": "incident_notification_settings_read", "display_name": + "Incident Notification Settings Read", "description": "View Incidents Notification + settings.", "created": "2023-02-24T17:27:09.998449+00:00", "group_name": "Case + and Incident Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "attributes": + {"name": "incident_notification_settings_write", "display_name": "Incident + Notification Settings Write", "description": "Configure Incidents Notification + settings.", "created": "2023-02-24T17:27:09.998449+00:00", "group_name": "Case + and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "attributes": + {"name": "ci_ingestion_control_write", "display_name": "CI Visibility Ingestion + Control Write", "description": "Edit CI Ingestion Control exclusion filters.", + "created": "2023-03-24T10:25:52.891502+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005", "attributes": {"name": "error_tracking_write", + "display_name": "Error Tracking Issue Write", "description": "Edit Error Tracking + issues.", "created": "2023-03-27T16:55:39.540192+00:00", "group_name": "Error + Tracking", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "81e488c0-db35-11ed-a170-da7ad0900005", "attributes": {"name": "watchdog_alerts_write", + "display_name": "Watchdog Alerts Write", "description": "Manage Watchdog Alerts.", + "created": "2023-04-15T02:30:37.731056+00:00", "group_name": "Watchdog", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005", + "attributes": {"name": "saved_views_write", "display_name": "Saved Views Write", + "description": "Modify Saved Views across all Datadog products.", "created": + "2023-04-15T02:30:37.731056+00:00", "group_name": "Cross-Product Features", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "94c8a4da-de87-11ed-9e92-da7ad0900005", "attributes": {"name": "client_tokens_read", + "display_name": "Client Tokens Read", "description": "Read Client Tokens. + Unlike API keys, client tokens may be exposed client-side in JavaScript code + for web browsers and other clients to send data to Datadog.", "created": "2023-04-19T07:55:41.646942+00:00", + "group_name": "API and Application Keys", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "94c927e8-de87-11ed-9e92-da7ad0900005", + "attributes": {"name": "client_tokens_write", "display_name": "Client Tokens + Write", "description": "Create and edit Client Tokens. Unlike API keys, client + tokens may be exposed client-side in JavaScript code for web browsers and + other clients to send data to Datadog.", "created": "2023-04-19T07:55:41.646942+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "619b2642-f41b-11ed-b4e1-da7ad0900005", + "attributes": {"name": "event_correlation_config_read", "display_name": "Event + Correlation Config Read", "description": "Read Event Correlation Configuration + data such as Correlation Rules and Settings.", "created": "2023-05-16T18:56:35.719150+00:00", + "group_name": "Events", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "attributes": + {"name": "event_correlation_config_write", "display_name": "Event Correlation + Config Write", "description": "Manage Event Correlation Configuration such + as Correlation Rules and Settings.", "created": "2023-05-16T18:56:35.719150+00:00", + "group_name": "Events", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005", "attributes": + {"name": "event_config_write", "display_name": "Event Config Write", "description": + "Manage general event configuration such as API Emails.", "created": "2023-05-20T00:00:57.864864+00:00", + "group_name": "Events", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "attributes": + {"name": "security_monitoring_findings_write", "display_name": "Security Monitoring + Findings Write", "description": "Mute CSPM Findings.", "created": "2023-05-23T21:45:42.705754+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "attributes": {"name": "cloud_cost_management_read", "display_name": "Cloud + Cost Management Read", "description": "View Cloud Cost pages and the cloud + cost data source in dashboards and notebooks. For more details, see the Cloud + Cost Management docs.", "created": "2023-05-31T19:20:42.284425+00:00", "group_name": + "Cloud Cost Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "attributes": + {"name": "cloud_cost_management_write", "display_name": "Cloud Cost Management + Write", "description": "Configure cloud cost accounts and global customizations. + For more details, see the Cloud Cost Management docs.", "created": "2023-05-31T19:20:42.284425+00:00", + "group_name": "Cloud Cost Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", + "attributes": {"name": "host_tags_write", "display_name": "Host Tags Write", + "description": "Add and change tags on hosts.", "created": "2023-05-31T05:12:01.547070+00:00", + "group_name": "Metrics", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005", "attributes": + {"name": "ci_visibility_pipelines_write", "display_name": "CI Visibility Pipelines + Write", "description": "Create CI Visibility pipeline spans using the API.", + "created": "2023-06-01T10:15:50.891463+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "attributes": {"name": "quality_gate_rules_read", + "display_name": "Quality Gate Rules Read", "description": "View Quality Gate + Rules.", "created": "2023-06-19T16:27:34.826612+00:00", "group_name": "Software + Delivery", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "attributes": {"name": "quality_gate_rules_write", + "display_name": "Quality Gate Rules Write", "description": "Edit Quality Gate + Rules.", "created": "2023-06-19T16:27:34.826612+00:00", "group_name": "Software + Delivery", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "attributes": {"name": "metrics_metadata_write", + "display_name": "Metrics Metadata Write", "description": "Edit metadata on + metrics.", "created": "2023-06-23T16:21:25.009293+00:00", "group_name": "Metrics", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "4316b75c-093f-11ee-98e9-da7ad0900005", "attributes": {"name": "rum_delete_data", + "display_name": "RUM Delete Data", "description": "Delete data from RUM.", + "created": "2023-06-12T16:36:20.819036+00:00", "group_name": "Real User Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "4316826e-093f-11ee-98e9-da7ad0900005", "attributes": {"name": "appsec_vm_write", + "display_name": "Vulnerability Management Write", "description": "Update status + or assignee of vulnerabilities.", "created": "2023-06-12T16:36:20.819036+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "attributes": {"name": "reference_tables_write", "display_name": "Reference + Tables Write", "description": "Create or modify Reference Tables.", "created": + "2023-06-12T16:36:20.819036+00:00", "group_name": "Reference Tables", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "attributes": {"name": "rum_playlist_write", "display_name": "RUM Playlist + Write", "description": "Create, update, and delete RUM playlists. Add and + remove sessions from RUM playlists.", "created": "2023-07-07T16:26:50.792866+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", + "attributes": {"name": "observability_pipelines_delete", "display_name": "Observability + Pipelines Delete", "description": "Delete pipelines from your organization.", + "created": "2023-07-13T16:25:44.923503+00:00", "group_name": "Observability + Pipelines", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "attributes": {"name": "observability_pipelines_deploy", + "display_name": "Observability Pipelines Deploy", "description": "Deploy pipelines + in your organization.", "created": "2023-07-13T16:25:44.923503+00:00", "group_name": + "Observability Pipelines", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "attributes": + {"name": "processes_generate_metrics", "display_name": "Processes Generate + Metrics", "description": "Create custom metrics from processes.", "created": + "2023-07-12T16:27:03.457484+00:00", "group_name": "Processes", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "attributes": {"name": "api_keys_delete", "display_name": "API Keys Delete", + "description": "Delete API Keys for your organization.", "created": "2023-07-12T16:27:03.457484+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "attributes": {"name": "agent_flare_collection", "display_name": "Agent Flare + Collection", "description": "Collect an Agent flare with Fleet Automation.", + "created": "2023-07-13T16:25:44.923503+00:00", "group_name": "Fleet Automation", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005", "attributes": {"name": "org_connections_write", + "display_name": "Org Connections Write", "description": "Control which organizations + can query your organization''s data.", "created": "2023-07-20T16:25:38.185785+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005", + "attributes": {"name": "org_connections_read", "display_name": "Org Connections + Read", "description": "View which organizations can query data from your organization. + Query data from other organizations.", "created": "2023-07-20T16:25:38.185785+00:00", + "group_name": "Access Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "attributes": + {"name": "facets_write", "display_name": "Facets Write", "description": "Manage + facets for products other than Log Management, such as APM Traces. To modify + Log Facets, use Logs Write Facets.", "created": "2023-07-27T16:26:26.546986+00:00", + "group_name": "Cross-Product Features", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", + "attributes": {"name": "security_monitoring_suppressions_read", "display_name": + "Security Suppressions Read", "description": "Read Rule Suppressions.", "created": + "2023-08-17T16:25:26.209216+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "attributes": {"name": "security_monitoring_suppressions_write", + "display_name": "Security Suppressions Write", "description": "Write Rule + Suppressions.", "created": "2023-08-17T16:25:26.209216+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "attributes": + {"name": "static_analysis_settings_write", "display_name": "Static Analysis + Settings Write", "description": "Edit Static Analysis settings.", "created": + "2023-08-18T16:25:56.688500+00:00", "group_name": "Software Delivery", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005", + "attributes": {"name": "cd_visibility_read", "display_name": "CD Visibility + Read", "description": "View CD Visibility.", "created": "2023-09-08T23:01:01.285130+00:00", + "group_name": "Software Delivery", "display_type": "read", "restricted": true}}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "attributes": + {"name": "ndm_netflow_port_mappings_write", "display_name": "NDM Netflow Port + Mappings Write", "description": "Write NDM Netflow port mappings.", "created": + "2023-10-12T16:26:03.661255+00:00", "group_name": "Network Device Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "2de35000-69e5-11ee-996b-da7ad0900005", "attributes": {"name": "appsec_vm_read", + "display_name": "Vulnerability Management Read", "description": "View infrastructure, + application code and library vulnerabilities. This does not restrict access + to the vulnerability data source through the API or inventory SQL.", "created": + "2023-10-13T16:25:53.335225+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": true}}, {"type": "permissions", "id": + "54f38ef0-6f65-11ee-a094-da7ad0900005", "attributes": {"name": "debugger_capture_variables", + "display_name": "Dynamic Instrumentation Capture Variables", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "created": "2023-10-20T16:25:50.268064+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "f2cc9374-9841-11ee-a301-da7ad0900005", + "attributes": {"name": "error_tracking_settings_write", "display_name": "Error + Tracking Settings Write", "description": "Disable Error Tracking, edit inclusion + filters, and edit rate limit.", "created": "2023-12-11T16:25:50.880331+00:00", + "group_name": "Error Tracking", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "attributes": + {"name": "error_tracking_exclusion_filters_write", "display_name": "Error + Tracking Exclusion Filters Write", "description": "Add or change Error Tracking + exclusion filters.", "created": "2023-12-11T16:25:50.880331+00:00", "group_name": + "Error Tracking", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "attributes": + {"name": "integrations_read", "display_name": "Integrations Read", "description": + "View integrations and their configurations.", "created": "2024-01-23T16:26:45.209142+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "attributes": + {"name": "apm_api_catalog_write", "display_name": "API Catalog Write", "description": + "Add, modify, and delete API catalog definitions.", "created": "2024-02-02T16:25:57.659403+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "attributes": + {"name": "apm_api_catalog_read", "display_name": "API Catalog Read", "description": + "View API catalog and API definitions.", "created": "2024-02-02T16:25:57.659403+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "11280c24-cce8-11ee-af00-da7ad0900005", "attributes": + {"name": "containers_generate_image_metrics", "display_name": "Containers + Write Image Trend Metrics", "description": "Create or edit trend metrics from + container images.", "created": "2024-02-16T16:25:58.736360+00:00", "group_name": + "Containers", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "attributes": {"name": "rum_extend_retention", + "display_name": "RUM Session Replay Extend Retention", "description": "Extend + the retention of Session Replays.", "created": "2024-03-14T16:26:30.797793+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005", + "attributes": {"name": "on_prem_runner_read", "display_name": "Private Action + Runner Read", "description": "View and search Private Action Runners for Workflow + Automation and App Builder.", "created": "2024-03-18T16:26:33.583707+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", + "attributes": {"name": "on_prem_runner_use", "display_name": "Private Action + Runner Contribute", "description": "Attach a Private Action Runner to a connection.", + "created": "2024-03-18T16:26:33.583707+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "attributes": + {"name": "on_prem_runner_write", "display_name": "Private Action Runner Write", + "description": "Create and edit Private Action Runners for Workflow Automation + and App Builder.", "created": "2024-03-18T16:26:33.583707+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", + "attributes": {"name": "dora_settings_write", "display_name": "DORA Settings + Write", "description": "Edit the settings for DORA.", "created": "2024-04-08T16:25:58.692075+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", + "attributes": {"name": "agent_upgrade_write", "display_name": "Agent Upgrade", + "description": "Upgrade Datadog Agents with Fleet Automation.", "created": + "2024-04-22T16:25:53.208974+00:00", "group_name": "Fleet Automation", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", + "attributes": {"name": "continuous_profiler_pgo_read", "display_name": "Read + Continuous Profiler Profile-Guided Optimization (PGO) Data", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "created": "2024-04-23T16:30:30.492439+00:00", "group_name": "APM", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005", + "attributes": {"name": "oci_configurations_manage", "display_name": "OCI Configurations + Manage", "description": "Add or remove but not edit Oracle Cloud integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "attributes": {"name": "aws_configuration_read", + "display_name": "AWS Configuration Read", "description": "View but not add, + remove, or edit AWS integration configurations.", "created": "2024-04-23T16:30:30.492439+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "ccd09204-018e-11ef-afb6-da7ad0900005", "attributes": + {"name": "azure_configuration_read", "display_name": "Azure Configuration + Read", "description": "View but not add, remove, or edit Azure integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "attributes": {"name": "gcp_configuration_read", + "display_name": "GCP Configuration Read", "description": "View but not add, + remove, or edit GCP integration configurations.", "created": "2024-04-23T16:30:30.492439+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005", "attributes": + {"name": "oci_configuration_read", "display_name": "OCI Configuration Read", + "description": "View but not add, remove, or edit Oracle Cloud integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "attributes": {"name": "aws_configuration_edit", + "display_name": "AWS Configuration Edit", "description": "Edit but not add + or remove AWS integration configurations.", "created": "2024-05-02T16:26:19.141095+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "attributes": + {"name": "azure_configuration_edit", "display_name": "Azure Configuration + Edit", "description": "Edit but not add or remove Azure integration configurations.", + "created": "2024-05-02T16:26:19.141095+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005", "attributes": {"name": "gcp_configuration_edit", + "display_name": "GCP Configuration Edit", "description": "Edit but not add + or remove GCP integration configurations.", "created": "2024-05-02T16:26:19.141095+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "attributes": + {"name": "oci_configuration_edit", "display_name": "OCI Configuration Edit", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "created": "2024-05-02T16:26:19.141095+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "attributes": {"name": "llm_observability_read", + "display_name": "LLM Observability Read", "description": "View LLM Observability.", + "created": "2024-05-03T16:26:22.500447+00:00", "group_name": "LLM Observability", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ef950332-13a0-11ef-b582-da7ad0900005", "attributes": {"name": "flex_logs_config_write", + "display_name": "Flex Logs Configuration Write", "description": "Manage your + organization''s flex logs configuration.", "created": "2024-05-16T16:25:40.697830+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "21c5475c-228f-11ef-a00d-da7ad0900005", "attributes": + {"name": "reference_tables_read", "display_name": "Reference Tables Read", + "description": "View Reference Tables.", "created": "2024-06-04T16:26:01.400743+00:00", + "group_name": "Reference Tables", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "75066402-3890-11ef-bbb1-da7ad0900005", "attributes": + {"name": "fleet_policies_write", "display_name": "Agent Configuration Management", + "description": "Create and deploy Agent configurations.", "created": "2024-07-02T16:30:56.156267+00:00", + "group_name": "Fleet Automation", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005", "attributes": + {"name": "orchestration_custom_resource_definitions_write", "display_name": + "Custom Resource Definition Write", "description": "Enable, disable and update + custom resource indexing.", "created": "2024-07-02T16:30:56.156267+00:00", + "group_name": "Orchestration", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005", "attributes": + {"name": "code_analysis_read", "display_name": "Code Analysis Read", "description": + "View Code Analysis.", "created": "2024-08-06T16:26:25.858118+00:00", "group_name": + "Software Delivery", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005", "attributes": + {"name": "orchestration_workload_scaling_write", "display_name": "Workload + Scaling Write", "description": "Enable, disable, and configure workload autoscaling. + Apply workload scaling recommendations.", "created": "2024-08-06T16:26:25.858118+00:00", + "group_name": "Orchestration", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "06e3004e-5987-11ef-89c3-da7ad0900005", "attributes": + {"name": "llm_observability_write", "display_name": "LLM Observability Write", + "description": "Create, Update, and Delete LLM Observability resources including + User Defined Evaluations, OOTB Evaluations, and User Defined Topics.", "created": + "2024-08-13T15:16:34.275999+00:00", "group_name": "LLM Observability", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "attributes": {"name": "observability_pipelines_capture_read", "display_name": + "Observability Pipelines Live Capture Read", "description": "View captured + events of pipelines in your organization.", "created": "2024-08-27T16:50:39.669348+00:00", + "group_name": "Observability Pipelines", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005", + "attributes": {"name": "observability_pipelines_capture_write", "display_name": + "Observability Pipelines Live Capture Write", "description": "Capture live + events of pipelines in your organization.", "created": "2024-08-27T16:50:39.669348+00:00", + "group_name": "Observability Pipelines", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", + "attributes": {"name": "apps_datastore_read", "display_name": "Actions Datastore + Read", "description": "Allows read access to the data within the Actions Datastore.", + "created": "2024-08-22T16:25:15.890147+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "attributes": + {"name": "apps_datastore_write", "display_name": "Actions Datastore Write", + "description": "Allows modification of data within the Actions Datastore, + including adding, editing, and deleting records.", "created": "2024-08-22T16:25:15.890147+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", + "attributes": {"name": "apps_datastore_manage", "display_name": "Actions Datastore + Manage", "description": "Allows management of the Actions Datastore, including + creating, updating, and deleting the datastore itself.", "created": "2024-08-22T16:25:15.890147+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "attributes": {"name": "security_pipelines_read", "display_name": "Security + Pipelines Read", "description": "View Security Pipelines.", "created": "2024-08-30T16:25:36.779590+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "attributes": {"name": "security_pipelines_write", "display_name": "Security + Pipelines Write", "description": "Create, edit, and delete Security Pipelines.", + "created": "2024-08-30T16:25:36.779590+00:00", "group_name": "Cloud Security + Platform", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "8e9b2142-7511-11ef-b225-da7ad0900005", "attributes": {"name": "connection_groups_write", + "display_name": "Connection Groups Write", "description": "Create, delete + and update connection groups.", "created": "2024-09-17T16:26:13.918826+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "attributes": {"name": "quality_gates_evaluations_read", "display_name": "Quality + Gates Evaluations", "description": "Allow quality gates evaluations.", "created": + "2024-09-23T18:00:21.053557+00:00", "group_name": "Software Delivery", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "attributes": {"name": "connection_groups_read", "display_name": "Connection + Groups Read", "description": "Read and use connection groups.", "created": + "2024-09-26T14:35:22.139553+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "83fc9760-7c51-11ef-b846-da7ad0900005", "attributes": {"name": "security_monitoring_cws_agent_rules_actions", + "display_name": "Cloud Workload Security Agent Actions", "description": "Managing + actions on Cloud Workload Security Agent Rules.", "created": "2024-09-26T21:51:42.032795+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005", + "attributes": {"name": "rum_retention_filters_read", "display_name": "RUM + Retention Filters Read", "description": "View RUM Retention filters data.", + "created": "2024-10-02T23:15:17.740884+00:00", "group_name": "Real User Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "300f81cc-8114-11ef-84c0-da7ad0900005", "attributes": {"name": "rum_retention_filters_write", + "display_name": "RUM Retention Filters Write", "description": "Write RUM Retention + filters.", "created": "2024-10-02T23:15:17.740884+00:00", "group_name": "Real + User Monitoring", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005", "attributes": + {"name": "ddsql_editor_read", "display_name": "DDSQL Editor Read", "description": + "View and use DDSQL Editor.", "created": "2024-10-14T13:30:22.950954+00:00", + "group_name": "DDSQL Editor", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "attributes": + {"name": "disaster_recovery_status_read", "display_name": "Datadog Disaster + Recovery Read", "description": "View the disaster recovery status.", "created": + "2024-11-01T21:30:23.309658+00:00", "group_name": "Disaster Recovery", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "attributes": {"name": "disaster_recovery_status_write", "display_name": "Datadog + Disaster Recovery Write", "description": "Update the disaster recovery status.", + "created": "2024-11-01T21:30:23.309658+00:00", "group_name": "Disaster Recovery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "71949074-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "rum_settings_write", + "display_name": "RUM Settings Write", "description": "Write RUM Settings.", + "created": "2024-11-07T13:30:24.249160+00:00", "group_name": "Real User Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "71957e76-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "test_optimization_read", + "display_name": "Test Optimization Read", "description": "View Test Optimization.", + "created": "2024-11-07T13:30:24.249160+00:00", "group_name": "Software Delivery", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "71958024-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "test_optimization_write", + "display_name": "Test Optimization Write", "description": "Manage flaky tests + for Test Optimization.", "created": "2024-11-07T13:30:24.249160+00:00", "group_name": + "Software Delivery", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "attributes": + {"name": "test_optimization_settings_write", "display_name": "Test Optimization + Settings Write", "description": "Create, delete and update Test Optimization + settings.", "created": "2024-11-19T19:06:07.652237+00:00", "group_name": "Software + Delivery", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "attributes": {"name": "security_comments_write", + "display_name": "Security Comments Write", "description": "Write comments + into vulnerabilities.", "created": "2024-11-22T18:40:23.844837+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005", "attributes": + {"name": "security_comments_read", "display_name": "Security Comments Read", + "description": "Read comments of vulnerabilities.", "created": "2024-11-22T18:40:23.844837+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "attributes": {"name": "dashboards_invite_share", "display_name": "Shared + Dashboards Invite-only Write", "description": "Create, modify and delete shared + dashboards with share type ''Invite-only''. These dashboards can only be accessed + by user-specified email addresses.", "created": "2024-12-10T19:11:49.480076+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "attributes": + {"name": "dashboards_embed_share", "display_name": "Shared Dashboards Embed + Write", "description": "Create, modify and delete shared dashboards with share + type ''Embed''. These dashboards can be embedded on user-specified domains.", + "created": "2024-12-10T19:11:49.480076+00:00", "group_name": "Dashboards", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "attributes": {"name": "embeddable_graphs_share", + "display_name": "Shared Graphs Write", "description": "Generate public links + to share embeddable graphs externally.", "created": "2024-12-10T19:11:49.480076+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "attributes": + {"name": "logs_read_workspaces", "display_name": "Read Logs Workspaces", "description": + "View Logs Workspaces.", "created": "2024-12-11T19:21:44.137884+00:00", "group_name": + "Log Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "attributes": + {"name": "logs_write_workspaces", "display_name": "Write Logs Workspaces", + "description": "Create, update, and delete Logs Workspaces.", "created": "2024-12-11T19:21:44.137884+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "attributes": + {"name": "audience_management_read", "display_name": "Profiles Read", "description": + "View Audience Management data.", "created": "2025-01-07T18:36:31.392090+00:00", + "group_name": "Product Analytics", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "attributes": + {"name": "audience_management_write", "display_name": "Profiles Write", "description": + "Modify Audience Management data.", "created": "2025-01-07T18:36:31.392090+00:00", + "group_name": "Product Analytics", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005", + "attributes": {"name": "logs_read_config", "display_name": "Logs Configuration + Read", "description": "Read logs configuration.", "created": "2025-01-14T18:56:50.868001+00:00", + "group_name": "Log Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9b00426a-da87-11ef-9de6-da7ad0900005", "attributes": + {"name": "on_call_read", "display_name": "On-Call Read", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "created": + "2025-01-24T19:15:42.768282+00:00", "group_name": "On-Call", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "9b00ed28-da87-11ef-9de6-da7ad0900005", + "attributes": {"name": "on_call_write", "display_name": "On-Call Write", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "created": "2025-01-24T19:15:42.768282+00:00", "group_name": "On-Call", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "attributes": {"name": "on_call_page", "display_name": "On-Call Page", "description": + "Page On-Call teams and users.", "created": "2025-01-24T19:15:42.768282+00:00", + "group_name": "On-Call", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005", "attributes": + {"name": "error_tracking_read", "display_name": "Error Tracking Read", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "created": "2025-01-30T18:51:27.197297+00:00", "group_name": "Error Tracking", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "attributes": {"name": "on_call_respond", + "display_name": "On-Call Responder", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "created": "2025-02-03T23:42:07.592356+00:00", "group_name": "On-Call", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "attributes": {"name": "process_tags_read", "display_name": "Process Tags + Read", "description": "View Process Tag Rules.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Processes", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "attributes": + {"name": "process_tags_write", "display_name": "Process Tags Write", "description": + "Create, edit and delete Process Tag Rules.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Processes", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "attributes": + {"name": "network_connections_read", "display_name": "Network Connections + Read", "description": "Read Cloud Network Connections.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Cloud Network Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "attributes": {"name": "serverless_aws_instrumentation_read", "display_name": + "Serverless AWS Instrumentation Read", "description": "View remote instrumentation + configuration for serverless workloads.", "created": "2025-02-11T20:36:29.786935+00:00", + "group_name": "Serverless", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "attributes": + {"name": "serverless_aws_instrumentation_write", "display_name": "Serverless + AWS Instrumentation Write", "description": "Add, update, and remove remote + instrumentation configuration for serverless workloads.", "created": "2025-02-11T20:36:29.786935+00:00", + "group_name": "Serverless", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "attributes": + {"name": "coterm_write", "display_name": "CoTerm Write", "description": "Write + terminal recordings.", "created": "2025-02-28T19:06:40.038336+00:00", "group_name": + "CoTerm", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "attributes": {"name": "coterm_read", + "display_name": "CoTerm Read", "description": "Read terminal recordings.", + "created": "2025-02-28T19:06:40.038336+00:00", "group_name": "CoTerm", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "attributes": {"name": "data_streams_monitoring_capture_messages", "display_name": + "Data Streams Monitoring Capture Messages", "description": "Capture messages + from Kafka topics in the Data Streams Monitoring product.", "created": "2025-03-06T18:51:28.120564+00:00", + "group_name": "Data Streams Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "db45b75e-0360-11f0-8ac3-da7ad0900005", + "attributes": {"name": "cloudcraft_read", "display_name": "Cloudcraft Read", + "description": "View infrastructure diagrams in the Cloudcraft product.", + "created": "2025-03-17T18:51:37.899118+00:00", "group_name": "Infrastructure", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "9bb09240-0fee-11f0-958c-da7ad0900005", "attributes": {"name": "ndm_device_profiles_view", + "display_name": "NDM Device Profiles View", "description": "View NDM device + profiles.", "created": "2025-04-02T18:16:33.714415+00:00", "group_name": "Network + Device Monitoring", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "9bb09a10-0fee-11f0-958c-da7ad0900005", "attributes": + {"name": "ndm_device_profiles_edit", "display_name": "NDM Device Profiles + Edit", "description": "Edit NDM device profiles.", "created": "2025-04-02T18:16:33.714415+00:00", + "group_name": "Network Device Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "ndm_devices_read", "display_name": "NDM Read", "description": + "Read NDM data directly. Note: even without this permission, NDM data can + be retrieved via general infrastructure query APIs.", "created": "2025-04-24T21:30:24.005670+00:00", + "group_name": "Network Device Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "ndm_device_tags_write", "display_name": "NDM Device + Tags Write", "description": "Write NDM device tags.", "created": "2025-04-24T21:30:24.005670+00:00", + "group_name": "Network Device Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "orchestration_workload_scaling_read", "display_name": + "Workload Scaling Read", "description": "View workload autoscaling objects + and recommendations.", "created": "2025-04-24T21:30:24.005670+00:00", "group_name": + "Orchestration", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "attributes": {"name": "bits_investigations_read", + "display_name": "Bits Investigations Read", "description": "Read Bits investigations.", + "created": "2025-04-29T18:51:50.984055+00:00", "group_name": "Bits AI", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "attributes": {"name": "sheets_read", "display_name": "Sheets Read", "description": + "View Sheets.", "created": "2025-04-30T23:15:19.683852+00:00", "group_name": + "Sheets", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "fbf841c6-2618-11f0-8595-da7ad0900005", "attributes": {"name": "sheets_write", + "display_name": "Sheets Write", "description": "Create and change Sheets.", + "created": "2025-04-30T23:15:19.683852+00:00", "group_name": "Sheets", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", + "attributes": {"name": "orchestration_autoscaling_manage", "display_name": + "Autoscaling Manage", "description": "Manage autoscaling cluster level configuration.", + "created": "2025-05-19T18:00:40.454044+00:00", "group_name": "Orchestration", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "12465c5e-3a5c-11f0-becd-da7ad0900005", "attributes": {"name": "code_coverage_read", + "display_name": "Code Coverage read", "description": "View Code Coverage data.", + "created": "2025-05-26T18:05:56.647000+00:00", "group_name": "Software Delivery", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "attributes": {"name": "cases_shared_settings_write", + "display_name": "Case Management Shared Settings Write", "description": "Configure + shared settings for Case Management.", "created": "2025-06-17T18:22:00.814348+00:00", + "group_name": "Case and Incident Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", + "attributes": {"name": "actions_interface_run", "display_name": "Actions Interface + Run", "description": "Execute actions in the Bits AI Action Interface.", "created": + "2025-07-01T14:36:49.982499+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", "attributes": {"name": "ai_guard_evaluate", + "display_name": "AI Guard Evaluate", "description": "Evaluate AI Guard rules.", + "created": "2025-07-09T18:30:33.053855+00:00", "group_name": "Application + Security", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "attributes": {"name": "generate_ccm_report_schedules", + "display_name": "Cloud Cost Report Schedules Write", "description": "View + all report schedules and manage only the ones they''ve created.", "created": + "2025-07-10T18:40:35.388063+00:00", "group_name": "Cloud Cost Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "attributes": {"name": "manage_ccm_report_schedules", + "display_name": "Cloud Cost Report Schedules Manage", "description": "View, + create, and fully manage all report schedules across the organization.", "created": + "2025-07-10T18:40:35.388063+00:00", "group_name": "Cloud Cost Management", + "display_type": "write", "restricted": false}}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005", + "attributes": {"name": "Datadog Read Only Role", "managed": true, "created_at": + "2024-10-08T14:32:47.265744+00:00", "modified_at": "2024-10-08T14:32:47.266206+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": + "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", + "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": + "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", + "id": "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": + "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": + "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f33f74be-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": + "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", + "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": + "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", + "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", "id": + "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": + "permissions", "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", + "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", "id": + "3c002814-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", + "id": "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": + "35e4e288-df3b-11ef-886f-da7ad0900005"}, {"type": "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005"}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": + "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", + "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", "id": + "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", + "id": "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": + "12465c5e-3a5c-11f0-becd-da7ad0900005"}]}}}, {"type": "roles", "id": "693fe720-9569-11ef-969d-da7ad0900005", + "attributes": {"name": "Copy of Datadog Admin Role", "managed": false, "created_at": + "2024-10-28T20:15:44.156681+00:00", "modified_at": "2024-10-28T20:15:44.167199+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e"}, {"type": + "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": "permissions", + "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", "id": + "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": + "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": "permissions", + "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", "id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d"}, + {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19"}, {"type": + "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, {"type": "permissions", + "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": "permissions", "id": + "04668d0a-ec5c-11ea-9483-37d199df4587"}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, + {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc"}, {"type": + "permissions", "id": "04668f62-ec5c-11ea-9483-0fe541ab993f"}, {"type": "permissions", + "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02"}, {"type": "permissions", "id": + "046690de-ec5c-11ea-9483-bbcd905fcdca"}, {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf"}, + {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": + "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", + "id": "8b753262-f925-11ea-82fc-93f07fd96e76"}, {"type": "permissions", "id": + "9311970e-f925-11ea-ab4d-1760e76381c1"}, {"type": "permissions", "id": "998aabac-f925-11ea-b43d-8f1f42f3894e"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "72bc07d8-1472-11eb-a97b-8bff514d7382"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e"}, {"type": + "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": "permissions", + "id": "c8654332-2dce-11eb-9145-d33d26eeb65f"}, {"type": "permissions", "id": + "d23cc894-2dce-11eb-9145-37bf7b2dadc2"}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a"}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", "id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, + {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005"}, {"type": + "permissions", "id": "b39fb79a-90af-11eb-9428-da7ad0900005"}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "993b34d6-b16d-11eb-a891-da7ad0900005"}, + {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, {"type": + "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": + "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "c948b30a-16c7-11ec-88cc-da7ad0900005"}, + {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", + "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": + "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005"}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": + "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005"}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "3ad32264-f311-11ec-a058-da7ad0900005"}, {"type": "permissions", + "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005"}, + {"type": "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", + "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": + "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005"}, + {"type": "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": + "8b254e6a-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005"}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": "81e488c0-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", "id": + "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, + {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, + {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, {"type": + "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": + "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", "id": "4316b75c-093f-11ee-98e9-da7ad0900005"}, + {"type": "permissions", "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": + "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", + "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, {"type": "permissions", "id": + "eadf64b2-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": "eadf675a-2199-11ee-9a0e-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005"}, {"type": "permissions", + "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": + "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", + "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": + "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", + "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}, {"type": "permissions", "id": + "f2cc9374-9841-11ee-a301-da7ad0900005"}, {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005"}, + {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, {"type": + "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": + "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005"}, + {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": + "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", + "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": + "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd09204-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", + "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": + "permissions", "id": "ef950332-13a0-11ef-b582-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75066402-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005"}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", + "id": "06e3004e-5987-11ef-89c3-da7ad0900005"}, {"type": "permissions", "id": + "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", + "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005"}, + {"type": "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": + "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", + "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": + "83fc9760-7c51-11ef-b846-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "80ae7688-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": "71949074-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": + "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", + "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": "permissions", "id": + "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005"}, + {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", + "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", + "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", "id": + "35e4e288-df3b-11ef-886f-da7ad0900005"}]}}}, {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005", + "attributes": {"name": "Datadog Standard Role", "managed": true, "created_at": + "2024-10-08T14:32:47.215056+00:00", "modified_at": "2024-10-08T14:32:47.215828+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": + "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", + "id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, + {"type": "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": + "permissions", "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", + "id": "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": + "5de1e178-8536-11ea-968a-2fd9395bff90"}, {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, + {"type": "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": + "permissions", "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", + "id": "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": + "93654d1c-e706-11ea-9a85-d320ff02824d"}, {"type": "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, + {"type": "permissions", "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": + "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, {"type": "permissions", + "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": "permissions", "id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", "id": "9311970e-f925-11ea-ab4d-1760e76381c1"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": + "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", + "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, + {"type": "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "f07e4234-e894-11eb-ab79-da7ad0900005"}, {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": + "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": + "c948b30a-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, + {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": + "permissions", "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "cf873174-574f-11ec-9869-da7ad0900005"}, {"type": "permissions", "id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, + {"type": "permissions", "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": + "permissions", "id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", + "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": "permissions", "id": + "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": + "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", + "id": "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": + "permissions", "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, + {"type": "permissions", "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": + "permissions", "id": "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", + "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": "permissions", "id": + "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": + "81e488c0-db35-11ed-a170-da7ad0900005"}, {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": + "permissions", "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": + "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, + {"type": "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": + "permissions", "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", + "id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, + {"type": "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": + "permissions", "id": "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", + "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", "id": + "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", + "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": + "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, + {"type": "permissions", "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": + "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", + "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": "permissions", "id": + "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, + {"type": "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": + "permissions", "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": + "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, + {"type": "permissions", "id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": + "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09204-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, {"type": + "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75072806-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, + {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": + "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", + "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, + {"type": "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": + "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": "permissions", + "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", "id": + "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": + "permissions", "id": "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", + "id": "3c002814-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": + "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, + {"type": "permissions", "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", + "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": + "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, + {"type": "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": + "permissions", "id": "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", + "id": "9b00ed28-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": + "9b010d44-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005"}, + {"type": "permissions", "id": "7ad4419a-e288-11ef-bbbc-da7ad0900005"}, {"type": + "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", + "id": "4a6cadb6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": + "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, + {"type": "permissions", "id": "23f76dc4-f607-11ef-99cf-da7ad0900005"}, {"type": + "permissions", "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", + "id": "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", "id": + "9bb09240-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", "id": + "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": "fbf841c6-2618-11f0-8595-da7ad0900005"}, + {"type": "permissions", "id": "12465c5e-3a5c-11f0-becd-da7ad0900005"}, {"type": + "permissions", "id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005"}, {"type": "permissions", + "id": "d2c0335e-5688-11f0-ad5e-da7ad0900005"}, {"type": "permissions", "id": + "cc7517b0-5cf2-11f0-85d4-da7ad0900005"}, {"type": "permissions", "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005"}]}}}], + "meta": {"page": {"total_count": 8, "total_filtered_count": 8, "max_page_size": + 1000}}}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/roles?page%5Bnumber%5D=0&page%5Bsize%5D=100 + response: + body: + string: '{"data": [{"id": "693fe720-9569-11ef-969d-da7ad0900005", "type": "roles", + "attributes": {"created_at": "2024-10-28T20:15:44.156681Z", "created_by_handle": + "michael.richey@datadoghq.com", "modified_at": "2024-10-28T20:15:44.167199Z", + "modified_by_handle": "michael.richey@datadoghq.com", "name": "Copy of Datadog + Admin Role", "team_count": 0, "user_count": 2}, "relationships": {"permissions": + {"data": [{"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": "permissions"}, + {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": + "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", + "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions"}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": "permissions"}, + {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "type": "permissions"}, {"id": + "046690de-ec5c-11ea-9483-bbcd905fcdca", "type": "permissions"}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions"}, {"id": + "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions"}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions"}, {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": + "permissions"}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": + "c8654332-2dce-11eb-9145-d33d26eeb65f", "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", + "type": "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, + {"id": "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": + "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": "permissions"}, + {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": "permissions"}, {"id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "type": "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", + "type": "permissions"}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": + "permissions"}, {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, + {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions"}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions"}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, + {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": + "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions"}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": + "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions"}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": + "permissions"}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, + {"id": "f42ef088-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", + "type": "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": + "permissions"}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, + {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions"}, {"id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", + "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", "type": + "permissions"}, {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, + {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": "permissions"}, {"id": + "f40ff7be-966b-11ec-8253-da7ad0900005", "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions"}, + {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", + "type": "permissions"}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions"}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "type": "permissions"}, + {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": + "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", + "type": "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": "permissions"}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152", "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": + "permissions"}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, + {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005", "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions"}, {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": + "permissions"}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, + {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions"}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": + "permissions"}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, + {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": + "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", + "type": "permissions"}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions"}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, + {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions"}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions"}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, + {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", "type": "permissions"}, {"id": + "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": + "permissions"}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions"}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "ef44613e-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": + "permissions"}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", "type": "permissions"}, {"id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions"}, {"id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions"}, + {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": "permissions"}, {"id": + "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions"}, {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": + "permissions"}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, + {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": + "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": + "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, + {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", + "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": "permissions"}, + {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, {"id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions"}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005", "type": "permissions"}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", + "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, + {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": + "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": "permissions"}, + {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": + "c04a7614-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "type": "permissions"}, + {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", "type": "permissions"}, {"id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions"}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", + "type": "permissions"}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "type": + "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": + "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", + "type": "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": + "permissions"}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": "permissions"}, + {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, {"id": + "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions"}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, + {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": + "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions"}, {"id": "83fc9760-7c51-11ef-b846-da7ad0900005", "type": + "permissions"}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, + {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions"}, {"id": + "76e47222-8a30-11ef-8675-da7ad0900005", "type": "permissions"}, {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": + "permissions"}, {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions"}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", "type": "permissions"}, {"id": + "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", + "type": "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": + "permissions"}, {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": "permissions"}, {"id": + "7d962a3c-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", + "type": "permissions"}, {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": + "permissions"}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": + "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", + "type": "permissions"}, {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": + "permissions"}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "7d9641ac-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": + "permissions"}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": + "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions"}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions"}]}}}, {"id": "3020f50c-8582-11ef-ad61-da7ad0900005", "type": + "roles", "attributes": {"created_at": "2024-10-08T14:32:47.147289Z", "managed": + true, "modified_at": "2024-10-08T14:32:47.147932Z", "name": "Datadog Admin + Role", "team_count": 0, "user_count": 7}, "relationships": {"permissions": + {"data": [{"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": "permissions"}, + {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": + "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", + "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions"}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": "permissions"}, + {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "type": "permissions"}, {"id": + "046690de-ec5c-11ea-9483-bbcd905fcdca", "type": "permissions"}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions"}, {"id": + "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions"}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions"}, {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": + "permissions"}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": + "c8654332-2dce-11eb-9145-d33d26eeb65f", "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", + "type": "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, + {"id": "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": + "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": "permissions"}, + {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": "permissions"}, {"id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "type": "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", + "type": "permissions"}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": + "permissions"}, {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, + {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions"}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions"}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, + {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": + "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions"}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": + "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions"}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": + "permissions"}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, + {"id": "f42ef088-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", + "type": "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": + "permissions"}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, + {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions"}, {"id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", + "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", "type": + "permissions"}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, {"id": + "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": "permissions"}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions"}, {"id": + "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": + "permissions"}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": "permissions"}, + {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "type": "permissions"}, {"id": + "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", + "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions"}, + {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": "permissions"}, {"id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": "permissions"}, + {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, {"id": + "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", "type": + "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, {"id": + "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", + "type": "permissions"}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", "type": + "permissions"}, {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions"}, + {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, {"id": + "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", "type": + "permissions"}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, + {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": + "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", + "type": "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions"}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, + {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "type": + "permissions"}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, + {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": + "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", "type": "permissions"}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", + "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": "permissions"}, + {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions"}, {"id": + "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": + "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions"}, {"id": + "80ae7688-9898-11ef-8b23-da7ad0900005", "type": "permissions"}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", + "type": "permissions"}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "75066402-3890-11ef-bbb1-da7ad0900005", "type": "permissions"}, {"id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", + "type": "permissions"}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions"}, {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, + {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, {"id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions"}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions"}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions"}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions"}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, + {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions"}, {"id": + "cf873174-574f-11ec-9869-da7ad0900005", "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", + "type": "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": + "permissions"}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", "type": + "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": "permissions"}, + {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions"}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": + "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions"}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": "permissions"}, {"id": + "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions"}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "type": "permissions"}, {"id": + "48d8ce74-0065-11ee-9c16-da7ad0900005", "type": "permissions"}, {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", + "type": "permissions"}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": + "permissions"}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "type": "permissions"}, + {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, {"id": + "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", + "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": + "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions"}, + {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": "permissions"}, {"id": + "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", + "type": "permissions"}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, + {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, {"id": + "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": + "permissions"}, {"id": "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions"}, + {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": + "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": + "permissions"}, {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, + {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", + "type": "permissions"}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "ccd09f06-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": + "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions"}, {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": "permissions"}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": + "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", + "type": "permissions"}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", "type": + "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, + {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, {"id": + "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, + {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, {"id": + "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", + "type": "permissions"}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "7d9641ac-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": + "permissions"}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, {"id": + "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions"}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions"}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, + {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, {"id": + "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": "permissions"}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions"}, {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions"}, + {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, {"id": + "02e65e42-fabc-11ef-a653-da7ad0900005", "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions"}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions"}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions"}, + {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": + "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions"}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", "type": + "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions"}, + {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", "type": "permissions"}, {"id": + "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions"}]}}}, {"id": + "3032ffb8-8582-11ef-8bad-da7ad0900005", "type": "roles", "attributes": {"created_at": + "2024-10-08T14:32:47.265744Z", "managed": true, "modified_at": "2024-10-08T14:32:47.266206Z", + "name": "Datadog Read Only Role", "team_count": 0, "user_count": 2}, "relationships": + {"permissions": {"data": [{"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": "permissions"}, + {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions"}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", + "type": "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": "permissions"}, + {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, {"id": + "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": "permissions"}, + {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": "permissions"}, {"id": + "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", + "type": "permissions"}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": + "permissions"}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, + {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": "permissions"}, {"id": + "5de1e178-8536-11ea-968a-2fd9395bff90", "type": "permissions"}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": + "permissions"}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": + "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": + "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": "permissions"}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", + "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, + {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, + {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": "permissions"}, {"id": + "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": "permissions"}, {"id": + "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", + "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, + {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, {"id": + "54f98c32-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "type": "permissions"}]}}}, {"id": "302b4f34-8582-11ef-b6a4-da7ad0900005", + "type": "roles", "attributes": {"created_at": "2024-10-08T14:32:47.215056Z", + "managed": true, "modified_at": "2024-10-08T14:32:47.215828Z", "name": "Datadog + Standard Role", "team_count": 0, "user_count": 3}, "relationships": {"permissions": + {"data": [{"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, + {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": + "65eea998-f6a1-11ed-9953-da7ad0900005", "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions"}, {"id": + "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", + "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, + {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, {"id": + "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": "permissions"}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", + "type": "permissions"}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": + "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": "permissions"}, + {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, {"id": + "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", + "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": "permissions"}, {"id": + "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions"}, + {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions"}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions"}, {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, + {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": + "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", + "type": "permissions"}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions"}, {"id": + "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": "permissions"}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", + "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions"}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152", "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": + "permissions"}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, + {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005", "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "04668bde-ec5c-11ea-9483-fb6cb6586c6a", "type": "permissions"}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", + "type": "permissions"}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": + "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", "type": "permissions"}, + {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, {"id": + "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": + "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, + {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": + "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "type": "permissions"}, + {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": "permissions"}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions"}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "11280c24-cce8-11ee-af00-da7ad0900005", "type": "permissions"}, {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions"}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "type": + "permissions"}, {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions"}, + {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", "type": "permissions"}, {"id": + "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", + "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": + "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions"}, + {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": + "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", + "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": "permissions"}, + {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", "type": + "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": "permissions"}, + {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, {"id": + "e31cca10-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions"}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, + {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions"}, {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": + "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": + "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", + "type": "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": + "permissions"}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, + {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions"}, {"id": + "e31e6b54-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": + "permissions"}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, + {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": "permissions"}, {"id": + "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": + "permissions"}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": + "d039cfec-b44f-11ed-8db8-da7ad0900005", "type": "permissions"}, {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", + "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": + "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": "permissions"}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": + "permissions"}, {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, + {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": + "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, + {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions"}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", + "type": "permissions"}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions"}, {"id": + "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, {"id": + "9bb09240-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", + "type": "permissions"}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, + {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions"}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions"}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", + "type": "permissions"}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": + "permissions"}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, + {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": + "54f98c32-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "type": "permissions"}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", "type": + "permissions"}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions"}]}}}], + "meta": {"page": {"total_count": 4, "total_filtered_count": 4}}}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: DELETE + uri: https://api.us5.datadoghq.com/api/v2/rum/applications/4a278953-1324-44ea-b3c3-b4c847dc151b + response: + body: + string: '' + headers: {} + status: + code: 204 + message: No Content +version: 1 diff --git a/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_update_sync_per_file.frozen b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_update_sync_per_file.frozen new file mode 100644 index 000000000..bc7423847 --- /dev/null +++ b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_update_sync_per_file.frozen @@ -0,0 +1 @@ +2025-08-27T16:03:05.930475-04:00 \ No newline at end of file diff --git a/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_update_sync_per_file.yaml b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_update_sync_per_file.yaml new file mode 100644 index 000000000..8be5505d5 --- /dev/null +++ b/tests/integration/resources/cassettes/test_rum_applications/TestRUMApplicationsResources.test_resource_update_sync_per_file.yaml @@ -0,0 +1,7356 @@ +interactions: +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/hamr + response: + body: + string: '{"data": {"id": "30187db5-8582-11ef-969b-8248c7cda362", "type": "hamr_org_connections", + "attributes": {"HamrStatus": 1, "IsPrimary": true, "ModifiedAt": "2024-10-08 + 15:06:20.300120", "ModifiedBy": "charlie.zhang", "TargetOrgDatacenter": "us5.prod.dog", + "TargetOrgName": "DDR Internal Testing US5", "TargetOrgUuid": "b9e754c7-857e-11ef-afbd-c64ba5fcf2d1"}}}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/rum/applications + response: + body: + string: '{"data": [{"type": "rum_application", "attributes": {"remote_config_id": + "0256b730-312e-419a-904f-2ab6d9836eba", "updated_by_handle": "Datadog", "tags": + [], "org_id": 1000315894, "created_at": 1756321641996, "product_analytics_replay_sample_rate": + 100, "updated_at": 1756321932553, "application_id": "16371816-ab2a-41aa-b12a-40ec4d9628e8", + "name": "Test RUM Application", "created_by_handle": "michael.richey@datadoghq.com", + "type": "browser", "product_scales": {"product_analytics_retention_scale": + {"last_modified_at": 1756321641996, "state": "NONE"}, "rum_event_processing_scale": + {"last_modified_at": 1756321641996, "state": "ALL"}}, "is_active": true}, + "id": "16371816-ab2a-41aa-b12a-40ec4d9628e8"}]}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/rum/applications/16371816-ab2a-41aa-b12a-40ec4d9628e8 + response: + body: + string: '{"data": {"type": "rum_application", "attributes": {"product_scales": + {"rum_event_processing_scale": {"last_modified_at": 1756321641996, "state": + "ALL"}, "product_analytics_retention_scale": {"last_modified_at": 1756321641996, + "state": "NONE"}}, "application_id": "16371816-ab2a-41aa-b12a-40ec4d9628e8", + "hash": "pubcfef5fa71c23a0c961cc1f1f69db5a32", "type": "browser", "product_analytics_replay_sample_rate": + 100, "org_id": 1000315894, "remote_config_id": "0256b730-312e-419a-904f-2ab6d9836eba", + "client_token": "pubcfef5fa71c23a0c961cc1f1f69db5a32", "created_by_handle": + "michael.richey@datadoghq.com", "is_active": true, "updated_by_handle": "Datadog", + "updated_at": 1756321932553, "tags": [], "created_at": 1756321641996, "name": + "Test RUM Application"}, "id": "16371816-ab2a-41aa-b12a-40ec4d9628e8"}}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.us5.datadoghq.com/api/v2/hamr + response: + body: + string: '{"data": {"id": "b9e754c7-857e-11ef-afbd-c64ba5fcf2d1", "type": "hamr_org_connections", + "attributes": {"HamrStatus": 1, "IsPrimary": false, "ModifiedAt": "2024-10-08 + 15:06:20.300120", "ModifiedBy": "charlie.zhang", "TargetOrgDatacenter": "eu1.prod.dog", + "TargetOrgName": "DDR Internal Testing eu1", "TargetOrgUuid": "30187db5-8582-11ef-969b-8248c7cda362"}}}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: '{"data": {"type": "rum_application_create", "attributes": {"product_scales": + {"rum_event_processing_scale": {"state": "ALL"}, "product_analytics_retention_scale": + {}}, "type": "browser", "product_analytics_replay_sample_rate": 100, "tags": + [], "name": "Test RUM Application"}}}' + headers: + Content-Type: + - application/json + method: POST + uri: https://api.us5.datadoghq.com/api/v2/rum/applications + response: + body: + string: '{"data": {"type": "rum_application", "attributes": {"created_by_handle": + "17d29c8a-6285-11f0-be9b-76de006a05ea", "updated_by_handle": "17d29c8a-6285-11f0-be9b-76de006a05ea", + "application_id": "76b6b549-c24e-43bf-bf9b-d6007377c6b5", "product_analytics_replay_sample_rate": + 100, "created_at": 1756324987084, "is_active": false, "product_scales": {"rum_event_processing_scale": + {"state": "ALL", "last_modified_at": 1756324987084}, "product_analytics_retention_scale": + {"state": "NONE", "last_modified_at": 1756324987084}}, "updated_at": 1756324987084, + "org_id": 1300336245, "hash": "pubd55d1e50f71fc8213ec98f0fa36cb814", "tags": + [], "type": "browser", "client_token": "pubd55d1e50f71fc8213ec98f0fa36cb814", + "name": "Test RUM Application"}, "id": "76b6b549-c24e-43bf-bf9b-d6007377c6b5"}}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.us5.datadoghq.com/api/v2/hamr + response: + body: + string: '{"data": {"id": "b9e754c7-857e-11ef-afbd-c64ba5fcf2d1", "type": "hamr_org_connections", + "attributes": {"HamrStatus": 1, "IsPrimary": false, "ModifiedAt": "2024-10-08 + 15:06:20.300120", "ModifiedBy": "charlie.zhang", "TargetOrgDatacenter": "eu1.prod.dog", + "TargetOrgName": "DDR Internal Testing eu1", "TargetOrgUuid": "30187db5-8582-11ef-969b-8248c7cda362"}}}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/hamr + response: + body: + string: '{"data": {"id": "30187db5-8582-11ef-969b-8248c7cda362", "type": "hamr_org_connections", + "attributes": {"HamrStatus": 1, "IsPrimary": true, "ModifiedAt": "2024-10-08 + 15:06:20.300120", "ModifiedBy": "charlie.zhang", "TargetOrgDatacenter": "us5.prod.dog", + "TargetOrgName": "DDR Internal Testing US5", "TargetOrgUuid": "b9e754c7-857e-11ef-afbd-c64ba5fcf2d1"}}}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.us5.datadoghq.com/api/v2/hamr + response: + body: + string: '{"data": {"id": "b9e754c7-857e-11ef-afbd-c64ba5fcf2d1", "type": "hamr_org_connections", + "attributes": {"HamrStatus": 1, "IsPrimary": false, "ModifiedAt": "2024-10-08 + 15:06:20.300120", "ModifiedBy": "charlie.zhang", "TargetOrgDatacenter": "eu1.prod.dog", + "TargetOrgName": "DDR Internal Testing eu1", "TargetOrgUuid": "30187db5-8582-11ef-969b-8248c7cda362"}}}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.us5.datadoghq.com/api/v2/rum/applications + response: + body: + string: '{"data": [{"type": "rum_application", "attributes": {"updated_at": + 1756324987084, "application_id": "76b6b549-c24e-43bf-bf9b-d6007377c6b5", "tags": + [], "type": "browser", "name": "Test RUM Application", "org_id": 1300336245, + "product_analytics_replay_sample_rate": 100, "created_at": 1756324987084, + "created_by_handle": "17d29c8a-6285-11f0-be9b-76de006a05ea", "is_active": + false, "product_scales": {"product_analytics_retention_scale": {"state": "NONE", + "last_modified_at": 1756324987084}, "rum_event_processing_scale": {"state": + "ALL", "last_modified_at": 1756324987084}}, "updated_by_handle": "17d29c8a-6285-11f0-be9b-76de006a05ea"}, + "id": "76b6b549-c24e-43bf-bf9b-d6007377c6b5"}]}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.us5.datadoghq.com/api/v2/rum/applications/76b6b549-c24e-43bf-bf9b-d6007377c6b5 + response: + body: + string: '{"data": {"type": "rum_application", "attributes": {"hash": "pubd55d1e50f71fc8213ec98f0fa36cb814", + "client_token": "pubd55d1e50f71fc8213ec98f0fa36cb814", "tags": [], "created_by_handle": + "17d29c8a-6285-11f0-be9b-76de006a05ea", "org_id": 1300336245, "is_active": + false, "name": "Test RUM Application", "application_id": "76b6b549-c24e-43bf-bf9b-d6007377c6b5", + "type": "browser", "product_analytics_replay_sample_rate": 100, "updated_by_handle": + "17d29c8a-6285-11f0-be9b-76de006a05ea", "created_at": 1756324987084, "product_scales": + {"product_analytics_retention_scale": {"state": "NONE", "last_modified_at": + 1756324987084}, "rum_event_processing_scale": {"state": "ALL", "last_modified_at": + 1756324987084}}, "updated_at": 1756324987084}, "id": "76b6b549-c24e-43bf-bf9b-d6007377c6b5"}}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: '{"data": {"type": "rum_application_update", "attributes": {"product_scales": + {"rum_event_processing_scale": {"state": "ALL"}, "product_analytics_retention_scale": + {}}, "type": "browser", "product_analytics_replay_sample_rate": 100, "tags": + [], "name": "Test RUM Applicationupdated"}, "id": "76b6b549-c24e-43bf-bf9b-d6007377c6b5"}}' + headers: + Content-Type: + - application/json + method: PATCH + uri: https://api.us5.datadoghq.com/api/v2/rum/applications/76b6b549-c24e-43bf-bf9b-d6007377c6b5 + response: + body: + string: '{"data": {"type": "rum_application", "id": "76b6b549-c24e-43bf-bf9b-d6007377c6b5", + "attributes": {"updated_at": 1756324988120, "org_id": 1300336245, "created_at": + 1756324987084, "name": "Test RUM Applicationupdated", "tags": [], "updated_by_handle": + "17d29c8a-6285-11f0-be9b-76de006a05ea", "client_token": "pubd55d1e50f71fc8213ec98f0fa36cb814", + "product_analytics_replay_sample_rate": 100, "created_by_handle": "17d29c8a-6285-11f0-be9b-76de006a05ea", + "application_id": "76b6b549-c24e-43bf-bf9b-d6007377c6b5", "product_scales": + {"product_analytics_retention_scale": {"state": "NONE", "last_modified_at": + 1756324987084}, "rum_event_processing_scale": {"state": "ALL", "last_modified_at": + 1756324987084}}, "type": "browser", "is_active": false, "hash": "pubd55d1e50f71fc8213ec98f0fa36cb814"}}}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.us5.datadoghq.com/api/v2/hamr + response: + body: + string: '{"data": {"id": "b9e754c7-857e-11ef-afbd-c64ba5fcf2d1", "type": "hamr_org_connections", + "attributes": {"HamrStatus": 1, "IsPrimary": false, "ModifiedAt": "2024-10-08 + 15:06:20.300120", "ModifiedBy": "charlie.zhang", "TargetOrgDatacenter": "eu1.prod.dog", + "TargetOrgName": "DDR Internal Testing eu1", "TargetOrgUuid": "30187db5-8582-11ef-969b-8248c7cda362"}}}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/hamr + response: + body: + string: '{"data": {"id": "30187db5-8582-11ef-969b-8248c7cda362", "type": "hamr_org_connections", + "attributes": {"HamrStatus": 1, "IsPrimary": true, "ModifiedAt": "2024-10-08 + 15:06:20.300120", "ModifiedBy": "charlie.zhang", "TargetOrgDatacenter": "us5.prod.dog", + "TargetOrgName": "DDR Internal Testing US5", "TargetOrgUuid": "b9e754c7-857e-11ef-afbd-c64ba5fcf2d1"}}}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/users?page%5Bnumber%5D=0&page%5Bsize%5D=500 + response: + body: + string: '{"data": [{"type": "users", "id": "6b69113d-6f18-11f0-9ad5-1ad15dd71168", + "attributes": {"name": "Ida Adjivon", "handle": "ida.adjivon@datadoghq.com", + "created_at": "2025-08-01T20:45:12.043180+00:00", "modified_at": "2025-08-01T21:35:25.635446+00:00", + "email": "ida.adjivon@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/d3ff11e3ff125d30050f4dfff3fa614c?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "81f6f2c7-923f-11ef-879a-6ee0822e247c", "attributes": {"name": "Justine + Lo", "handle": "justine.lo@datadoghq.com", "created_at": "2024-10-24T19:38:13.281489+00:00", + "modified_at": "2024-10-25T14:18:33.835459+00:00", "email": "justine.lo@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/7d75964971289cf50e6090d76b45e3f6?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "b301b340-8582-11ef-ba31-3219ecc6cb25", "attributes": {"name": "Louis + Cheynel", "handle": "louis.cheynel@datadoghq.com", "created_at": "2024-10-08T14:36:26.725077+00:00", + "modified_at": "2025-02-19T21:12:46.164959+00:00", "email": "louis.cheynel@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/791d1a56daa2bd0f5bb25ed286d3f8bb?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": true, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Disabled", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "30533c3c-8582-11ef-938f-cecf6f9ed4ad", "attributes": {"name": "Michael + Richey", "handle": "michael.richey+ddreu1@datadoghq.com", "created_at": "2024-10-08T14:32:47.477901+00:00", + "modified_at": "2024-10-08T14:32:47.477901+00:00", "email": "michael.richey+ddreu1@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/b5b0452adbe01caf57c1e5f6fb97a631?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "693fe720-9569-11ef-969d-da7ad0900005"}, {"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, + "org": {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "98fe080d-8fda-11ef-aa03-c6ac9d6cb0b0", "attributes": + {"name": "Michael Richey", "handle": "michael.richey@datadoghq.com", "created_at": + "2024-10-21T18:30:50.420260+00:00", "modified_at": "2025-03-03T15:47:53.789029+00:00", + "email": "michael.richey@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/3ae7b2387f1a71bbb857d6f03993bdf3?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}]}, "org": {"data": {"type": + "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, {"type": "users", + "id": "b32e572e-8582-11ef-98fe-f2a776cd34b8", "attributes": {"name": "Ron + Hay", "handle": "ron.hay@datadoghq.com", "created_at": "2024-10-08T14:36:27.017641+00:00", + "modified_at": "2025-06-10T13:33:23.138895+00:00", "email": "ron.hay@datadoghq.com", + "icon": "https://secure.gravatar.com/avatar/1c9c2a5daac55fc5ae86178cd5e7b9c2?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "265f9002-9b9e-11ef-9152-56a58ecd5b70", "attributes": + {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com", "created_at": + "2024-11-05T17:48:22.271026+00:00", "modified_at": "2025-01-23T19:52:06.634848+00:00", + "email": "sherzod.karimov@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/993f2cc00ad75833dbc76f2a93bb227d?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "693fe720-9569-11ef-969d-da7ad0900005"}, {"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}, + {"type": "users", "id": "b32f283f-8582-11ef-be6e-1e59aae1ca5b", "attributes": + {"name": "Tim Alexander", "handle": "tim.alexander@datadoghq.com", "created_at": + "2024-10-08T14:36:27.022996+00:00", "modified_at": "2024-10-08T15:29:54.659973+00:00", + "email": "tim.alexander@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/6269dae26686287d4bdd307a26e33f34?s=48&d=retro", + "title": "", "verified": true, "service_account": false, "disabled": false, + "allowed_login_methods": ["google_oidc", "standard"], "status": "Active", + "mfa_enabled": false}, "relationships": {"roles": {"data": [{"type": "roles", + "id": "3020f50c-8582-11ef-ad61-da7ad0900005"}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005"}, + {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005"}]}, "org": + {"data": {"type": "orgs", "id": "30187db5-8582-11ef-969b-8248c7cda362"}}}}], + "included": [{"type": "roles", "id": "3020f50c-8582-11ef-ad61-da7ad0900005", + "attributes": {"name": "Datadog Admin Role", "managed": true, "created_at": + "2024-10-08T14:32:47.147289+00:00", "modified_at": "2024-10-08T14:32:47.147932+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e"}, {"type": + "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": "permissions", + "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", "id": + "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": + "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": "permissions", + "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", "id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d"}, + {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19"}, {"type": + "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, {"type": "permissions", + "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": "permissions", "id": + "04668d0a-ec5c-11ea-9483-37d199df4587"}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, + {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc"}, {"type": + "permissions", "id": "04668f62-ec5c-11ea-9483-0fe541ab993f"}, {"type": "permissions", + "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02"}, {"type": "permissions", "id": + "046690de-ec5c-11ea-9483-bbcd905fcdca"}, {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf"}, + {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": + "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", + "id": "8b753262-f925-11ea-82fc-93f07fd96e76"}, {"type": "permissions", "id": + "9311970e-f925-11ea-ab4d-1760e76381c1"}, {"type": "permissions", "id": "998aabac-f925-11ea-b43d-8f1f42f3894e"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "72bc07d8-1472-11eb-a97b-8bff514d7382"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e"}, {"type": + "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": "permissions", + "id": "c8654332-2dce-11eb-9145-d33d26eeb65f"}, {"type": "permissions", "id": + "d23cc894-2dce-11eb-9145-37bf7b2dadc2"}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a"}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", "id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, + {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005"}, {"type": + "permissions", "id": "b39fb79a-90af-11eb-9428-da7ad0900005"}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "993b34d6-b16d-11eb-a891-da7ad0900005"}, + {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, {"type": + "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": + "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "c948b30a-16c7-11ec-88cc-da7ad0900005"}, + {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", + "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": + "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005"}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": + "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005"}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "3ad32264-f311-11ec-a058-da7ad0900005"}, {"type": "permissions", + "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005"}, + {"type": "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", + "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": + "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005"}, + {"type": "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": + "8b254e6a-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005"}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": "81e488c0-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", "id": + "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, + {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, + {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, {"type": + "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": + "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", "id": "4316b75c-093f-11ee-98e9-da7ad0900005"}, + {"type": "permissions", "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": + "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", + "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, {"type": "permissions", "id": + "eadf64b2-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": "eadf675a-2199-11ee-9a0e-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005"}, {"type": "permissions", + "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": + "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", + "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": + "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", + "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}, {"type": "permissions", "id": + "f2cc9374-9841-11ee-a301-da7ad0900005"}, {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005"}, + {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, {"type": + "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": + "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005"}, + {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": + "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", + "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": + "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd09204-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", + "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": + "permissions", "id": "ef950332-13a0-11ef-b582-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75066402-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005"}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", + "id": "06e3004e-5987-11ef-89c3-da7ad0900005"}, {"type": "permissions", "id": + "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", + "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005"}, + {"type": "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": + "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", + "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": + "83fc9760-7c51-11ef-b846-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "80ae7688-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": "71949074-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": + "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", + "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": "permissions", "id": + "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005"}, + {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", + "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", + "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", "id": + "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": "9b00ed28-da87-11ef-9de6-da7ad0900005"}, + {"type": "permissions", "id": "9b010d44-da87-11ef-9de6-da7ad0900005"}, {"type": + "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005"}, {"type": "permissions", + "id": "7ad4419a-e288-11ef-bbbc-da7ad0900005"}, {"type": "permissions", "id": + "4a6c29d6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": "4a6cadb6-e806-11ef-8710-da7ad0900005"}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": + "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", + "id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", "id": + "23f76dc4-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, + {"type": "permissions", "id": "02e65e42-fabc-11ef-a653-da7ad0900005"}, {"type": + "permissions", "id": "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", + "id": "9bb09240-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": + "9bb09a10-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", "id": + "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": "fbf841c6-2618-11f0-8595-da7ad0900005"}, + {"type": "permissions", "id": "2cead6ec-34db-11f0-9eb2-da7ad0900005"}, {"type": + "permissions", "id": "12465c5e-3a5c-11f0-becd-da7ad0900005"}, {"type": "permissions", + "id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005"}, {"type": "permissions", "id": + "d2c0335e-5688-11f0-ad5e-da7ad0900005"}, {"type": "permissions", "id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005"}, + {"type": "permissions", "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005"}, {"type": + "permissions", "id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005"}]}}}, {"type": + "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "attributes": + {"name": "logs_read_index_data", "display_name": "Logs Read Index Data", "description": + "Read log data, possibly scoped to one or more indexes. In order to read log + data, a user must have both this permission and Logs Read Data. This permission + can be granted in a limited capacity per index from the Logs interface or + APIs. If granted via the Roles interface or API the permission has global + scope. Restrictions are limited to the Log Management product.", "created": + "2018-10-31T14:00:23.650159+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", + "attributes": {"name": "logs_modify_indexes", "display_name": "Logs Modify + Indexes", "description": "Read and modify all indexes in your account. This + includes the ability to grant the Logs Read Index Data and Logs Write Exclusion + Filters permission to other roles, for some or all indexes.", "created": "2018-10-31T14:00:23.664332+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "attributes": + {"name": "logs_live_tail", "display_name": "Logs Live Tail", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "created": "2018-10-31T14:00:23.676180+00:00", "group_name": + "Log Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "attributes": + {"name": "logs_write_exclusion_filters", "display_name": "Logs Write Exclusion + Filters", "description": "Add and change exclusion filters for all or some + log indexes. Can be granted in a limited capacity per index to specific roles + via the Logs interface or API. If granted from the Roles interface or API, + the permission has global scope.", "created": "2018-10-31T14:00:23.699543+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "attributes": + {"name": "logs_write_pipelines", "display_name": "Logs Write Pipelines", "description": + "Add and change log pipeline configurations, including the ability to grant + the Logs Write Processors permission to other roles, for some or all pipelines.", + "created": "2018-10-31T14:00:23.710821+00:00", "group_name": "Log Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "505f4538-dd15-11e8-9308-47a4732f715f", "attributes": {"name": "logs_write_processors", + "display_name": "Logs Write Processors", "description": "Add and change some + or all log processor configurations. Can be granted in a limited capacity + per pipeline to specific roles via the Logs interface or API. If granted via + the Roles interface or API the permission has global scope.", "created": "2018-10-31T14:00:24.726927+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e", "attributes": + {"name": "logs_write_archives", "display_name": "Logs Write Archives", "description": + "Add and edit Log Archives.", "created": "2018-10-31T14:00:24.730570+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "attributes": + {"name": "logs_generate_metrics", "display_name": "Logs Generate Metrics", + "description": "Create custom metrics from logs.", "created": "2019-07-25T12:37:55.949477+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "attributes": + {"name": "dashboards_read", "display_name": "Dashboards Read", "description": + "View dashboards.", "created": "2019-09-10T14:41:53.120685+00:00", "group_name": + "Dashboards", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "attributes": {"name": "dashboards_write", + "display_name": "Dashboards Write", "description": "Create and change dashboards.", + "created": "2019-09-10T14:41:53.136336+00:00", "group_name": "Dashboards", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f", "attributes": {"name": "dashboards_public_share", + "display_name": "Shared Dashboards Public Write", "description": "Create, + modify and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "created": "2019-09-10T14:41:53.150548+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "attributes": + {"name": "monitors_read", "display_name": "Monitors Read", "description": + "View monitors.", "created": "2019-09-16T18:49:59.270746+00:00", "group_name": + "Monitors", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "attributes": {"name": "monitors_write", + "display_name": "Monitors Write", "description": "Edit and delete individual + monitors.", "created": "2019-09-16T18:50:07.944781+00:00", "group_name": "Monitors", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "d3159858-d8b2-11e9-a336-e363d6ef331b", "attributes": {"name": "monitors_downtime", + "display_name": "Manage Downtimes", "description": "Set downtimes to suppress + alerts from any monitor in an organization. Mute and unmute monitors. The + ability to write monitors is not required to set downtimes.", "created": "2019-09-16T18:50:16.869407+00:00", + "group_name": "Monitors", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "attributes": + {"name": "logs_read_data", "display_name": "Logs Read Data", "description": + "Read log data. In order to read log data, a user must have both this permission + and Logs Read Index Data. This permission can be restricted with restriction + queries. Restrictions are limited to the Log Management product.", "created": + "2020-04-06T16:29:12.337169+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "attributes": {"name": "logs_read_archives", "display_name": "Logs Read Archives", + "description": "Read Log Archives location and use it for rehydration.", "created": + "2020-04-23T07:45:13.801938+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "attributes": {"name": "security_monitoring_rules_read", "display_name": "Security + Rules Read", "description": "Read Detection Rules.", "created": "2020-06-09T13:55:12.166762+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", + "attributes": {"name": "security_monitoring_rules_write", "display_name": + "Security Rules Write", "description": "Create and edit Detection Rules.", + "created": "2020-06-09T13:55:21.036857+00:00", "group_name": "Cloud Security + Platform", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9", "attributes": {"name": "security_monitoring_signals_read", + "display_name": "Security Signals Read", "description": "View Security Signals.", + "created": "2020-06-09T13:55:29.398066+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", "attributes": {"name": "security_monitoring_signals_write", + "display_name": "Security Signals Write", "description": "Modify Security + Signals.", "created": "2021-08-17T15:11:19.976019+00:00", "group_name": "Cloud + Security Platform", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d", "attributes": + {"name": "user_access_invite", "display_name": "User Access Invite", "description": + "Invite other users to your organization.", "created": "2020-08-25T19:10:01.692112+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", + "attributes": {"name": "user_access_manage", "display_name": "User Access + Manage", "description": "Disable users, manage user roles, manage SAML-to-role + mappings, and configure logs restriction queries.", "created": "2020-08-25T19:10:12.116164+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30", + "attributes": {"name": "user_app_keys", "display_name": "User App Keys", "description": + "View and manage Application Keys owned by the user.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "attributes": {"name": "org_app_keys_read", "display_name": "Org App Keys + Read", "description": "View Application Keys owned by all users in the organization.", + "created": "2020-09-01T14:04:14.317866+00:00", "group_name": "API and Application + Keys", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "04668d0a-ec5c-11ea-9483-37d199df4587", "attributes": {"name": "org_app_keys_write", + "display_name": "Org App Keys Write", "description": "Manage Application Keys + owned by all users in the organization.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "attributes": {"name": "synthetics_private_location_read", "display_name": + "Synthetics Private Locations Read", "description": "View, search, and use + Synthetics private locations.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Synthetic Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", + "attributes": {"name": "synthetics_private_location_write", "display_name": + "Synthetics Private Locations Write", "description": "Create and delete private + locations in addition to having access to the associated installation guidelines.", + "created": "2020-09-01T14:04:14.317866+00:00", "group_name": "Synthetic Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "04668f62-ec5c-11ea-9483-0fe541ab993f", "attributes": {"name": "billing_read", + "display_name": "Billing Read", "description": "View your organization''s + subscription and payment method but not make edits.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "attributes": + {"name": "billing_edit", "display_name": "Billing Edit", "description": "Manage + your organization''s subscription and payment method.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "attributes": {"name": "usage_read", "display_name": "Usage Read", "description": + "View your organization''s usage and usage attribution.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf", "attributes": + {"name": "usage_edit", "display_name": "Usage Edit", "description": "Manage + your organization''s usage attribution set-up.", "created": "2020-09-01T14:04:14.317866+00:00", + "group_name": "Billing and Usage", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "attributes": {"name": "metric_tags_write", "display_name": "Metric Tags Write", + "description": "Edit and save tag configurations for custom metrics.", "created": + "2020-09-01T14:04:14.317866+00:00", "group_name": "Metrics", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "attributes": {"name": "logs_write_historical_view", "display_name": "Logs + Write Historical Views", "description": "Rehydrate logs from Archives.", "created": + "2020-09-16T08:42:43.928080+00:00", "group_name": "Log Management", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "attributes": {"name": "audit_logs_read", "display_name": "Audit Trail Read", + "description": "View Audit Trail in your organization.", "created": "2020-09-17T20:37:03.702585+00:00", + "group_name": "Compliance", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9311970e-f925-11ea-ab4d-1760e76381c1", "attributes": + {"name": "api_keys_read", "display_name": "API Keys Read", "description": + "List and retrieve the key values of all API Keys in your organization.", + "created": "2020-09-17T20:37:16.471514+00:00", "group_name": "API and Application + Keys", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "attributes": {"name": "api_keys_write", + "display_name": "API Keys Write", "description": "Create and rename API Keys + for your organization.", "created": "2020-09-17T20:37:27.331389+00:00", "group_name": + "API and Application Keys", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "attributes": + {"name": "synthetics_global_variable_read", "display_name": "Synthetics Global + Variable Read", "description": "View, search, and use Synthetics global variables.", + "created": "2020-09-17T20:37:50.165103+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", "attributes": {"name": "synthetics_global_variable_write", + "display_name": "Synthetics Global Variable Write", "description": "Create, + edit, and delete global variables for Synthetics.", "created": "2020-09-17T20:38:01.966230+00:00", + "group_name": "Synthetic Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "b6858556-f925-11ea-9222-1f47b8677b93", + "attributes": {"name": "synthetics_read", "display_name": "Synthetics Read", + "description": "List and view configured Synthetic tests and test results.", + "created": "2020-09-17T20:38:15.951574+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "attributes": {"name": "synthetics_write", + "display_name": "Synthetics Write", "description": "Create, edit, and delete + Synthetic tests.", "created": "2020-09-17T20:38:27.421632+00:00", "group_name": + "Synthetic Monitoring", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "attributes": + {"name": "synthetics_default_settings_read", "display_name": "Synthetics Default + Settings Read", "description": "View the default settings for Synthetic Monitoring.", + "created": "2020-09-17T20:38:49.527477+00:00", "group_name": "Synthetic Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "cf223140-f925-11ea-a3a2-df370532bcf7", "attributes": {"name": "synthetics_default_settings_write", + "display_name": "Synthetics Default Settings Write", "description": "Edit + the default settings for Synthetic Monitoring.", "created": "2020-09-17T20:38:57.244987+00:00", + "group_name": "Synthetic Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", + "attributes": {"name": "logs_write_facets", "display_name": "Logs Write Facets", + "description": "Create or edit Log Facets.", "created": "2020-10-14T12:54:16.607129+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "attributes": + {"name": "service_account_write", "display_name": "Service Account Write", + "description": "Create, disable, and use Service Accounts in your organization.", + "created": "2020-10-22T14:25:34.868208+00:00", "group_name": "Access Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "attributes": {"name": "apm_read", + "display_name": "APM Read", "description": "Read and query APM and Trace Analytics.", + "created": "2020-11-23T20:59:02.902692+00:00", "group_name": "APM", "display_type": + "read", "restricted": true}}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "attributes": {"name": "apm_retention_filter_read", "display_name": "APM Retention + Filters Read", "description": "Read trace retention filters. A user with this + permission can view the retention filters page, list of filters, their statistics, + and creation info.", "created": "2020-11-23T20:59:11.833795+00:00", "group_name": + "APM", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "attributes": {"name": "apm_retention_filter_write", + "display_name": "APM Retention Filters Write", "description": "Create, edit, + and delete trace retention filters. A user with this permission can create + new retention filters, and update or delete to existing retention filters.", + "created": "2020-11-23T20:59:19.531425+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", + "attributes": {"name": "apm_service_ingest_read", "display_name": "APM Service + Ingest Read", "description": "Access service ingestion pages. A user with + this permission can view the service ingestion page, list of root services, + their statistics, and creation info.", "created": "2020-11-23T20:59:25.933546+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "c8654332-2dce-11eb-9145-d33d26eeb65f", "attributes": + {"name": "apm_service_ingest_write", "display_name": "APM Service Ingest Write", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "created": "2020-11-23T20:59:31.352238+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "attributes": + {"name": "apm_apdex_manage_write", "display_name": "APM Apdex Manage Write", + "description": "Set Apdex T value on any service. A user with this permission + can set the T value from the Apdex graph on the service page.", "created": + "2020-11-23T20:59:47.864214+00:00", "group_name": "APM", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c", + "attributes": {"name": "apm_tag_management_write", "display_name": "APM Tag + Management Write", "description": "Edit second primary tag selection. A user + with this permission can modify the second primary tag dropdown in the APM + settings page.", "created": "2020-11-23T21:00:01.066421+00:00", "group_name": + "APM", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "attributes": {"name": "apm_primary_operation_write", + "display_name": "APM Primary Operation Write", "description": "Edit the operation + name value selection. A user with this permission can modify the operation + name list in the APM settings page and the operation name controller on the + service page.", "created": "2020-11-23T21:00:18.680068+00:00", "group_name": + "APM", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", "attributes": {"name": "audit_logs_write", + "display_name": "Audit Trail Write", "description": "Configure Audit Trail + in your organization.", "created": "2020-12-01T19:12:04.940111+00:00", "group_name": + "Compliance", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", "attributes": {"name": "rum_apps_write", + "display_name": "RUM Apps Write", "description": "Create, edit, and delete + RUM applications. Creating a RUM application automatically generates a Client + Token. In order to create Client Tokens directly, a user needs the Client + Tokens Write permission.", "created": "2021-01-11T19:07:15.721075+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "attributes": {"name": "debugger_write", "display_name": "Dynamic Instrumentation + Write", "description": "Edit Dynamic Instrumentation configuration. Create + or modify Dynamic Instrumentation probes that do not capture function state.", + "created": "2021-03-08T15:07:07.319753+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "attributes": {"name": "debugger_read", "display_name": "Dynamic Instrumentation + Read", "description": "View Dynamic Instrumentation configuration.", "created": + "2021-03-08T15:07:07.333513+00:00", "group_name": "APM", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005", + "attributes": {"name": "data_scanner_read", "display_name": "Data Scanner + Read", "description": "View Sensitive Data Scanner configurations and scanning + results.", "created": "2021-03-29T16:56:27.205044+00:00", "group_name": "Compliance", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "attributes": {"name": "data_scanner_write", + "display_name": "Data Scanner Write", "description": "Edit Sensitive Data + Scanner configurations.", "created": "2021-03-29T16:56:27.219481+00:00", "group_name": + "Compliance", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "attributes": {"name": "org_management", + "display_name": "Org Management", "description": "Edit org configurations, + including authentication and certain security preferences such as configuring + SAML, renaming an org, configuring allowed login methods, creating child orgs, + subscribing & unsubscribing from apps in the marketplace, and enabling & disabling + Remote Configuration for the entire organization.", "created": "2021-04-23T17:51:22.555499+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "99397470-b16d-11eb-a891-da7ad0900005", + "attributes": {"name": "security_monitoring_filters_read", "display_name": + "Security Filters Read", "description": "Read Security Filters.", "created": + "2021-05-10T08:56:24.514661+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "993b34d6-b16d-11eb-a891-da7ad0900005", "attributes": {"name": "security_monitoring_filters_write", + "display_name": "Security Filters Write", "description": "Create, edit, and + delete Security Filters.", "created": "2021-05-10T08:56:24.527411+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", + "attributes": {"name": "incident_read", "display_name": "Incidents Read", + "description": "View incidents in Datadog.", "created": "2021-06-22T15:11:07.986072+00:00", + "group_name": "Case and Incident Management", "display_type": "read", "restricted": + true}}, {"type": "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005", + "attributes": {"name": "incident_write", "display_name": "Incidents Write", + "description": "Create, view, and manage incidents in Datadog.", "created": + "2021-06-22T15:11:08.003239+00:00", "group_name": "Case and Incident Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "122f7508-d36c-11eb-b2bf-da7ad0900005", "attributes": {"name": "incident_settings_read", + "display_name": "Incident Settings Read", "description": "View Incident Settings.", + "created": "2021-06-22T15:11:07.995787+00:00", "group_name": "Case and Incident + Management", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "attributes": {"name": "incident_settings_write", + "display_name": "Incident Settings Write", "description": "Configure Incident + Settings.", "created": "2021-06-22T15:11:07.999194+00:00", "group_name": "Case + and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005", "attributes": + {"name": "appsec_event_rule_read", "display_name": "Application Security Management + Event Rules Read", "description": "View Application Security Management Event + Rules.", "created": "2021-07-19T13:26:35.252432+00:00", "group_name": "Cloud + Security Platform", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005", "attributes": + {"name": "appsec_event_rule_write", "display_name": "Application Security + Management Event Rules Write", "description": "Edit Application Security Management + Event Rules.", "created": "2021-07-19T13:26:35.260787+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "attributes": + {"name": "rum_apps_read", "display_name": "RUM Apps Read", "description": + "View RUM Applications data.", "created": "2021-08-02T09:46:22.567371+00:00", + "group_name": "Real User Monitoring", "display_type": "read", "restricted": + true}}, {"type": "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", + "attributes": {"name": "rum_session_replay_read", "display_name": "RUM Session + Replay Read", "description": "View Session Replays.", "created": "2021-08-02T09:46:22.572685+00:00", + "group_name": "Real User Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "c94811de-16c7-11ec-88cc-da7ad0900005", + "attributes": {"name": "security_monitoring_notification_profiles_read", "display_name": + "Security Notification Rules Read", "description": "Read Notification Rules.", + "created": "2021-09-16T08:26:27.288070+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "attributes": {"name": "security_monitoring_notification_profiles_write", + "display_name": "Security Notification Rules Write", "description": "Create, + edit, and delete Notification Rules.", "created": "2021-09-16T08:26:27.292835+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005", + "attributes": {"name": "apm_generate_metrics", "display_name": "APM Generate + Metrics", "description": "Create custom metrics from spans.", "created": "2021-09-16T15:31:28.639581+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005", "attributes": + {"name": "security_monitoring_cws_agent_rules_read", "display_name": "Cloud + Workload Security Agent Rules Read", "description": "Read Cloud Workload Security + Agent Rules.", "created": "2021-11-17T10:41:45.755009+00:00", "group_name": + "Cloud Security Platform", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "f5e1489a-4792-11ec-944b-da7ad0900005", "attributes": + {"name": "security_monitoring_cws_agent_rules_write", "display_name": "Cloud + Workload Security Agent Rules Write", "description": "Create, edit, and delete + Cloud Workload Security Agent Rules.", "created": "2021-11-17T10:41:45.761956+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", + "attributes": {"name": "apm_pipelines_write", "display_name": "APM Pipelines + Write", "description": "Add and change APM pipeline configurations.", "created": + "2021-12-06T14:51:25.389398+00:00", "group_name": "APM", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005", + "attributes": {"name": "apm_pipelines_read", "display_name": "APM Pipelines + Read", "description": "View APM pipeline configurations.", "created": "2021-12-07T11:21:23.741014+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "attributes": + {"name": "observability_pipelines_read", "display_name": "Observability Pipelines + Read", "description": "View pipelines in your organization.", "created": "2021-12-09T00:11:41.567875+00:00", + "group_name": "Observability Pipelines", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "attributes": {"name": "observability_pipelines_write", "display_name": "Observability + Pipelines Write", "description": "Edit pipelines in your organization.", "created": + "2021-12-09T00:11:41.572883+00:00", "group_name": "Observability Pipelines", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "e31e0056-8502-11ec-b266-da7ad0900005", "attributes": {"name": "workflows_read", + "display_name": "Workflows Read", "description": "View workflows.", "created": + "2022-02-03T15:06:38.846399+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "e31f0230-8502-11ec-b266-da7ad0900005", "attributes": {"name": "workflows_write", + "display_name": "Workflows Write", "description": "Create, edit, and delete + workflows.", "created": "2022-02-03T15:06:38.853003+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "workflows_run", "display_name": "Workflows Run", "description": + "Run workflows.", "created": "2022-02-03T15:06:38.849099+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "connections_read", "display_name": "Connections Read", + "description": "List and view available connections. Connections contain secrets + that cannot be revealed.", "created": "2022-02-03T15:06:38.837721+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005", + "attributes": {"name": "connections_write", "display_name": "Connections Write", + "description": "Create and delete connections.", "created": "2022-02-03T15:06:38.843395+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", + "attributes": {"name": "notebooks_read", "display_name": "Notebooks Read", + "description": "View notebooks.", "created": "2022-03-02T18:51:33.435297+00:00", + "group_name": "Notebooks", "display_type": "read", "restricted": true}}, {"type": + "permissions", "id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "attributes": + {"name": "notebooks_write", "display_name": "Notebooks Write", "description": + "Create and change notebooks.", "created": "2022-03-02T18:51:33.439640+00:00", + "group_name": "Notebooks", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005", "attributes": + {"name": "logs_delete_data", "display_name": "Logs Delete Data", "description": + "Delete data from your Logs, including entire indexes.", "created": "2022-02-25T18:51:34.198635+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005", "attributes": + {"name": "rum_generate_metrics", "display_name": "RUM Generate Metrics", "description": + "Create custom metrics from RUM events.", "created": "2022-04-11T16:26:30.469616+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "attributes": {"name": "aws_configurations_manage", "display_name": "AWS Configurations + Manage", "description": "Add or remove but not edit AWS integration configurations.", + "created": "2022-04-26T20:21:48.019179+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "7fbe2266-c59e-11ec-90fb-da7ad0900005", "attributes": {"name": "azure_configurations_manage", + "display_name": "Azure Configurations Manage", "description": "Add or remove + but not edit Azure integration configurations.", "created": "2022-04-26T20:21:48.031171+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "attributes": + {"name": "gcp_configurations_manage", "display_name": "GCP Configurations + Manage", "description": "Add or remove but not edit GCP integration configurations.", + "created": "2022-04-26T20:21:48.027662+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "attributes": {"name": "manage_integrations", + "display_name": "Integrations Manage", "description": "Install, uninstall, + and configure integrations.", "created": "2022-04-26T20:21:48.034453+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "attributes": + {"name": "usage_notifications_read", "display_name": "Usage Notifications + Read", "description": "Receive notifications and view currently configured + notification settings.", "created": "2022-05-17T13:56:29.090665+00:00", "group_name": + "Billing and Usage", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "attributes": + {"name": "usage_notifications_write", "display_name": "Usage Notifications + Write", "description": "Receive notifications and configure notification settings.", + "created": "2022-05-17T13:56:29.094457+00:00", "group_name": "Billing and + Usage", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "attributes": {"name": "generate_dashboard_reports", + "display_name": "Dashboards Report Write", "description": "Schedule PDF reports + from a dashboard.", "created": "2022-06-06T18:15:47.465864+00:00", "group_name": + "Dashboards", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "f33f74be-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_read", + "display_name": "SLOs Read", "description": "View SLOs and status corrections.", + "created": "2022-06-08T16:20:45.638848+00:00", "group_name": "Service Level + Objectives", "display_type": "read", "restricted": true}}, {"type": "permissions", + "id": "f340161c-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_write", + "display_name": "SLOs Write", "description": "Create, edit, and delete SLOs.", + "created": "2022-06-08T16:20:45.643085+00:00", "group_name": "Service Level + Objectives", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "attributes": {"name": "slos_corrections", + "display_name": "SLOs Status Corrections", "description": "Apply, edit, and + delete SLO status corrections. A user with this permission can make status + corrections, even if they do not have permission to edit those SLOs.", "created": + "2022-06-08T16:20:45.632820+00:00", "group_name": "Service Level Objectives", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "3ad32264-f311-11ec-a058-da7ad0900005", "attributes": {"name": "monitor_config_policy_write", + "display_name": "Monitor Configuration Policy Write", "description": "Create, + update, and delete monitor configuration policies.", "created": "2022-06-23T16:26:26.854058+00:00", + "group_name": "Monitors", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f42ef088-173a-11ed-8654-da7ad0900005", "attributes": + {"name": "apm_service_catalog_write", "display_name": "Service Catalog Write", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "created": "2022-08-08T16:55:49.060954+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "attributes": + {"name": "apm_service_catalog_read", "display_name": "Service Catalog Read", + "description": "View service catalog and service definitions.", "created": + "2022-08-08T16:55:49.055930+00:00", "group_name": "APM", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", + "attributes": {"name": "logs_write_forwarding_rules", "display_name": "Logs + Write Forwarding Rules", "description": "Add and edit forwarding destinations + and rules for logs.", "created": "2022-08-08T21:30:48.328740+00:00", "group_name": + "Log Management", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005", "attributes": + {"name": "connections_resolve", "display_name": "Connections Resolve", "description": + "Resolve connections.", "created": "2022-08-25T15:26:23.943459+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_protect_read", "display_name": "Application + Security Management Protect Read", "description": "View blocked attackers.", + "created": "2022-10-27T09:25:59.057166+00:00", "group_name": "Cloud Security + Platform", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "attributes": {"name": "appsec_protect_write", + "display_name": "Application Security Management Protect Write", "description": + "Manage blocked attackers.", "created": "2022-10-27T09:25:59.060959+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_activation_read", "display_name": "Application + Security Management 1-click Enablement Read", "description": "View whether + Application Security Management has been enabled or disabled on services via + 1-click enablement with Remote Configuration.", "created": "2022-10-27T09:25:59.047444+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", + "attributes": {"name": "appsec_activation_write", "display_name": "Application + Security Management 1-click Enablement Write", "description": "Enable or disable + Application Security Management on services via 1-click enablement.", "created": + "2022-10-27T09:25:59.053394+00:00", "group_name": "Cloud Security Platform", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "c0490360-5a12-11ed-adbe-da7ad0900005", "attributes": {"name": "apps_run", + "display_name": "Apps View", "description": "View and run Apps in App Builder.", + "created": "2022-11-01T18:26:50.026179+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005", "attributes": + {"name": "apps_write", "display_name": "Apps Write", "description": "Create, + edit, and delete Apps in App Builder.", "created": "2022-11-01T18:26:50.036655+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "926612da-7a4c-11ed-b809-da7ad0900005", + "attributes": {"name": "cases_read", "display_name": "Cases Read", "description": + "View Cases.", "created": "2022-12-12T18:41:21.060748+00:00", "group_name": + "Case and Incident Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "attributes": + {"name": "cases_write", "display_name": "Cases Write", "description": "Create + and update cases.", "created": "2022-12-12T18:41:21.067150+00:00", "group_name": + "Case and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "attributes": + {"name": "apm_remote_configuration_write", "display_name": "APM Remote Configuration + Write", "description": "Edit APM Remote Configuration.", "created": "2022-12-12T20:21:20.723147+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "attributes": + {"name": "apm_remote_configuration_read", "display_name": "APM Remote Configuration + Read", "description": "View APM Remote Configuration.", "created": "2022-12-12T20:21:20.716560+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "attributes": + {"name": "ci_visibility_read", "display_name": "CI Visibility Read", "description": + "View CI Visibility.", "created": "2022-12-13T16:02:28.814628+00:00", "group_name": + "Software Delivery", "display_type": "read", "restricted": true}}, {"type": + "permissions", "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "attributes": + {"name": "ci_visibility_write", "display_name": "CI Visibility Tests Write", + "description": "Edit flaky tests and delete Test Services.", "created": "2022-12-13T16:02:28.821529+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "ci_provider_settings_write", "display_name": "CI Provider + Settings Write", "description": "Edit CI Provider settings. Manage GitHub + accounts and repositories for enabling CI Visibility and job logs collection.", + "created": "2022-12-13T16:02:28.806929+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "attributes": {"name": "ci_visibility_settings_write", + "display_name": "CI Visibility Settings Write", "description": "Configure + CI Visibility settings. Set a repository default branch, enable GitHub comments, + and delete test services.", "created": "2022-12-13T16:02:28.818035+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "intelligent_test_runner_activation_write", "display_name": + "Intelligent Test Runner Activation Write", "description": "Deprecated. Enable + or disable Intelligent Test Runner.", "created": "2022-12-13T16:02:28.826271+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", + "attributes": {"name": "intelligent_test_runner_settings_write", "display_name": + "Intelligent Test Runner Settings Write", "description": "Deprecated. Edit + Intelligent Test Runner settings, such as modifying ITR excluded branch list.", + "created": "2022-12-13T16:02:28.830112+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "55f64460-7d61-11ed-9c36-da7ad0900005", "attributes": {"name": "continuous_profiler_read", + "display_name": "Continuous Profiler Read", "description": "View data in Continuous + Profiler.", "created": "2022-12-16T16:47:32.584514+00:00", "group_name": "APM", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005", "attributes": {"name": "teams_manage", + "display_name": "Teams Manage", "description": "Manage Teams. Create, delete, + rename, and edit metadata of all Teams. To control Team membership across + all Teams, use the User Access Manage permission.", "created": "2023-01-18T20:45:46.126002+00:00", + "group_name": "Teams", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005", "attributes": + {"name": "security_monitoring_findings_read", "display_name": "Security Monitoring + Findings Read", "description": "View a list of findings that include both + misconfigurations and identity risks.", "created": "2023-02-24T14:30:40.720618+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", + "attributes": {"name": "incident_notification_settings_read", "display_name": + "Incident Notification Settings Read", "description": "View Incidents Notification + settings.", "created": "2023-02-24T17:27:09.998449+00:00", "group_name": "Case + and Incident Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "attributes": + {"name": "incident_notification_settings_write", "display_name": "Incident + Notification Settings Write", "description": "Configure Incidents Notification + settings.", "created": "2023-02-24T17:27:09.998449+00:00", "group_name": "Case + and Incident Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "attributes": + {"name": "ci_ingestion_control_write", "display_name": "CI Visibility Ingestion + Control Write", "description": "Edit CI Ingestion Control exclusion filters.", + "created": "2023-03-24T10:25:52.891502+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005", "attributes": {"name": "error_tracking_write", + "display_name": "Error Tracking Issue Write", "description": "Edit Error Tracking + issues.", "created": "2023-03-27T16:55:39.540192+00:00", "group_name": "Error + Tracking", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "81e488c0-db35-11ed-a170-da7ad0900005", "attributes": {"name": "watchdog_alerts_write", + "display_name": "Watchdog Alerts Write", "description": "Manage Watchdog Alerts.", + "created": "2023-04-15T02:30:37.731056+00:00", "group_name": "Watchdog", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005", + "attributes": {"name": "saved_views_write", "display_name": "Saved Views Write", + "description": "Modify Saved Views across all Datadog products.", "created": + "2023-04-15T02:30:37.731056+00:00", "group_name": "Cross-Product Features", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "94c8a4da-de87-11ed-9e92-da7ad0900005", "attributes": {"name": "client_tokens_read", + "display_name": "Client Tokens Read", "description": "Read Client Tokens. + Unlike API keys, client tokens may be exposed client-side in JavaScript code + for web browsers and other clients to send data to Datadog.", "created": "2023-04-19T07:55:41.646942+00:00", + "group_name": "API and Application Keys", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "94c927e8-de87-11ed-9e92-da7ad0900005", + "attributes": {"name": "client_tokens_write", "display_name": "Client Tokens + Write", "description": "Create and edit Client Tokens. Unlike API keys, client + tokens may be exposed client-side in JavaScript code for web browsers and + other clients to send data to Datadog.", "created": "2023-04-19T07:55:41.646942+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "619b2642-f41b-11ed-b4e1-da7ad0900005", + "attributes": {"name": "event_correlation_config_read", "display_name": "Event + Correlation Config Read", "description": "Read Event Correlation Configuration + data such as Correlation Rules and Settings.", "created": "2023-05-16T18:56:35.719150+00:00", + "group_name": "Events", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "attributes": + {"name": "event_correlation_config_write", "display_name": "Event Correlation + Config Write", "description": "Manage Event Correlation Configuration such + as Correlation Rules and Settings.", "created": "2023-05-16T18:56:35.719150+00:00", + "group_name": "Events", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005", "attributes": + {"name": "event_config_write", "display_name": "Event Config Write", "description": + "Manage general event configuration such as API Emails.", "created": "2023-05-20T00:00:57.864864+00:00", + "group_name": "Events", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "attributes": + {"name": "security_monitoring_findings_write", "display_name": "Security Monitoring + Findings Write", "description": "Mute CSPM Findings.", "created": "2023-05-23T21:45:42.705754+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "attributes": {"name": "cloud_cost_management_read", "display_name": "Cloud + Cost Management Read", "description": "View Cloud Cost pages and the cloud + cost data source in dashboards and notebooks. For more details, see the Cloud + Cost Management docs.", "created": "2023-05-31T19:20:42.284425+00:00", "group_name": + "Cloud Cost Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "attributes": + {"name": "cloud_cost_management_write", "display_name": "Cloud Cost Management + Write", "description": "Configure cloud cost accounts and global customizations. + For more details, see the Cloud Cost Management docs.", "created": "2023-05-31T19:20:42.284425+00:00", + "group_name": "Cloud Cost Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", + "attributes": {"name": "host_tags_write", "display_name": "Host Tags Write", + "description": "Add and change tags on hosts.", "created": "2023-05-31T05:12:01.547070+00:00", + "group_name": "Metrics", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005", "attributes": + {"name": "ci_visibility_pipelines_write", "display_name": "CI Visibility Pipelines + Write", "description": "Create CI Visibility pipeline spans using the API.", + "created": "2023-06-01T10:15:50.891463+00:00", "group_name": "Software Delivery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "attributes": {"name": "quality_gate_rules_read", + "display_name": "Quality Gate Rules Read", "description": "View Quality Gate + Rules.", "created": "2023-06-19T16:27:34.826612+00:00", "group_name": "Software + Delivery", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "attributes": {"name": "quality_gate_rules_write", + "display_name": "Quality Gate Rules Write", "description": "Edit Quality Gate + Rules.", "created": "2023-06-19T16:27:34.826612+00:00", "group_name": "Software + Delivery", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "attributes": {"name": "metrics_metadata_write", + "display_name": "Metrics Metadata Write", "description": "Edit metadata on + metrics.", "created": "2023-06-23T16:21:25.009293+00:00", "group_name": "Metrics", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "4316b75c-093f-11ee-98e9-da7ad0900005", "attributes": {"name": "rum_delete_data", + "display_name": "RUM Delete Data", "description": "Delete data from RUM.", + "created": "2023-06-12T16:36:20.819036+00:00", "group_name": "Real User Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "4316826e-093f-11ee-98e9-da7ad0900005", "attributes": {"name": "appsec_vm_write", + "display_name": "Vulnerability Management Write", "description": "Update status + or assignee of vulnerabilities.", "created": "2023-06-12T16:36:20.819036+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "attributes": {"name": "reference_tables_write", "display_name": "Reference + Tables Write", "description": "Create or modify Reference Tables.", "created": + "2023-06-12T16:36:20.819036+00:00", "group_name": "Reference Tables", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "attributes": {"name": "rum_playlist_write", "display_name": "RUM Playlist + Write", "description": "Create, update, and delete RUM playlists. Add and + remove sessions from RUM playlists.", "created": "2023-07-07T16:26:50.792866+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", + "attributes": {"name": "observability_pipelines_delete", "display_name": "Observability + Pipelines Delete", "description": "Delete pipelines from your organization.", + "created": "2023-07-13T16:25:44.923503+00:00", "group_name": "Observability + Pipelines", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "attributes": {"name": "observability_pipelines_deploy", + "display_name": "Observability Pipelines Deploy", "description": "Deploy pipelines + in your organization.", "created": "2023-07-13T16:25:44.923503+00:00", "group_name": + "Observability Pipelines", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "attributes": + {"name": "processes_generate_metrics", "display_name": "Processes Generate + Metrics", "description": "Create custom metrics from processes.", "created": + "2023-07-12T16:27:03.457484+00:00", "group_name": "Processes", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "attributes": {"name": "api_keys_delete", "display_name": "API Keys Delete", + "description": "Delete API Keys for your organization.", "created": "2023-07-12T16:27:03.457484+00:00", + "group_name": "API and Application Keys", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "attributes": {"name": "agent_flare_collection", "display_name": "Agent Flare + Collection", "description": "Collect an Agent flare with Fleet Automation.", + "created": "2023-07-13T16:25:44.923503+00:00", "group_name": "Fleet Automation", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005", "attributes": {"name": "org_connections_write", + "display_name": "Org Connections Write", "description": "Control which organizations + can query your organization''s data.", "created": "2023-07-20T16:25:38.185785+00:00", + "group_name": "Access Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005", + "attributes": {"name": "org_connections_read", "display_name": "Org Connections + Read", "description": "View which organizations can query data from your organization. + Query data from other organizations.", "created": "2023-07-20T16:25:38.185785+00:00", + "group_name": "Access Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "attributes": + {"name": "facets_write", "display_name": "Facets Write", "description": "Manage + facets for products other than Log Management, such as APM Traces. To modify + Log Facets, use Logs Write Facets.", "created": "2023-07-27T16:26:26.546986+00:00", + "group_name": "Cross-Product Features", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", + "attributes": {"name": "security_monitoring_suppressions_read", "display_name": + "Security Suppressions Read", "description": "Read Rule Suppressions.", "created": + "2023-08-17T16:25:26.209216+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "attributes": {"name": "security_monitoring_suppressions_write", + "display_name": "Security Suppressions Write", "description": "Write Rule + Suppressions.", "created": "2023-08-17T16:25:26.209216+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "attributes": + {"name": "static_analysis_settings_write", "display_name": "Static Analysis + Settings Write", "description": "Edit Static Analysis settings.", "created": + "2023-08-18T16:25:56.688500+00:00", "group_name": "Software Delivery", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005", + "attributes": {"name": "cd_visibility_read", "display_name": "CD Visibility + Read", "description": "View CD Visibility.", "created": "2023-09-08T23:01:01.285130+00:00", + "group_name": "Software Delivery", "display_type": "read", "restricted": true}}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "attributes": + {"name": "ndm_netflow_port_mappings_write", "display_name": "NDM Netflow Port + Mappings Write", "description": "Write NDM Netflow port mappings.", "created": + "2023-10-12T16:26:03.661255+00:00", "group_name": "Network Device Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "2de35000-69e5-11ee-996b-da7ad0900005", "attributes": {"name": "appsec_vm_read", + "display_name": "Vulnerability Management Read", "description": "View infrastructure, + application code and library vulnerabilities. This does not restrict access + to the vulnerability data source through the API or inventory SQL.", "created": + "2023-10-13T16:25:53.335225+00:00", "group_name": "Cloud Security Platform", + "display_type": "read", "restricted": true}}, {"type": "permissions", "id": + "54f38ef0-6f65-11ee-a094-da7ad0900005", "attributes": {"name": "debugger_capture_variables", + "display_name": "Dynamic Instrumentation Capture Variables", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "created": "2023-10-20T16:25:50.268064+00:00", "group_name": "APM", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "f2cc9374-9841-11ee-a301-da7ad0900005", + "attributes": {"name": "error_tracking_settings_write", "display_name": "Error + Tracking Settings Write", "description": "Disable Error Tracking, edit inclusion + filters, and edit rate limit.", "created": "2023-12-11T16:25:50.880331+00:00", + "group_name": "Error Tracking", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "attributes": + {"name": "error_tracking_exclusion_filters_write", "display_name": "Error + Tracking Exclusion Filters Write", "description": "Add or change Error Tracking + exclusion filters.", "created": "2023-12-11T16:25:50.880331+00:00", "group_name": + "Error Tracking", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "attributes": + {"name": "integrations_read", "display_name": "Integrations Read", "description": + "View integrations and their configurations.", "created": "2024-01-23T16:26:45.209142+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "attributes": + {"name": "apm_api_catalog_write", "display_name": "API Catalog Write", "description": + "Add, modify, and delete API catalog definitions.", "created": "2024-02-02T16:25:57.659403+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "attributes": + {"name": "apm_api_catalog_read", "display_name": "API Catalog Read", "description": + "View API catalog and API definitions.", "created": "2024-02-02T16:25:57.659403+00:00", + "group_name": "APM", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "11280c24-cce8-11ee-af00-da7ad0900005", "attributes": + {"name": "containers_generate_image_metrics", "display_name": "Containers + Write Image Trend Metrics", "description": "Create or edit trend metrics from + container images.", "created": "2024-02-16T16:25:58.736360+00:00", "group_name": + "Containers", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "attributes": {"name": "rum_extend_retention", + "display_name": "RUM Session Replay Extend Retention", "description": "Extend + the retention of Session Replays.", "created": "2024-03-14T16:26:30.797793+00:00", + "group_name": "Real User Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005", + "attributes": {"name": "on_prem_runner_read", "display_name": "Private Action + Runner Read", "description": "View and search Private Action Runners for Workflow + Automation and App Builder.", "created": "2024-03-18T16:26:33.583707+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "read", + "restricted": false}}, {"type": "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", + "attributes": {"name": "on_prem_runner_use", "display_name": "Private Action + Runner Contribute", "description": "Attach a Private Action Runner to a connection.", + "created": "2024-03-18T16:26:33.583707+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "attributes": + {"name": "on_prem_runner_write", "display_name": "Private Action Runner Write", + "description": "Create and edit Private Action Runners for Workflow Automation + and App Builder.", "created": "2024-03-18T16:26:33.583707+00:00", "group_name": + "App Builder & Workflow Automation", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", + "attributes": {"name": "dora_settings_write", "display_name": "DORA Settings + Write", "description": "Edit the settings for DORA.", "created": "2024-04-08T16:25:58.692075+00:00", + "group_name": "Software Delivery", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", + "attributes": {"name": "agent_upgrade_write", "display_name": "Agent Upgrade", + "description": "Upgrade Datadog Agents with Fleet Automation.", "created": + "2024-04-22T16:25:53.208974+00:00", "group_name": "Fleet Automation", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", + "attributes": {"name": "continuous_profiler_pgo_read", "display_name": "Read + Continuous Profiler Profile-Guided Optimization (PGO) Data", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "created": "2024-04-23T16:30:30.492439+00:00", "group_name": "APM", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005", + "attributes": {"name": "oci_configurations_manage", "display_name": "OCI Configurations + Manage", "description": "Add or remove but not edit Oracle Cloud integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "attributes": {"name": "aws_configuration_read", + "display_name": "AWS Configuration Read", "description": "View but not add, + remove, or edit AWS integration configurations.", "created": "2024-04-23T16:30:30.492439+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "ccd09204-018e-11ef-afb6-da7ad0900005", "attributes": + {"name": "azure_configuration_read", "display_name": "Azure Configuration + Read", "description": "View but not add, remove, or edit Azure integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "attributes": {"name": "gcp_configuration_read", + "display_name": "GCP Configuration Read", "description": "View but not add, + remove, or edit GCP integration configurations.", "created": "2024-04-23T16:30:30.492439+00:00", + "group_name": "Integrations", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005", "attributes": + {"name": "oci_configuration_read", "display_name": "OCI Configuration Read", + "description": "View but not add, remove, or edit Oracle Cloud integration + configurations.", "created": "2024-04-23T16:30:30.492439+00:00", "group_name": + "Integrations", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "attributes": {"name": "aws_configuration_edit", + "display_name": "AWS Configuration Edit", "description": "Edit but not add + or remove AWS integration configurations.", "created": "2024-05-02T16:26:19.141095+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "attributes": + {"name": "azure_configuration_edit", "display_name": "Azure Configuration + Edit", "description": "Edit but not add or remove Azure integration configurations.", + "created": "2024-05-02T16:26:19.141095+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005", "attributes": {"name": "gcp_configuration_edit", + "display_name": "GCP Configuration Edit", "description": "Edit but not add + or remove GCP integration configurations.", "created": "2024-05-02T16:26:19.141095+00:00", + "group_name": "Integrations", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "attributes": + {"name": "oci_configuration_edit", "display_name": "OCI Configuration Edit", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "created": "2024-05-02T16:26:19.141095+00:00", "group_name": "Integrations", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "attributes": {"name": "llm_observability_read", + "display_name": "LLM Observability Read", "description": "View LLM Observability.", + "created": "2024-05-03T16:26:22.500447+00:00", "group_name": "LLM Observability", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "ef950332-13a0-11ef-b582-da7ad0900005", "attributes": {"name": "flex_logs_config_write", + "display_name": "Flex Logs Configuration Write", "description": "Manage your + organization''s flex logs configuration.", "created": "2024-05-16T16:25:40.697830+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "21c5475c-228f-11ef-a00d-da7ad0900005", "attributes": + {"name": "reference_tables_read", "display_name": "Reference Tables Read", + "description": "View Reference Tables.", "created": "2024-06-04T16:26:01.400743+00:00", + "group_name": "Reference Tables", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "75066402-3890-11ef-bbb1-da7ad0900005", "attributes": + {"name": "fleet_policies_write", "display_name": "Agent Configuration Management", + "description": "Create and deploy Agent configurations.", "created": "2024-07-02T16:30:56.156267+00:00", + "group_name": "Fleet Automation", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005", "attributes": + {"name": "orchestration_custom_resource_definitions_write", "display_name": + "Custom Resource Definition Write", "description": "Enable, disable and update + custom resource indexing.", "created": "2024-07-02T16:30:56.156267+00:00", + "group_name": "Orchestration", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005", "attributes": + {"name": "code_analysis_read", "display_name": "Code Analysis Read", "description": + "View Code Analysis.", "created": "2024-08-06T16:26:25.858118+00:00", "group_name": + "Software Delivery", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005", "attributes": + {"name": "orchestration_workload_scaling_write", "display_name": "Workload + Scaling Write", "description": "Enable, disable, and configure workload autoscaling. + Apply workload scaling recommendations.", "created": "2024-08-06T16:26:25.858118+00:00", + "group_name": "Orchestration", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "06e3004e-5987-11ef-89c3-da7ad0900005", "attributes": + {"name": "llm_observability_write", "display_name": "LLM Observability Write", + "description": "Create, Update, and Delete LLM Observability resources including + User Defined Evaluations, OOTB Evaluations, and User Defined Topics.", "created": + "2024-08-13T15:16:34.275999+00:00", "group_name": "LLM Observability", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "attributes": {"name": "observability_pipelines_capture_read", "display_name": + "Observability Pipelines Live Capture Read", "description": "View captured + events of pipelines in your organization.", "created": "2024-08-27T16:50:39.669348+00:00", + "group_name": "Observability Pipelines", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005", + "attributes": {"name": "observability_pipelines_capture_write", "display_name": + "Observability Pipelines Live Capture Write", "description": "Capture live + events of pipelines in your organization.", "created": "2024-08-27T16:50:39.669348+00:00", + "group_name": "Observability Pipelines", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", + "attributes": {"name": "apps_datastore_read", "display_name": "Actions Datastore + Read", "description": "Allows read access to the data within the Actions Datastore.", + "created": "2024-08-22T16:25:15.890147+00:00", "group_name": "App Builder + & Workflow Automation", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "attributes": + {"name": "apps_datastore_write", "display_name": "Actions Datastore Write", + "description": "Allows modification of data within the Actions Datastore, + including adding, editing, and deleting records.", "created": "2024-08-22T16:25:15.890147+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", + "attributes": {"name": "apps_datastore_manage", "display_name": "Actions Datastore + Manage", "description": "Allows management of the Actions Datastore, including + creating, updating, and deleting the datastore itself.", "created": "2024-08-22T16:25:15.890147+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "attributes": {"name": "security_pipelines_read", "display_name": "Security + Pipelines Read", "description": "View Security Pipelines.", "created": "2024-08-30T16:25:36.779590+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "attributes": {"name": "security_pipelines_write", "display_name": "Security + Pipelines Write", "description": "Create, edit, and delete Security Pipelines.", + "created": "2024-08-30T16:25:36.779590+00:00", "group_name": "Cloud Security + Platform", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "8e9b2142-7511-11ef-b225-da7ad0900005", "attributes": {"name": "connection_groups_write", + "display_name": "Connection Groups Write", "description": "Create, delete + and update connection groups.", "created": "2024-09-17T16:26:13.918826+00:00", + "group_name": "App Builder & Workflow Automation", "display_type": "write", + "restricted": false}}, {"type": "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "attributes": {"name": "quality_gates_evaluations_read", "display_name": "Quality + Gates Evaluations", "description": "Allow quality gates evaluations.", "created": + "2024-09-23T18:00:21.053557+00:00", "group_name": "Software Delivery", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "attributes": {"name": "connection_groups_read", "display_name": "Connection + Groups Read", "description": "Read and use connection groups.", "created": + "2024-09-26T14:35:22.139553+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "83fc9760-7c51-11ef-b846-da7ad0900005", "attributes": {"name": "security_monitoring_cws_agent_rules_actions", + "display_name": "Cloud Workload Security Agent Actions", "description": "Managing + actions on Cloud Workload Security Agent Rules.", "created": "2024-09-26T21:51:42.032795+00:00", + "group_name": "Cloud Security Platform", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005", + "attributes": {"name": "rum_retention_filters_read", "display_name": "RUM + Retention Filters Read", "description": "View RUM Retention filters data.", + "created": "2024-10-02T23:15:17.740884+00:00", "group_name": "Real User Monitoring", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "300f81cc-8114-11ef-84c0-da7ad0900005", "attributes": {"name": "rum_retention_filters_write", + "display_name": "RUM Retention Filters Write", "description": "Write RUM Retention + filters.", "created": "2024-10-02T23:15:17.740884+00:00", "group_name": "Real + User Monitoring", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005", "attributes": + {"name": "ddsql_editor_read", "display_name": "DDSQL Editor Read", "description": + "View and use DDSQL Editor.", "created": "2024-10-14T13:30:22.950954+00:00", + "group_name": "DDSQL Editor", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "attributes": + {"name": "disaster_recovery_status_read", "display_name": "Datadog Disaster + Recovery Read", "description": "View the disaster recovery status.", "created": + "2024-11-01T21:30:23.309658+00:00", "group_name": "Disaster Recovery", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "attributes": {"name": "disaster_recovery_status_write", "display_name": "Datadog + Disaster Recovery Write", "description": "Update the disaster recovery status.", + "created": "2024-11-01T21:30:23.309658+00:00", "group_name": "Disaster Recovery", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "71949074-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "rum_settings_write", + "display_name": "RUM Settings Write", "description": "Write RUM Settings.", + "created": "2024-11-07T13:30:24.249160+00:00", "group_name": "Real User Monitoring", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "71957e76-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "test_optimization_read", + "display_name": "Test Optimization Read", "description": "View Test Optimization.", + "created": "2024-11-07T13:30:24.249160+00:00", "group_name": "Software Delivery", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "71958024-9d0c-11ef-a87c-da7ad0900005", "attributes": {"name": "test_optimization_write", + "display_name": "Test Optimization Write", "description": "Manage flaky tests + for Test Optimization.", "created": "2024-11-07T13:30:24.249160+00:00", "group_name": + "Software Delivery", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "attributes": + {"name": "test_optimization_settings_write", "display_name": "Test Optimization + Settings Write", "description": "Create, delete and update Test Optimization + settings.", "created": "2024-11-19T19:06:07.652237+00:00", "group_name": "Software + Delivery", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "attributes": {"name": "security_comments_write", + "display_name": "Security Comments Write", "description": "Write comments + into vulnerabilities.", "created": "2024-11-22T18:40:23.844837+00:00", "group_name": + "Cloud Security Platform", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005", "attributes": + {"name": "security_comments_read", "display_name": "Security Comments Read", + "description": "Read comments of vulnerabilities.", "created": "2024-11-22T18:40:23.844837+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "attributes": {"name": "dashboards_invite_share", "display_name": "Shared + Dashboards Invite-only Write", "description": "Create, modify and delete shared + dashboards with share type ''Invite-only''. These dashboards can only be accessed + by user-specified email addresses.", "created": "2024-12-10T19:11:49.480076+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "attributes": + {"name": "dashboards_embed_share", "display_name": "Shared Dashboards Embed + Write", "description": "Create, modify and delete shared dashboards with share + type ''Embed''. These dashboards can be embedded on user-specified domains.", + "created": "2024-12-10T19:11:49.480076+00:00", "group_name": "Dashboards", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "attributes": {"name": "embeddable_graphs_share", + "display_name": "Shared Graphs Write", "description": "Generate public links + to share embeddable graphs externally.", "created": "2024-12-10T19:11:49.480076+00:00", + "group_name": "Dashboards", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "attributes": + {"name": "logs_read_workspaces", "display_name": "Read Logs Workspaces", "description": + "View Logs Workspaces.", "created": "2024-12-11T19:21:44.137884+00:00", "group_name": + "Log Management", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "attributes": + {"name": "logs_write_workspaces", "display_name": "Write Logs Workspaces", + "description": "Create, update, and delete Logs Workspaces.", "created": "2024-12-11T19:21:44.137884+00:00", + "group_name": "Log Management", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "attributes": + {"name": "audience_management_read", "display_name": "Profiles Read", "description": + "View Audience Management data.", "created": "2025-01-07T18:36:31.392090+00:00", + "group_name": "Product Analytics", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "attributes": + {"name": "audience_management_write", "display_name": "Profiles Write", "description": + "Modify Audience Management data.", "created": "2025-01-07T18:36:31.392090+00:00", + "group_name": "Product Analytics", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005", + "attributes": {"name": "logs_read_config", "display_name": "Logs Configuration + Read", "description": "Read logs configuration.", "created": "2025-01-14T18:56:50.868001+00:00", + "group_name": "Log Management", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "9b00426a-da87-11ef-9de6-da7ad0900005", "attributes": + {"name": "on_call_read", "display_name": "On-Call Read", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "created": + "2025-01-24T19:15:42.768282+00:00", "group_name": "On-Call", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "9b00ed28-da87-11ef-9de6-da7ad0900005", + "attributes": {"name": "on_call_write", "display_name": "On-Call Write", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "created": "2025-01-24T19:15:42.768282+00:00", "group_name": "On-Call", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "attributes": {"name": "on_call_page", "display_name": "On-Call Page", "description": + "Page On-Call teams and users.", "created": "2025-01-24T19:15:42.768282+00:00", + "group_name": "On-Call", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005", "attributes": + {"name": "error_tracking_read", "display_name": "Error Tracking Read", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "created": "2025-01-30T18:51:27.197297+00:00", "group_name": "Error Tracking", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "attributes": {"name": "on_call_respond", + "display_name": "On-Call Responder", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "created": "2025-02-03T23:42:07.592356+00:00", "group_name": "On-Call", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "attributes": {"name": "process_tags_read", "display_name": "Process Tags + Read", "description": "View Process Tag Rules.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Processes", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "attributes": + {"name": "process_tags_write", "display_name": "Process Tags Write", "description": + "Create, edit and delete Process Tag Rules.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Processes", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "attributes": + {"name": "network_connections_read", "display_name": "Network Connections + Read", "description": "Read Cloud Network Connections.", "created": "2025-02-10T23:25:18.781209+00:00", + "group_name": "Cloud Network Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "attributes": {"name": "serverless_aws_instrumentation_read", "display_name": + "Serverless AWS Instrumentation Read", "description": "View remote instrumentation + configuration for serverless workloads.", "created": "2025-02-11T20:36:29.786935+00:00", + "group_name": "Serverless", "display_type": "read", "restricted": false}}, + {"type": "permissions", "id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "attributes": + {"name": "serverless_aws_instrumentation_write", "display_name": "Serverless + AWS Instrumentation Write", "description": "Add, update, and remove remote + instrumentation configuration for serverless workloads.", "created": "2025-02-11T20:36:29.786935+00:00", + "group_name": "Serverless", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "attributes": + {"name": "coterm_write", "display_name": "CoTerm Write", "description": "Write + terminal recordings.", "created": "2025-02-28T19:06:40.038336+00:00", "group_name": + "CoTerm", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "attributes": {"name": "coterm_read", + "display_name": "CoTerm Read", "description": "Read terminal recordings.", + "created": "2025-02-28T19:06:40.038336+00:00", "group_name": "CoTerm", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "attributes": {"name": "data_streams_monitoring_capture_messages", "display_name": + "Data Streams Monitoring Capture Messages", "description": "Capture messages + from Kafka topics in the Data Streams Monitoring product.", "created": "2025-03-06T18:51:28.120564+00:00", + "group_name": "Data Streams Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "db45b75e-0360-11f0-8ac3-da7ad0900005", + "attributes": {"name": "cloudcraft_read", "display_name": "Cloudcraft Read", + "description": "View infrastructure diagrams in the Cloudcraft product.", + "created": "2025-03-17T18:51:37.899118+00:00", "group_name": "Infrastructure", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "9bb09240-0fee-11f0-958c-da7ad0900005", "attributes": {"name": "ndm_device_profiles_view", + "display_name": "NDM Device Profiles View", "description": "View NDM device + profiles.", "created": "2025-04-02T18:16:33.714415+00:00", "group_name": "Network + Device Monitoring", "display_type": "read", "restricted": false}}, {"type": + "permissions", "id": "9bb09a10-0fee-11f0-958c-da7ad0900005", "attributes": + {"name": "ndm_device_profiles_edit", "display_name": "NDM Device Profiles + Edit", "description": "Edit NDM device profiles.", "created": "2025-04-02T18:16:33.714415+00:00", + "group_name": "Network Device Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "ndm_devices_read", "display_name": "NDM Read", "description": + "Read NDM data directly. Note: even without this permission, NDM data can + be retrieved via general infrastructure query APIs.", "created": "2025-04-24T21:30:24.005670+00:00", + "group_name": "Network Device Monitoring", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "ndm_device_tags_write", "display_name": "NDM Device + Tags Write", "description": "Write NDM device tags.", "created": "2025-04-24T21:30:24.005670+00:00", + "group_name": "Network Device Monitoring", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "attributes": {"name": "orchestration_workload_scaling_read", "display_name": + "Workload Scaling Read", "description": "View workload autoscaling objects + and recommendations.", "created": "2025-04-24T21:30:24.005670+00:00", "group_name": + "Orchestration", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "attributes": {"name": "bits_investigations_read", + "display_name": "Bits Investigations Read", "description": "Read Bits investigations.", + "created": "2025-04-29T18:51:50.984055+00:00", "group_name": "Bits AI", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "attributes": {"name": "sheets_read", "display_name": "Sheets Read", "description": + "View Sheets.", "created": "2025-04-30T23:15:19.683852+00:00", "group_name": + "Sheets", "display_type": "read", "restricted": false}}, {"type": "permissions", + "id": "fbf841c6-2618-11f0-8595-da7ad0900005", "attributes": {"name": "sheets_write", + "display_name": "Sheets Write", "description": "Create and change Sheets.", + "created": "2025-04-30T23:15:19.683852+00:00", "group_name": "Sheets", "display_type": + "write", "restricted": false}}, {"type": "permissions", "id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", + "attributes": {"name": "orchestration_autoscaling_manage", "display_name": + "Autoscaling Manage", "description": "Manage autoscaling cluster level configuration.", + "created": "2025-05-19T18:00:40.454044+00:00", "group_name": "Orchestration", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "12465c5e-3a5c-11f0-becd-da7ad0900005", "attributes": {"name": "code_coverage_read", + "display_name": "Code Coverage read", "description": "View Code Coverage data.", + "created": "2025-05-26T18:05:56.647000+00:00", "group_name": "Software Delivery", + "display_type": "read", "restricted": false}}, {"type": "permissions", "id": + "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "attributes": {"name": "cases_shared_settings_write", + "display_name": "Case Management Shared Settings Write", "description": "Configure + shared settings for Case Management.", "created": "2025-06-17T18:22:00.814348+00:00", + "group_name": "Case and Incident Management", "display_type": "write", "restricted": + false}}, {"type": "permissions", "id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", + "attributes": {"name": "actions_interface_run", "display_name": "Actions Interface + Run", "description": "Execute actions in the Bits AI Action Interface.", "created": + "2025-07-01T14:36:49.982499+00:00", "group_name": "App Builder & Workflow + Automation", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", "attributes": {"name": "ai_guard_evaluate", + "display_name": "AI Guard Evaluate", "description": "Evaluate AI Guard rules.", + "created": "2025-07-09T18:30:33.053855+00:00", "group_name": "Application + Security", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "attributes": {"name": "generate_ccm_report_schedules", + "display_name": "Cloud Cost Report Schedules Write", "description": "View + all report schedules and manage only the ones they''ve created.", "created": + "2025-07-10T18:40:35.388063+00:00", "group_name": "Cloud Cost Management", + "display_type": "write", "restricted": false}}, {"type": "permissions", "id": + "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "attributes": {"name": "manage_ccm_report_schedules", + "display_name": "Cloud Cost Report Schedules Manage", "description": "View, + create, and fully manage all report schedules across the organization.", "created": + "2025-07-10T18:40:35.388063+00:00", "group_name": "Cloud Cost Management", + "display_type": "write", "restricted": false}}, {"type": "roles", "id": "3032ffb8-8582-11ef-8bad-da7ad0900005", + "attributes": {"name": "Datadog Read Only Role", "managed": true, "created_at": + "2024-10-08T14:32:47.265744+00:00", "modified_at": "2024-10-08T14:32:47.266206+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": + "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", + "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": + "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", + "id": "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": + "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": + "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f33f74be-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": + "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", + "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": + "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", + "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", "id": + "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": + "permissions", "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", + "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", "id": + "3c002814-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", + "id": "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": + "35e4e288-df3b-11ef-886f-da7ad0900005"}, {"type": "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005"}, + {"type": "permissions", "id": "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": + "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, {"type": "permissions", + "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", "id": + "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", + "id": "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": + "12465c5e-3a5c-11f0-becd-da7ad0900005"}]}}}, {"type": "roles", "id": "693fe720-9569-11ef-969d-da7ad0900005", + "attributes": {"name": "Copy of Datadog Admin Role", "managed": false, "created_at": + "2024-10-28T20:15:44.156681+00:00", "modified_at": "2024-10-28T20:15:44.167199+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "505fd138-dd15-11e8-9308-afd2db62791e"}, {"type": + "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": "permissions", + "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", "id": + "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, + {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type": + "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": "permissions", + "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", "id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": "5de1e178-8536-11ea-968a-2fd9395bff90"}, + {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, {"type": + "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": "permissions", + "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", "id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": "93654d1c-e706-11ea-9a85-d320ff02824d"}, + {"type": "permissions", "id": "999bc3fa-e706-11ea-9a85-3b29fe548c19"}, {"type": + "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, {"type": "permissions", + "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": "permissions", "id": + "04668d0a-ec5c-11ea-9483-37d199df4587"}, {"type": "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, + {"type": "permissions", "id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc"}, {"type": + "permissions", "id": "04668f62-ec5c-11ea-9483-0fe541ab993f"}, {"type": "permissions", + "id": "04669020-ec5c-11ea-9483-db5dbf9f0b02"}, {"type": "permissions", "id": + "046690de-ec5c-11ea-9483-bbcd905fcdca"}, {"type": "permissions", "id": "04669192-ec5c-11ea-9483-e375d2a7bddf"}, + {"type": "permissions", "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": + "permissions", "id": "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", + "id": "8b753262-f925-11ea-82fc-93f07fd96e76"}, {"type": "permissions", "id": + "9311970e-f925-11ea-ab4d-1760e76381c1"}, {"type": "permissions", "id": "998aabac-f925-11ea-b43d-8f1f42f3894e"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "72bc07d8-1472-11eb-a97b-8bff514d7382"}, {"type": "permissions", "id": + "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, + {"type": "permissions", "id": "c1598bd4-2dce-11eb-9145-5b865e3c112e"}, {"type": + "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, {"type": "permissions", + "id": "c8654332-2dce-11eb-9145-d33d26eeb65f"}, {"type": "permissions", "id": + "d23cc894-2dce-11eb-9145-37bf7b2dadc2"}, {"type": "permissions", "id": "da1b47fc-2dce-11eb-9145-5783a37d467c"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a"}, {"type": "permissions", + "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", "id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, + {"type": "permissions", "id": "b39da144-90af-11eb-9428-da7ad0900005"}, {"type": + "permissions", "id": "b39fb79a-90af-11eb-9428-da7ad0900005"}, {"type": "permissions", + "id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "993b34d6-b16d-11eb-a891-da7ad0900005"}, + {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": "f07e4234-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, {"type": + "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": + "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "c948b30a-16c7-11ec-88cc-da7ad0900005"}, + {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, {"type": + "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", "id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005"}, {"type": "permissions", "id": "cf873174-574f-11ec-9869-da7ad0900005"}, + {"type": "permissions", "id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": + "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", + "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": + "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", "id": "f40ff7be-966b-11ec-8253-da7ad0900005"}, + {"type": "permissions", "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": + "permissions", "id": "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "2674a030-d5e9-11ec-aebc-da7ad0900005"}, {"type": + "permissions", "id": "26751d30-d5e9-11ec-aebc-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "3ad32264-f311-11ec-a058-da7ad0900005"}, {"type": "permissions", + "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": "5e83a0ca-1761-11ed-9f31-da7ad0900005"}, + {"type": "permissions", "id": "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": + "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": + "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", + "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": + "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", "id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005"}, + {"type": "permissions", "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": + "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": + "8b254e6a-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b282770-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005"}, {"type": "permissions", "id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": "81e488c0-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, {"type": + "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", "id": + "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, + {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, {"type": + "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": "permissions", + "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, + {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, {"type": + "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", + "id": "3276cf02-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": + "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", "id": "4316b75c-093f-11ee-98e9-da7ad0900005"}, + {"type": "permissions", "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": + "permissions", "id": "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", + "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, {"type": "permissions", "id": + "eadf64b2-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": "eadf675a-2199-11ee-9a0e-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "ef44613e-20d0-11ee-83e9-da7ad0900005"}, {"type": "permissions", + "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", "id": + "0fbf521c-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, + {"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": + "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", + "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": + "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", + "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}, {"type": "permissions", "id": + "f2cc9374-9841-11ee-a301-da7ad0900005"}, {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005"}, + {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, {"type": + "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", "id": + "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005"}, + {"type": "permissions", "id": "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": + "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", + "id": "48bb9ee8-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": + "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": "permissions", "id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005"}, + {"type": "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd09204-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", + "id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": + "permissions", "id": "ef950332-13a0-11ef-b582-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75066402-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "75072806-3890-11ef-bbb1-da7ad0900005"}, + {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, {"type": + "permissions", "id": "a05f8174-5410-11ef-9378-da7ad0900005"}, {"type": "permissions", + "id": "06e3004e-5987-11ef-89c3-da7ad0900005"}, {"type": "permissions", "id": + "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, + {"type": "permissions", "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": + "permissions", "id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", + "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": "permissions", "id": "7d096d86-66ec-11ef-96b3-da7ad0900005"}, + {"type": "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": + "permissions", "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", + "id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": + "83fc9760-7c51-11ef-b846-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "80ae7688-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": "71949074-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": + "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", + "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": "permissions", "id": + "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": "3c002814-a901-11ef-af48-da7ad0900005"}, + {"type": "permissions", "id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", + "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, + {"type": "permissions", "id": "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": + "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", + "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": "permissions", "id": + "35e4e288-df3b-11ef-886f-da7ad0900005"}]}}}, {"type": "roles", "id": "302b4f34-8582-11ef-b6a4-da7ad0900005", + "attributes": {"name": "Datadog Standard Role", "managed": true, "created_at": + "2024-10-08T14:32:47.215056+00:00", "modified_at": "2024-10-08T14:32:47.215828+00:00"}, + "relationships": {"permissions": {"data": [{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, + {"type": "permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": + "permissions", "id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5"}, {"type": "permissions", + "id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039"}, {"type": "permissions", "id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4"}, {"type": "permissions", "id": "505f4538-dd15-11e8-9308-47a4732f715f"}, + {"type": "permissions", "id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc"}, {"type": + "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"}, {"type": "permissions", + "id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205"}, {"type": "permissions", "id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f"}, {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, + {"type": "permissions", "id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8"}, {"type": + "permissions", "id": "d3159858-d8b2-11e9-a336-e363d6ef331b"}, {"type": "permissions", + "id": "bfafd0ce-7823-11ea-9689-c3e5118805ee"}, {"type": "permissions", "id": + "5de1e178-8536-11ea-968a-2fd9395bff90"}, {"type": "permissions", "id": "d68dc046-aa58-11ea-8f98-3f18bf50279f"}, + {"type": "permissions", "id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14"}, {"type": + "permissions", "id": "e0d31696-aa58-11ea-af96-3b02991750c9"}, {"type": "permissions", + "id": "60759a94-ff6d-11eb-a4f0-da7ad0900005"}, {"type": "permissions", "id": + "93654d1c-e706-11ea-9a85-d320ff02824d"}, {"type": "permissions", "id": "046682c4-ec5c-11ea-9483-2727954feb30"}, + {"type": "permissions", "id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a"}, {"type": + "permissions", "id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b"}, {"type": "permissions", + "id": "046692fa-ec5c-11ea-9483-d713671ea3a9"}, {"type": "permissions", "id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152"}, {"type": "permissions", "id": "9311970e-f925-11ea-ab4d-1760e76381c1"}, + {"type": "permissions", "id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb"}, {"type": + "permissions", "id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88"}, {"type": "permissions", + "id": "b6858556-f925-11ea-9222-1f47b8677b93"}, {"type": "permissions", "id": + "bd5bb850-f925-11ea-a3a2-77cbb581c92a"}, {"type": "permissions", "id": "ca8897be-f925-11ea-a3a2-d30492cbe671"}, + {"type": "permissions", "id": "cf223140-f925-11ea-a3a2-df370532bcf7"}, {"type": + "permissions", "id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee"}, {"type": "permissions", + "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions", "id": + "bcc2fb14-2dce-11eb-9145-9b27b816190a"}, {"type": "permissions", "id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5"}, + {"type": "permissions", "id": "e49aeb24-2dce-11eb-9145-6b8664bc9097"}, {"type": + "permissions", "id": "37e36580-5440-11eb-91d4-03a23fd3e1d1"}, {"type": "permissions", + "id": "f2f3d048-801f-11eb-9d41-da7ad0900005"}, {"type": "permissions", "id": + "99397470-b16d-11eb-a891-da7ad0900005"}, {"type": "permissions", "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, + {"type": "permissions", "id": "123098f2-d36c-11eb-b2bf-da7ad0900005"}, {"type": + "permissions", "id": "122f7508-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", + "id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id": + "f07e4234-e894-11eb-ab79-da7ad0900005"}, {"type": "permissions", "id": "f07f557a-e894-11eb-ab79-da7ad0900005"}, + {"type": "permissions", "id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": + "permissions", "id": "7ee7941c-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", + "id": "c94811de-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": + "c948b30a-16c7-11ec-88cc-da7ad0900005"}, {"type": "permissions", "id": "294580e0-1703-11ec-9b92-da7ad0900005"}, + {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"}, {"type": + "permissions", "id": "f5e1489a-4792-11ec-944b-da7ad0900005"}, {"type": "permissions", + "id": "cf873174-574f-11ec-9869-da7ad0900005"}, {"type": "permissions", "id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005"}, {"type": "permissions", "id": "95ea50d2-5884-11ec-8b3a-da7ad0900005"}, + {"type": "permissions", "id": "e31e0056-8502-11ec-b266-da7ad0900005"}, {"type": + "permissions", "id": "e31f0230-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", + "id": "e31e6b54-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": + "e31cca10-8502-11ec-b266-da7ad0900005"}, {"type": "permissions", "id": "e31d8e28-8502-11ec-b266-da7ad0900005"}, + {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type": + "permissions", "id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005"}, {"type": "permissions", + "id": "24d31064-b9b4-11ec-a2af-da7ad0900005"}, {"type": "permissions", "id": + "7fbc682c-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", "id": "7fbe2266-c59e-11ec-90fb-da7ad0900005"}, + {"type": "permissions", "id": "7fbd9756-c59e-11ec-90fb-da7ad0900005"}, {"type": + "permissions", "id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005"}, {"type": "permissions", + "id": "b03b5256-e5c4-11ec-a04e-da7ad0900005"}, {"type": "permissions", "id": + "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type": "permissions", "id": "f340161c-e746-11ec-87e3-da7ad0900005"}, + {"type": "permissions", "id": "f33eaf3e-e746-11ec-87e3-da7ad0900005"}, {"type": + "permissions", "id": "f42ef088-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", + "id": "f42e4c6e-173a-11ed-8654-da7ad0900005"}, {"type": "permissions", "id": + "4758d632-248a-11ed-817b-da7ad0900005"}, {"type": "permissions", "id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005"}, + {"type": "permissions", "id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005"}, {"type": + "permissions", "id": "5dedec22-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", + "id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005"}, {"type": "permissions", "id": + "c0490360-5a12-11ed-adbe-da7ad0900005"}, {"type": "permissions", "id": "c04a7614-5a12-11ed-adbe-da7ad0900005"}, + {"type": "permissions", "id": "926612da-7a4c-11ed-b809-da7ad0900005"}, {"type": + "permissions", "id": "9266e93a-7a4c-11ed-b809-da7ad0900005"}, {"type": "permissions", + "id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005"}, {"type": "permissions", "id": + "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", "id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005"}, + {"type": "permissions", "id": "8b26e284-7aff-11ed-9d0d-da7ad0900005"}, {"type": + "permissions", "id": "8b28b686-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions", + "id": "55f64460-7d61-11ed-9c36-da7ad0900005"}, {"type": "permissions", "id": + "1535624c-9771-11ed-ad25-da7ad0900005"}, {"type": "permissions", "id": "d039cfec-b44f-11ed-8db8-da7ad0900005"}, + {"type": "permissions", "id": "77ed7a00-b468-11ed-b0f0-da7ad0900005"}, {"type": + "permissions", "id": "77ed87a2-b468-11ed-b0f0-da7ad0900005"}, {"type": "permissions", + "id": "33ee9a80-ccc0-11ed-861a-da7ad0900005"}, {"type": "permissions", "id": + "81e488c0-db35-11ed-a170-da7ad0900005"}, {"type": "permissions", "id": "81e4434c-db35-11ed-a170-da7ad0900005"}, + {"type": "permissions", "id": "94c8a4da-de87-11ed-9e92-da7ad0900005"}, {"type": + "permissions", "id": "94c927e8-de87-11ed-9e92-da7ad0900005"}, {"type": "permissions", + "id": "619b2642-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": + "619b8f9c-f41b-11ed-b4e1-da7ad0900005"}, {"type": "permissions", "id": "65eea998-f6a1-11ed-9953-da7ad0900005"}, + {"type": "permissions", "id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005"}, {"type": + "permissions", "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", + "id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id": + "ace5cc0e-ff71-11ed-b518-da7ad0900005"}, {"type": "permissions", "id": "48d8ce74-0065-11ee-9c16-da7ad0900005"}, + {"type": "permissions", "id": "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": + "permissions", "id": "ffb0167e-11e1-11ee-8f46-da7ad0900005"}, {"type": "permissions", + "id": "4316826e-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", "id": + "4316b5b8-093f-11ee-98e9-da7ad0900005"}, {"type": "permissions", "id": "13a7297c-1ce3-11ee-b01a-da7ad0900005"}, + {"type": "permissions", "id": "ef44c426-20d0-11ee-83e9-da7ad0900005"}, {"type": + "permissions", "id": "eaded894-2199-11ee-9a0e-da7ad0900005"}, {"type": "permissions", + "id": "0fbf051e-271a-11ee-ab39-da7ad0900005"}, {"type": "permissions", "id": + "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": "permissions", "id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, + {"type": "permissions", "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": + "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", + "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": "permissions", "id": + "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005"}, + {"type": "permissions", "id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005"}, {"type": + "permissions", "id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005"}, {"type": "permissions", + "id": "11280c24-cce8-11ee-af00-da7ad0900005"}, {"type": "permissions", "id": + "48bb8df4-e544-11ee-93aa-da7ad0900005"}, {"type": "permissions", "id": "48bb9d1c-e544-11ee-93aa-da7ad0900005"}, + {"type": "permissions", "id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005"}, {"type": + "permissions", "id": "cccfe6c4-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "ccd05a00-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": + "ccd08d36-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", "id": "ccd09204-018e-11ef-afb6-da7ad0900005"}, + {"type": "permissions", "id": "ccd09ca4-018e-11ef-afb6-da7ad0900005"}, {"type": + "permissions", "id": "ccd09f06-018e-11ef-afb6-da7ad0900005"}, {"type": "permissions", + "id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005"}, {"type": "permissions", "id": "b4b70996-08a0-11ef-b2a8-da7ad0900005"}, + {"type": "permissions", "id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005"}, {"type": + "permissions", "id": "e120d4c0-0969-11ef-965e-da7ad0900005"}, {"type": "permissions", + "id": "21c5475c-228f-11ef-a00d-da7ad0900005"}, {"type": "permissions", "id": + "75072806-3890-11ef-bbb1-da7ad0900005"}, {"type": "permissions", "id": "a05f69c8-5410-11ef-9378-da7ad0900005"}, + {"type": "permissions", "id": "7d962a3c-6494-11ef-997a-da7ad0900005"}, {"type": + "permissions", "id": "7d9641ac-6494-11ef-997a-da7ad0900005"}, {"type": "permissions", + "id": "1d47fa88-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": + "1d47fcb8-60a3-11ef-a05a-da7ad0900005"}, {"type": "permissions", "id": "1d472d7e-60a3-11ef-a05a-da7ad0900005"}, + {"type": "permissions", "id": "7d08a48c-66ec-11ef-96b3-da7ad0900005"}, {"type": + "permissions", "id": "8e9b2142-7511-11ef-b225-da7ad0900005"}, {"type": "permissions", + "id": "b309fe04-79d5-11ef-a56c-da7ad0900005"}, {"type": "permissions", "id": + "8f8df1e2-7c14-11ef-87e0-da7ad0900005"}, {"type": "permissions", "id": "300f69c6-8114-11ef-84c0-da7ad0900005"}, + {"type": "permissions", "id": "300f81cc-8114-11ef-84c0-da7ad0900005"}, {"type": + "permissions", "id": "76e47222-8a30-11ef-8675-da7ad0900005"}, {"type": "permissions", + "id": "80adf9c4-9898-11ef-8b23-da7ad0900005"}, {"type": "permissions", "id": + "71957e76-9d0c-11ef-a87c-da7ad0900005"}, {"type": "permissions", "id": "71958024-9d0c-11ef-a87c-da7ad0900005"}, + {"type": "permissions", "id": "54f10334-a6a9-11ef-98f1-da7ad0900005"}, {"type": + "permissions", "id": "3bffdb2a-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", + "id": "3c002814-a901-11ef-af48-da7ad0900005"}, {"type": "permissions", "id": + "9b5c7a38-b72a-11ef-bb07-da7ad0900005"}, {"type": "permissions", "id": "9b5d3748-b72a-11ef-bb07-da7ad0900005"}, + {"type": "permissions", "id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005"}, {"type": + "permissions", "id": "2837cb18-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", + "id": "28395f82-b7f5-11ef-afc8-da7ad0900005"}, {"type": "permissions", "id": + "5072e504-cd26-11ef-a4d9-da7ad0900005"}, {"type": "permissions", "id": "5073050c-cd26-11ef-a4d9-da7ad0900005"}, + {"type": "permissions", "id": "5034771e-d2a9-11ef-b55e-da7ad0900005"}, {"type": + "permissions", "id": "9b00426a-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", + "id": "9b00ed28-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": + "9b010d44-da87-11ef-9de6-da7ad0900005"}, {"type": "permissions", "id": "35e4e288-df3b-11ef-886f-da7ad0900005"}, + {"type": "permissions", "id": "7ad4419a-e288-11ef-bbbc-da7ad0900005"}, {"type": + "permissions", "id": "4a6c29d6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", + "id": "4a6cadb6-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": + "4a6cc8b4-e806-11ef-8710-da7ad0900005"}, {"type": "permissions", "id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005"}, + {"type": "permissions", "id": "23f76dc4-f607-11ef-99cf-da7ad0900005"}, {"type": + "permissions", "id": "23f87c8c-f607-11ef-99cf-da7ad0900005"}, {"type": "permissions", + "id": "db45b75e-0360-11f0-8ac3-da7ad0900005"}, {"type": "permissions", "id": + "9bb09240-0fee-11f0-958c-da7ad0900005"}, {"type": "permissions", "id": "54f8b154-2153-11f0-9edc-da7ad0900005"}, + {"type": "permissions", "id": "54f96e6e-2153-11f0-9edc-da7ad0900005"}, {"type": + "permissions", "id": "54f98c32-2153-11f0-9edc-da7ad0900005"}, {"type": "permissions", + "id": "02d58f7e-252b-11f0-b39e-da7ad0900005"}, {"type": "permissions", "id": + "fbf76e2c-2618-11f0-8595-da7ad0900005"}, {"type": "permissions", "id": "fbf841c6-2618-11f0-8595-da7ad0900005"}, + {"type": "permissions", "id": "12465c5e-3a5c-11f0-becd-da7ad0900005"}, {"type": + "permissions", "id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005"}, {"type": "permissions", + "id": "d2c0335e-5688-11f0-ad5e-da7ad0900005"}, {"type": "permissions", "id": + "cc7517b0-5cf2-11f0-85d4-da7ad0900005"}, {"type": "permissions", "id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005"}]}}}], + "meta": {"page": {"total_count": 8, "total_filtered_count": 8, "max_page_size": + 1000}}}' + headers: + Content-Type: + - application/json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/roles?page%5Bnumber%5D=0&page%5Bsize%5D=100 + response: + body: + string: '{"data": [{"id": "693fe720-9569-11ef-969d-da7ad0900005", "type": "roles", + "attributes": {"created_at": "2024-10-28T20:15:44.156681Z", "created_by_handle": + "michael.richey@datadoghq.com", "modified_at": "2024-10-28T20:15:44.167199Z", + "modified_by_handle": "michael.richey@datadoghq.com", "name": "Copy of Datadog + Admin Role", "team_count": 0, "user_count": 2}, "relationships": {"permissions": + {"data": [{"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": "permissions"}, + {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": + "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", + "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions"}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": "permissions"}, + {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "type": "permissions"}, {"id": + "046690de-ec5c-11ea-9483-bbcd905fcdca", "type": "permissions"}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions"}, {"id": + "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions"}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions"}, {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": + "permissions"}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": + "c8654332-2dce-11eb-9145-d33d26eeb65f", "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", + "type": "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, + {"id": "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": + "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": "permissions"}, + {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": "permissions"}, {"id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "type": "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", + "type": "permissions"}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": + "permissions"}, {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, + {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions"}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions"}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, + {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": + "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions"}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": + "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions"}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": + "permissions"}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, + {"id": "f42ef088-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", + "type": "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": + "permissions"}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, + {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions"}, {"id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", + "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", "type": + "permissions"}, {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, + {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": "permissions"}, {"id": + "f40ff7be-966b-11ec-8253-da7ad0900005", "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions"}, + {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": + "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", + "type": "permissions"}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions"}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "type": "permissions"}, + {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": + "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", + "type": "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": "permissions"}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152", "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": + "permissions"}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, + {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005", "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions"}, {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": + "permissions"}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, + {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions"}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": + "permissions"}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, + {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": + "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", + "type": "permissions"}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions"}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, + {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions"}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions"}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, + {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", "type": "permissions"}, {"id": + "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": + "permissions"}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions"}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "ef44613e-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": + "permissions"}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", "type": "permissions"}, {"id": + "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions"}, {"id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions"}, + {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": "permissions"}, {"id": + "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions"}, {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": + "permissions"}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, + {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": + "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": + "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, + {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": + "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", + "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": "permissions"}, + {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, {"id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions"}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": + "f2f1d31a-801f-11eb-9d41-da7ad0900005", "type": "permissions"}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", + "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, + {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": + "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": "permissions"}, + {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": + "c04a7614-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions"}, {"id": "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "type": "permissions"}, + {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", "type": "permissions"}, {"id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions"}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", + "type": "permissions"}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "type": + "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": + "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", + "type": "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": + "permissions"}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": "permissions"}, + {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, {"id": + "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions"}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, + {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": + "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions"}, {"id": "83fc9760-7c51-11ef-b846-da7ad0900005", "type": + "permissions"}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, + {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions"}, {"id": + "76e47222-8a30-11ef-8675-da7ad0900005", "type": "permissions"}, {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": + "permissions"}, {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions"}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", "type": "permissions"}, {"id": + "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", + "type": "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": + "permissions"}, {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": "permissions"}, {"id": + "7d962a3c-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", + "type": "permissions"}, {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": + "permissions"}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": + "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", + "type": "permissions"}, {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": + "permissions"}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "7d9641ac-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": + "permissions"}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": + "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions"}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions"}]}}}, {"id": "3020f50c-8582-11ef-ad61-da7ad0900005", "type": + "roles", "attributes": {"created_at": "2024-10-08T14:32:47.147289Z", "managed": + true, "modified_at": "2024-10-08T14:32:47.147932Z", "name": "Datadog Admin + Role", "team_count": 0, "user_count": 7}, "relationships": {"permissions": + {"data": [{"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": "permissions"}, + {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": + "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", + "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions"}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": "permissions"}, + {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", "type": "permissions"}, {"id": + "046690de-ec5c-11ea-9483-bbcd905fcdca", "type": "permissions"}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions"}, {"id": + "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions"}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions"}, {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": + "permissions"}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": + "c8654332-2dce-11eb-9145-d33d26eeb65f", "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", + "type": "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, + {"id": "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": + "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions"}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": "permissions"}, + {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": "permissions"}, {"id": + "b39fb79a-90af-11eb-9428-da7ad0900005", "type": "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", + "type": "permissions"}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": + "permissions"}, {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, + {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions"}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions"}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, + {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": + "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions"}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": + "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions"}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions"}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": + "permissions"}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, + {"id": "f42ef088-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": + "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", + "type": "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": + "permissions"}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, + {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions"}, {"id": "4fc2807c-dd15-11e8-9308-d3bfffb7f039", + "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", "type": + "permissions"}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, {"id": + "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": "permissions"}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions"}, {"id": + "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": + "permissions"}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": "permissions"}, + {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", "type": "permissions"}, {"id": + "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": "permissions"}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", + "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions"}, + {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": "permissions"}, {"id": + "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": "permissions"}, + {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, {"id": + "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", "type": + "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, {"id": + "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", + "type": "permissions"}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", "type": + "permissions"}, {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions"}, + {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", "type": "permissions"}, {"id": + "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", "type": + "permissions"}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, + {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": + "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", + "type": "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions"}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, + {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "type": + "permissions"}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, + {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": + "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", "type": "permissions"}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", + "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": "permissions"}, + {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions"}, {"id": + "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": + "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions"}, {"id": + "80ae7688-9898-11ef-8b23-da7ad0900005", "type": "permissions"}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", + "type": "permissions"}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "75066402-3890-11ef-bbb1-da7ad0900005", "type": "permissions"}, {"id": "9d6b69dc-e21f-11ee-89d1-da7ad0900005", + "type": "permissions"}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions"}, {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, + {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "type": "permissions"}, {"id": + "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions"}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions"}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions"}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions"}, {"id": + "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions"}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, + {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions"}, {"id": + "cf873174-574f-11ec-9869-da7ad0900005", "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", + "type": "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": + "permissions"}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", "type": + "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": "permissions"}, + {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions"}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions"}, {"id": + "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions"}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": "permissions"}, {"id": + "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions"}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", "type": "permissions"}, {"id": + "48d8ce74-0065-11ee-9c16-da7ad0900005", "type": "permissions"}, {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", + "type": "permissions"}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": + "permissions"}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "type": "permissions"}, + {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, {"id": + "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", + "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": + "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions"}, + {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": "permissions"}, {"id": + "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", + "type": "permissions"}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, + {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, {"id": + "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": + "permissions"}, {"id": "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions"}, + {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": + "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": + "permissions"}, {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions"}, + {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", + "type": "permissions"}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "ccd09f06-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": + "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions"}, {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": "permissions"}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": + "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", + "type": "permissions"}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", "type": + "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, + {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, {"id": + "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, + {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, {"id": + "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", + "type": "permissions"}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, + {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "7d9641ac-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": + "permissions"}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, {"id": + "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions"}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions"}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, + {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, {"id": + "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": "permissions"}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions"}, {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions"}, + {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, {"id": + "02e65e42-fabc-11ef-a653-da7ad0900005", "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions"}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions"}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions"}, + {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": + "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions"}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", "type": + "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions"}, + {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", "type": "permissions"}, {"id": + "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions"}]}}}, {"id": + "3032ffb8-8582-11ef-8bad-da7ad0900005", "type": "roles", "attributes": {"created_at": + "2024-10-08T14:32:47.265744Z", "managed": true, "modified_at": "2024-10-08T14:32:47.266206Z", + "name": "Datadog Read Only Role", "team_count": 0, "user_count": 2}, "relationships": + {"permissions": {"data": [{"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": "permissions"}, + {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions"}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions"}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", + "type": "permissions"}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", + "type": "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": "permissions"}, + {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, {"id": + "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": "permissions"}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": "permissions"}, + {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": "permissions"}, {"id": + "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", + "type": "permissions"}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": + "permissions"}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": "permissions"}, + {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": "permissions"}, {"id": + "5de1e178-8536-11ea-968a-2fd9395bff90", "type": "permissions"}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": + "permissions"}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": + "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions"}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": + "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", + "type": "permissions"}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": "permissions"}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", + "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", "type": + "permissions"}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, + {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": + "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": "permissions"}, + {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": "permissions"}, {"id": + "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", "type": "permissions"}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": "permissions"}, {"id": + "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", + "type": "permissions"}, {"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, + {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, {"id": + "54f98c32-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "type": "permissions"}]}}}, {"id": "302b4f34-8582-11ef-b6a4-da7ad0900005", + "type": "roles", "attributes": {"created_at": "2024-10-08T14:32:47.215056Z", + "managed": true, "modified_at": "2024-10-08T14:32:47.215828Z", "name": "Datadog + Standard Role", "team_count": 0, "user_count": 3}, "relationships": {"permissions": + {"data": [{"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions"}, + {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", "type": "permissions"}, {"id": + "65eea998-f6a1-11ed-9953-da7ad0900005", "type": "permissions"}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", + "type": "permissions"}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", "type": + "permissions"}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": "permissions"}, {"id": + "9311970e-f925-11ea-ab4d-1760e76381c1", "type": "permissions"}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions"}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions"}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", "type": "permissions"}, + {"id": "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions"}, {"id": + "7fbea6aa-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "c52a6ed6-2dce-11eb-9145-1399370e8bf5", + "type": "permissions"}, {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions"}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, + {"id": "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions"}, {"id": + "926612da-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", + "type": "permissions"}, {"id": "e120d4c0-0969-11ef-965e-da7ad0900005", "type": + "permissions"}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": "permissions"}, + {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", "type": "permissions"}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions"}, {"id": "122e20a4-d36c-11eb-b2bf-da7ad0900005", + "type": "permissions"}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": + "permissions"}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": "permissions"}, + {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": "permissions"}, {"id": + "f07e4234-e894-11eb-ab79-da7ad0900005", "type": "permissions"}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", + "type": "permissions"}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", "type": + "permissions"}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, + {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions"}, {"id": + "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions"}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", + "type": "permissions"}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": + "permissions"}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": "permissions"}, + {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", "type": "permissions"}, {"id": + "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions"}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions"}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions"}, {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions"}, + {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", "type": "permissions"}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions"}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions"}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions"}, {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions"}, + {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": + "5defc9e8-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", + "type": "permissions"}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", "type": "permissions"}, + {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions"}, {"id": + "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": "permissions"}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", + "type": "permissions"}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions"}, {"id": "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions"}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions"}, {"id": + "96a0c17a-f7f8-11ea-add4-d3659d81b152", "type": "permissions"}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", + "type": "permissions"}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", "type": + "permissions"}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": "permissions"}, + {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", "type": "permissions"}, {"id": + "60759a94-ff6d-11eb-a4f0-da7ad0900005", "type": "permissions"}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions"}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions"}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": "permissions"}, + {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "04668bde-ec5c-11ea-9483-fb6cb6586c6a", "type": "permissions"}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", + "type": "permissions"}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", "type": + "permissions"}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", "type": "permissions"}, + {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", "type": "permissions"}, {"id": + "f33f74be-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", + "type": "permissions"}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": + "permissions"}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": "permissions"}, + {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": + "permissions"}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", "type": "permissions"}, + {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": "permissions"}, {"id": + "55f64460-7d61-11ed-9c36-da7ad0900005", "type": "permissions"}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions"}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", "type": "permissions"}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions"}, {"id": + "f2f3d048-801f-11eb-9d41-da7ad0900005", "type": "permissions"}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions"}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", "type": + "permissions"}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, + {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": "permissions"}, {"id": + "11280c24-cce8-11ee-af00-da7ad0900005", "type": "permissions"}, {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions"}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", "type": + "permissions"}, {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions"}, + {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", "type": "permissions"}, {"id": + "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": "permissions"}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", + "type": "permissions"}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": + "permissions"}, {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions"}, + {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": + "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": "permissions"}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", + "type": "permissions"}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions"}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", "type": "permissions"}, + {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": + "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions"}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", + "type": "permissions"}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", "type": + "permissions"}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": "permissions"}, + {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", "type": "permissions"}, {"id": + "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": "permissions"}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": + "permissions"}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": "permissions"}, + {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", "type": "permissions"}, {"id": + "e31cca10-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", + "type": "permissions"}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions"}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, + {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", "type": "permissions"}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions"}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions"}, {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": + "permissions"}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", "type": "permissions"}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions"}, {"id": + "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions"}, {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", + "type": "permissions"}, {"id": "93654d1c-e706-11ea-9a85-d320ff02824d", "type": + "permissions"}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": "permissions"}, + {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions"}, {"id": + "e31e6b54-8502-11ec-b266-da7ad0900005", "type": "permissions"}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", + "type": "permissions"}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", "type": + "permissions"}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions"}, + {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", "type": "permissions"}, {"id": + "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", + "type": "permissions"}, {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": + "permissions"}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": + "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": "permissions"}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", + "type": "permissions"}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", "type": + "permissions"}, {"id": "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, + {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions"}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions"}, {"id": "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions"}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, + {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", "type": "permissions"}, {"id": + "d039cfec-b44f-11ed-8db8-da7ad0900005", "type": "permissions"}, {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", + "type": "permissions"}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions"}, {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions"}, {"id": + "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": "permissions"}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions"}, {"id": "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": + "permissions"}, {"id": "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions"}, + {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": + "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions"}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", + "type": "permissions"}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": + "permissions"}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", "type": "permissions"}, + {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": "permissions"}, {"id": + "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions"}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", + "type": "permissions"}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions"}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, + {"id": "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions"}, {"id": + "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions"}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions"}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions"}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, + {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": "permissions"}, {"id": + "9bb09240-0fee-11f0-958c-da7ad0900005", "type": "permissions"}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", + "type": "permissions"}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": + "permissions"}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", "type": "permissions"}, + {"id": "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions"}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions"}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", + "type": "permissions"}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", "type": + "permissions"}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": "permissions"}, + {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": + "54f98c32-2153-11f0-9edc-da7ad0900005", "type": "permissions"}, {"id": "fbf76e2c-2618-11f0-8595-da7ad0900005", + "type": "permissions"}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", "type": + "permissions"}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions"}]}}}], + "meta": {"page": {"total_count": 4, "total_filtered_count": 4}}}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: GET + uri: https://api.datadoghq.eu/api/v2/permissions + response: + body: + string: '{"data": [{"id": "f1624684-d87d-11e8-acac-efb4dbffab1c", "type": "permissions", + "attributes": {"created": "2018-10-25T17:46:46.704903Z", "description": "Deprecated. + Privileged Access (also known as Admin permission) has been replaced by more + specific permissions: Access Management, Org Management, Billing Read/Write, + Usage Read/Write.", "display_name": "Privileged Access", "display_type": "other", + "group_name": "General", "name": "admin", "restricted": false}}, {"id": "f1666372-d87d-11e8-acac-6be484ba794a", + "type": "permissions", "attributes": {"created": "2018-10-25T17:46:46.73281Z", + "description": "Deprecated. Standard Access has been replaced by more specific + permissions.", "display_name": "Standard Access", "display_type": "other", + "group_name": "General", "name": "standard", "restricted": false}}, {"id": + "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.650159Z", "description": "Read log data, + possibly scoped to one or more indexes. In order to read log data, a user + must have both this permission and Logs Read Data. This permission can be + granted in a limited capacity per index from the Logs interface or APIs. If + granted via the Roles interface or API the permission has global scope. Restrictions + are limited to the Log Management product.", "display_name": "Logs Read Index + Data", "display_type": "read", "group_name": "Log Management", "name": "logs_read_index_data", + "restricted": false}}, {"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.664332Z", "description": + "Read and modify all indexes in your account. This includes the ability to + grant the Logs Read Index Data and Logs Write Exclusion Filters permission + to other roles, for some or all indexes.", "display_name": "Logs Modify Indexes", + "display_type": "write", "group_name": "Log Management", "name": "logs_modify_indexes", + "restricted": false}}, {"id": "4fbeec96-dd15-11e8-9308-d3aac44f93e5", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:23.67618Z", "description": + "View the live tail feed for all log indexes, even if otherwise specifically + restricted.", "display_name": "Logs Live Tail", "display_type": "read", "group_name": + "Log Management", "name": "logs_live_tail", "restricted": false}}, {"id": + "4fc2807c-dd15-11e8-9308-d3bfffb7f039", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.699543Z", "description": "Add and change + exclusion filters for all or some log indexes. Can be granted in a limited + capacity per index to specific roles via the Logs interface or API. If granted + from the Roles interface or API, the permission has global scope.", "display_name": + "Logs Write Exclusion Filters", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_exclusion_filters", "restricted": false}}, + {"id": "4fc43656-dd15-11e8-9308-f3e2bb5e31b4", "type": "permissions", "attributes": + {"created": "2018-10-31T14:00:23.710821Z", "description": "Add and change + log pipeline configurations, including the ability to grant the Logs Write + Processors permission to other roles, for some or all pipelines.", "display_name": + "Logs Write Pipelines", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_pipelines", "restricted": false}}, {"id": "505f4538-dd15-11e8-9308-47a4732f715f", + "type": "permissions", "attributes": {"created": "2018-10-31T14:00:24.726927Z", + "description": "Add and change some or all log processor configurations. Can + be granted in a limited capacity per pipeline to specific roles via the Logs + interface or API. If granted via the Roles interface or API the permission + has global scope.", "display_name": "Logs Write Processors", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_processors", + "restricted": false}}, {"id": "505fd138-dd15-11e8-9308-afd2db62791e", "type": + "permissions", "attributes": {"created": "2018-10-31T14:00:24.73057Z", "description": + "Add and edit Log Archives.", "display_name": "Logs Write Archives", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_archives", "restricted": + false}}, {"id": "06f715e2-aed9-11e9-aac6-eb5723c0dffc", "type": "permissions", + "attributes": {"created": "2019-07-25T12:37:55.949477Z", "description": "Create + custom metrics from logs.", "display_name": "Logs Generate Metrics", "display_type": + "write", "group_name": "Log Management", "name": "logs_generate_metrics", + "restricted": false}}, {"id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee", "type": + "permissions", "attributes": {"created": "2019-09-10T14:41:53.120685Z", "description": + "View dashboards.", "display_name": "Dashboards Read", "display_type": "read", + "group_name": "Dashboards", "name": "dashboards_read", "restricted": true}}, + {"id": "2149e512-d3d9-11e9-a614-bb8f0dcf0205", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.136336Z", "description": "Create and change + dashboards.", "display_name": "Dashboards Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_write", "restricted": false}}, + {"id": "214c10b2-d3d9-11e9-a614-3759c7ad528f", "type": "permissions", "attributes": + {"created": "2019-09-10T14:41:53.150548Z", "description": "Create, modify + and delete shared dashboards with share type ''Public''. These dashboards + can be accessed by anyone on the internet.", "display_name": "Shared Dashboards + Public Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_public_share", "restricted": false}}, {"id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d", + "type": "permissions", "attributes": {"created": "2019-09-16T18:49:59.270746Z", + "description": "View monitors.", "display_name": "Monitors Read", "display_type": + "read", "group_name": "Monitors", "name": "monitors_read", "restricted": true}}, + {"id": "cdc3e3d2-d8b2-11e9-943b-e70db6c573b8", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:07.944781Z", "description": "Edit and delete + individual monitors.", "display_name": "Monitors Write", "display_type": "write", + "group_name": "Monitors", "name": "monitors_write", "restricted": false}}, + {"id": "d3159858-d8b2-11e9-a336-e363d6ef331b", "type": "permissions", "attributes": + {"created": "2019-09-16T18:50:16.869407Z", "description": "Set downtimes to + suppress alerts from any monitor in an organization. Mute and unmute monitors. + The ability to write monitors is not required to set downtimes.", "display_name": + "Manage Downtimes", "display_type": "write", "group_name": "Monitors", "name": + "monitors_downtime", "restricted": false}}, {"id": "bfafd0ce-7823-11ea-9689-c3e5118805ee", + "type": "permissions", "attributes": {"created": "2020-04-06T16:29:12.337169Z", + "description": "Read log data. In order to read log data, a user must have + both this permission and Logs Read Index Data. This permission can be restricted + with restriction queries. Restrictions are limited to the Log Management product.", + "display_name": "Logs Read Data", "display_type": "read", "group_name": "Log + Management", "name": "logs_read_data", "restricted": false}}, {"id": "5de1e178-8536-11ea-968a-2fd9395bff90", + "type": "permissions", "attributes": {"created": "2020-04-23T07:45:13.801938Z", + "description": "Read Log Archives location and use it for rehydration.", "display_name": + "Logs Read Archives", "display_type": "read", "group_name": "Log Management", + "name": "logs_read_archives", "restricted": false}}, {"id": "d68dc046-aa58-11ea-8f98-3f18bf50279f", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:12.166762Z", + "description": "Read Detection Rules.", "display_name": "Security Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_rules_read", + "restricted": false}}, {"id": "dbd71214-aa58-11ea-8f98-d71d49bb1d14", "type": + "permissions", "attributes": {"created": "2020-06-09T13:55:21.036857Z", "description": + "Create and edit Detection Rules.", "display_name": "Security Rules Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_rules_write", "restricted": false}}, {"id": "e0d31696-aa58-11ea-af96-3b02991750c9", + "type": "permissions", "attributes": {"created": "2020-06-09T13:55:29.398066Z", + "description": "View Security Signals.", "display_name": "Security Signals + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_monitoring_signals_read", "restricted": false}}, {"id": "60759a94-ff6d-11eb-a4f0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-08-17T15:11:19.976019Z", + "description": "Modify Security Signals.", "display_name": "Security Signals + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_signals_write", "restricted": false}}, {"id": + "93654d1c-e706-11ea-9a85-d320ff02824d", "type": "permissions", "attributes": + {"created": "2020-08-25T19:10:01.692112Z", "description": "Invite other users + to your organization.", "display_name": "User Access Invite", "display_type": + "write", "group_name": "Access Management", "name": "user_access_invite", + "restricted": false}}, {"id": "999bc3fa-e706-11ea-9a85-3b29fe548c19", "type": + "permissions", "attributes": {"created": "2020-08-25T19:10:12.116164Z", "description": + "Disable users, manage user roles, manage SAML-to-role mappings, and configure + logs restriction queries.", "display_name": "User Access Manage", "display_type": + "write", "group_name": "Access Management", "name": "user_access_manage", + "restricted": false}}, {"id": "046682c4-ec5c-11ea-9483-2727954feb30", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View and manage Application Keys owned by the user.", "display_name": "User + App Keys", "display_type": "write", "group_name": "API and Application Keys", + "name": "user_app_keys", "restricted": false}}, {"id": "04668bde-ec5c-11ea-9483-fb6cb6586c6a", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View Application Keys owned by all users in the organization.", + "display_name": "Org App Keys Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "org_app_keys_read", "restricted": false}}, + {"id": "04668d0a-ec5c-11ea-9483-37d199df4587", "type": "permissions", "attributes": + {"created": "2020-09-01T14:04:14.317866Z", "description": "Manage Application + Keys owned by all users in the organization.", "display_name": "Org App Keys + Write", "display_type": "write", "group_name": "API and Application Keys", + "name": "org_app_keys_write", "restricted": false}}, {"id": "04668dd2-ec5c-11ea-9483-f7c5fcc9418b", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View, search, and use Synthetics private locations.", "display_name": + "Synthetics Private Locations Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_private_location_read", "restricted": + false}}, {"id": "04668e9a-ec5c-11ea-9483-8f29a8272bdc", "type": "permissions", + "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": "Create + and delete private locations in addition to having access to the associated + installation guidelines.", "display_name": "Synthetics Private Locations Write", + "display_type": "write", "group_name": "Synthetic Monitoring", "name": "synthetics_private_location_write", + "restricted": false}}, {"id": "04668f62-ec5c-11ea-9483-0fe541ab993f", "type": + "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", "description": + "View your organization''s subscription and payment method but not make edits.", + "display_name": "Billing Read", "display_type": "read", "group_name": "Billing + and Usage", "name": "billing_read", "restricted": false}}, {"id": "04669020-ec5c-11ea-9483-db5dbf9f0b02", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s subscription and payment method.", + "display_name": "Billing Edit", "display_type": "write", "group_name": "Billing + and Usage", "name": "billing_edit", "restricted": false}}, {"id": "046690de-ec5c-11ea-9483-bbcd905fcdca", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "View your organization''s usage and usage attribution.", "display_name": + "Usage Read", "display_type": "read", "group_name": "Billing and Usage", "name": + "usage_read", "restricted": false}}, {"id": "04669192-ec5c-11ea-9483-e375d2a7bddf", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Manage your organization''s usage attribution set-up.", "display_name": + "Usage Edit", "display_type": "write", "group_name": "Billing and Usage", + "name": "usage_edit", "restricted": false}}, {"id": "046692fa-ec5c-11ea-9483-d713671ea3a9", + "type": "permissions", "attributes": {"created": "2020-09-01T14:04:14.317866Z", + "description": "Edit and save tag configurations for custom metrics.", "display_name": + "Metric Tags Write", "display_type": "write", "group_name": "Metrics", "name": + "metric_tags_write", "restricted": false}}, {"id": "96a0c17a-f7f8-11ea-add4-d3659d81b152", + "type": "permissions", "attributes": {"created": "2020-09-16T08:42:43.92808Z", + "description": "Rehydrate logs from Archives.", "display_name": "Logs Write + Historical Views", "display_type": "write", "group_name": "Log Management", + "name": "logs_write_historical_view", "restricted": false}}, {"id": "8b753262-f925-11ea-82fc-93f07fd96e76", + "type": "permissions", "attributes": {"created": "2020-09-17T20:37:03.702585Z", + "description": "View Audit Trail in your organization.", "display_name": "Audit + Trail Read", "display_type": "read", "group_name": "Compliance", "name": "audit_logs_read", + "restricted": false}}, {"id": "9311970e-f925-11ea-ab4d-1760e76381c1", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:16.471514Z", "description": + "List and retrieve the key values of all API Keys in your organization.", + "display_name": "API Keys Read", "display_type": "read", "group_name": "API + and Application Keys", "name": "api_keys_read", "restricted": false}}, {"id": + "998aabac-f925-11ea-b43d-8f1f42f3894e", "type": "permissions", "attributes": + {"created": "2020-09-17T20:37:27.331389Z", "description": "Create and rename + API Keys for your organization.", "display_name": "API Keys Write", "display_type": + "write", "group_name": "API and Application Keys", "name": "api_keys_write", + "restricted": false}}, {"id": "a726d3bc-f925-11ea-8c05-476d8eebc4cb", "type": + "permissions", "attributes": {"created": "2020-09-17T20:37:50.165103Z", "description": + "View, search, and use Synthetics global variables.", "display_name": "Synthetics + Global Variable Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_global_variable_read", "restricted": false}}, {"id": "ae2f8fbe-f925-11ea-b51c-67ba7de17f88", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:01.96623Z", + "description": "Create, edit, and delete global variables for Synthetics.", + "display_name": "Synthetics Global Variable Write", "display_type": "write", + "group_name": "Synthetic Monitoring", "name": "synthetics_global_variable_write", + "restricted": false}}, {"id": "b6858556-f925-11ea-9222-1f47b8677b93", "type": + "permissions", "attributes": {"created": "2020-09-17T20:38:15.951574Z", "description": + "List and view configured Synthetic tests and test results.", "display_name": + "Synthetics Read", "display_type": "read", "group_name": "Synthetic Monitoring", + "name": "synthetics_read", "restricted": false}}, {"id": "bd5bb850-f925-11ea-a3a2-77cbb581c92a", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:27.421632Z", + "description": "Create, edit, and delete Synthetic tests.", "display_name": + "Synthetics Write", "display_type": "write", "group_name": "Synthetic Monitoring", + "name": "synthetics_write", "restricted": false}}, {"id": "ca8897be-f925-11ea-a3a2-d30492cbe671", + "type": "permissions", "attributes": {"created": "2020-09-17T20:38:49.527477Z", + "description": "View the default settings for Synthetic Monitoring.", "display_name": + "Synthetics Default Settings Read", "display_type": "read", "group_name": + "Synthetic Monitoring", "name": "synthetics_default_settings_read", "restricted": + false}}, {"id": "cf223140-f925-11ea-a3a2-df370532bcf7", "type": "permissions", + "attributes": {"created": "2020-09-17T20:38:57.244987Z", "description": "Edit + the default settings for Synthetic Monitoring.", "display_name": "Synthetics + Default Settings Write", "display_type": "write", "group_name": "Synthetic + Monitoring", "name": "synthetics_default_settings_write", "restricted": false}}, + {"id": "5e21e4b6-0e1c-11eb-ab24-a3d385baf4ee", "type": "permissions", "attributes": + {"created": "2020-10-14T12:54:16.607129Z", "description": "Create or edit + Log Facets.", "display_name": "Logs Write Facets", "display_type": "write", + "group_name": "Log Management", "name": "logs_write_facets", "restricted": + false}}, {"id": "72bc07d8-1472-11eb-a97b-8bff514d7382", "type": "permissions", + "attributes": {"created": "2020-10-22T14:25:34.868208Z", "description": "Create, + disable, and use Service Accounts in your organization.", "display_name": + "Service Account Write", "display_type": "write", "group_name": "Access Management", + "name": "service_account_write", "restricted": false}}, {"id": "1ad6fd30-2844-11eb-a18d-5f72a244f27a", + "type": "permissions", "attributes": {"created": "2020-11-16T19:44:13.810028Z", + "description": "Deprecated. Use the Integrations APIs to configure integrations. + In order to configure integrations from the UI, a user must also have Standard + Access.", "display_name": "Integrations API", "display_type": "other", "group_name": + "Integrations", "name": "integrations_api", "restricted": false}}, {"id": + "b7706de0-2dce-11eb-9145-775e4a0d889a", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:02.902692Z", "description": "Read and query + APM and Trace Analytics.", "display_name": "APM Read", "display_type": "read", + "group_name": "APM", "name": "apm_read", "restricted": true}}, {"id": "bcc2fb14-2dce-11eb-9145-9b27b816190a", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:11.833795Z", + "description": "Read trace retention filters. A user with this permission + can view the retention filters page, list of filters, their statistics, and + creation info.", "display_name": "APM Retention Filters Read", "display_type": + "read", "group_name": "APM", "name": "apm_retention_filter_read", "restricted": + false}}, {"id": "c1598bd4-2dce-11eb-9145-5b865e3c112e", "type": "permissions", + "attributes": {"created": "2020-11-23T20:59:19.531425Z", "description": "Create, + edit, and delete trace retention filters. A user with this permission can + create new retention filters, and update or delete to existing retention filters.", + "display_name": "APM Retention Filters Write", "display_type": "write", "group_name": + "APM", "name": "apm_retention_filter_write", "restricted": false}}, {"id": + "c52a6ed6-2dce-11eb-9145-1399370e8bf5", "type": "permissions", "attributes": + {"created": "2020-11-23T20:59:25.933546Z", "description": "Access service + ingestion pages. A user with this permission can view the service ingestion + page, list of root services, their statistics, and creation info.", "display_name": + "APM Service Ingest Read", "display_type": "read", "group_name": "APM", "name": + "apm_service_ingest_read", "restricted": false}}, {"id": "c8654332-2dce-11eb-9145-d33d26eeb65f", + "type": "permissions", "attributes": {"created": "2020-11-23T20:59:31.352238Z", + "description": "Edit service ingestion pages'' root services. A user with + this permission can edit the root service ingestion and generate a code snippet + to increase ingestion per service.", "display_name": "APM Service Ingest Write", + "display_type": "write", "group_name": "APM", "name": "apm_service_ingest_write", + "restricted": false}}, {"id": "d23cc894-2dce-11eb-9145-37bf7b2dadc2", "type": + "permissions", "attributes": {"created": "2020-11-23T20:59:47.864214Z", "description": + "Set Apdex T value on any service. A user with this permission can set the + T value from the Apdex graph on the service page.", "display_name": "APM Apdex + Manage Write", "display_type": "write", "group_name": "APM", "name": "apm_apdex_manage_write", + "restricted": false}}, {"id": "da1b47fc-2dce-11eb-9145-5783a37d467c", "type": + "permissions", "attributes": {"created": "2020-11-23T21:00:01.066421Z", "description": + "Edit second primary tag selection. A user with this permission can modify + the second primary tag dropdown in the APM settings page.", "display_name": + "APM Tag Management Write", "display_type": "write", "group_name": "APM", + "name": "apm_tag_management_write", "restricted": false}}, {"id": "e49aeb24-2dce-11eb-9145-6b8664bc9097", + "type": "permissions", "attributes": {"created": "2020-11-23T21:00:18.680068Z", + "description": "Edit the operation name value selection. A user with this + permission can modify the operation name list in the APM settings page and + the operation name controller on the service page.", "display_name": "APM + Primary Operation Write", "display_type": "write", "group_name": "APM", "name": + "apm_primary_operation_write", "restricted": false}}, {"id": "19570d26-3409-11eb-9ac2-ab9b978f6c4a", + "type": "permissions", "attributes": {"created": "2020-12-01T19:12:04.940111Z", + "description": "Configure Audit Trail in your organization.", "display_name": + "Audit Trail Write", "display_type": "write", "group_name": "Compliance", + "name": "audit_logs_write", "restricted": false}}, {"id": "37e36580-5440-11eb-91d4-03a23fd3e1d1", + "type": "permissions", "attributes": {"created": "2021-01-11T19:07:15.721075Z", + "description": "Create, edit, and delete RUM applications. Creating a RUM + application automatically generates a Client Token. In order to create Client + Tokens directly, a user needs the Client Tokens Write permission.", "display_name": + "RUM Apps Write", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_apps_write", "restricted": false}}, {"id": "f2f1d31a-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.319753Z", + "description": "Edit Dynamic Instrumentation configuration. Create or modify + Dynamic Instrumentation probes that do not capture function state.", "display_name": + "Dynamic Instrumentation Write", "display_type": "write", "group_name": "APM", + "name": "debugger_write", "restricted": false}}, {"id": "f2f3d048-801f-11eb-9d41-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-08T15:07:07.333513Z", + "description": "View Dynamic Instrumentation configuration.", "display_name": + "Dynamic Instrumentation Read", "display_type": "read", "group_name": "APM", + "name": "debugger_read", "restricted": false}}, {"id": "b39da144-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.205044Z", + "description": "View Sensitive Data Scanner configurations and scanning results.", + "display_name": "Data Scanner Read", "display_type": "read", "group_name": + "Compliance", "name": "data_scanner_read", "restricted": false}}, {"id": "b39fb79a-90af-11eb-9428-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-03-29T16:56:27.219481Z", + "description": "Edit Sensitive Data Scanner configurations.", "display_name": + "Data Scanner Write", "display_type": "write", "group_name": "Compliance", + "name": "data_scanner_write", "restricted": false}}, {"id": "841ff6cc-a45c-11eb-9fd4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-04-23T17:51:22.555499Z", + "description": "Edit org configurations, including authentication and certain + security preferences such as configuring SAML, renaming an org, configuring + allowed login methods, creating child orgs, subscribing & unsubscribing from + apps in the marketplace, and enabling & disabling Remote Configuration for + the entire organization.", "display_name": "Org Management", "display_type": + "write", "group_name": "Access Management", "name": "org_management", "restricted": + false}}, {"id": "99397470-b16d-11eb-a891-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-05-10T08:56:24.514661Z", "description": "Read + Security Filters.", "display_name": "Security Filters Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_filters_read", + "restricted": false}}, {"id": "993b34d6-b16d-11eb-a891-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-05-10T08:56:24.527411Z", "description": + "Create, edit, and delete Security Filters.", "display_name": "Security Filters + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_filters_write", "restricted": false}}, {"id": + "122e20a4-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:07.986072Z", "description": "View incidents + in Datadog.", "display_name": "Incidents Read", "display_type": "read", "group_name": + "Case and Incident Management", "name": "incident_read", "restricted": true}}, + {"id": "123098f2-d36c-11eb-b2bf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-06-22T15:11:08.003239Z", "description": "Create, view, and + manage incidents in Datadog.", "display_name": "Incidents Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "incident_write", + "restricted": false}}, {"id": "122f7508-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.995787Z", "description": + "View Incident Settings.", "display_name": "Incident Settings Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "incident_settings_read", + "restricted": false}}, {"id": "122ff9c4-d36c-11eb-b2bf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-06-22T15:11:07.999194Z", "description": + "Configure Incident Settings.", "display_name": "Incident Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_settings_write", "restricted": false}}, {"id": "f07e4234-e894-11eb-ab79-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-07-19T13:26:35.252432Z", + "description": "View Application Security Management Event Rules.", "display_name": + "Application Security Management Event Rules Read", "display_type": "read", + "group_name": "Cloud Security Platform", "name": "appsec_event_rule_read", + "restricted": false}}, {"id": "f07f557a-e894-11eb-ab79-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-07-19T13:26:35.260787Z", "description": + "Edit Application Security Management Event Rules.", "display_name": "Application + Security Management Event Rules Write", "display_type": "write", "group_name": + "Cloud Security Platform", "name": "appsec_event_rule_write", "restricted": + false}}, {"id": "7ee6e4ea-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.567371Z", "description": "View + RUM Applications data.", "display_name": "RUM Apps Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_apps_read", "restricted": + true}}, {"id": "7ee7941c-f376-11eb-a5a7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-08-02T09:46:22.572685Z", "description": "View + Session Replays.", "display_name": "RUM Session Replay Read", "display_type": + "read", "group_name": "Real User Monitoring", "name": "rum_session_replay_read", + "restricted": false}}, {"id": "c94811de-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.28807Z", "description": + "Read Notification Rules.", "display_name": "Security Notification Rules Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_notification_profiles_read", + "restricted": false}}, {"id": "c948b30a-16c7-11ec-88cc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-09-16T08:26:27.292835Z", "description": + "Create, edit, and delete Notification Rules.", "display_name": "Security + Notification Rules Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_notification_profiles_write", "restricted": + false}}, {"id": "294580e0-1703-11ec-9b92-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-09-16T15:31:28.639581Z", "description": "Create + custom metrics from spans.", "display_name": "APM Generate Metrics", "display_type": + "write", "group_name": "APM", "name": "apm_generate_metrics", "restricted": + false}}, {"id": "f5e054da-4792-11ec-944b-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-11-17T10:41:45.755009Z", "description": "Read + Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload Security + Agent Rules Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "security_monitoring_cws_agent_rules_read", "restricted": false}}, + {"id": "f5e1489a-4792-11ec-944b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2021-11-17T10:41:45.761956Z", "description": "Create, edit, and + delete Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Rules Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_monitoring_cws_agent_rules_write", "restricted": + false}}, {"id": "fc48661c-56a3-11ec-bd5c-da7ad0900005", "type": "permissions", + "attributes": {"created": "2021-12-06T14:51:25.389398Z", "description": "Add + and change APM pipeline configurations.", "display_name": "APM Pipelines Write", + "display_type": "write", "group_name": "APM", "name": "apm_pipelines_write", + "restricted": false}}, {"id": "cf873174-574f-11ec-9869-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-07T11:21:23.741014Z", "description": + "View APM pipeline configurations.", "display_name": "APM Pipelines Read", + "display_type": "read", "group_name": "APM", "name": "apm_pipelines_read", + "restricted": false}}, {"id": "95e9a5ce-5884-11ec-8b3a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2021-12-09T00:11:41.567875Z", "description": + "View pipelines in your organization.", "display_name": "Observability Pipelines + Read", "display_type": "read", "group_name": "Observability Pipelines", "name": + "observability_pipelines_read", "restricted": false}}, {"id": "95ea50d2-5884-11ec-8b3a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2021-12-09T00:11:41.572883Z", + "description": "Edit pipelines in your organization.", "display_name": "Observability + Pipelines Write", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_write", "restricted": false}}, {"id": "e31e0056-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.846399Z", + "description": "View workflows.", "display_name": "Workflows Read", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "workflows_read", + "restricted": false}}, {"id": "e31f0230-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.853003Z", "description": + "Create, edit, and delete workflows.", "display_name": "Workflows Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "workflows_write", "restricted": false}}, {"id": "e31e6b54-8502-11ec-b266-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-03T15:06:38.849099Z", + "description": "Run workflows.", "display_name": "Workflows Run", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "workflows_run", + "restricted": false}}, {"id": "e31cca10-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.837721Z", "description": + "List and view available connections. Connections contain secrets that cannot + be revealed.", "display_name": "Connections Read", "display_type": "read", + "group_name": "App Builder & Workflow Automation", "name": "connections_read", + "restricted": false}}, {"id": "e31d8e28-8502-11ec-b266-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-03T15:06:38.843395Z", "description": + "Create and delete connections.", "display_name": "Connections Write", "display_type": + "write", "group_name": "App Builder & Workflow Automation", "name": "connections_write", + "restricted": false}}, {"id": "80b47bb2-8b69-11ec-a597-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-02-11T18:36:18.877166Z", "description": + "Access all private incidents in Datadog, even when not added as a responder.", + "display_name": "Private Incidents Global Access", "display_type": "read", + "group_name": "Case and Incident Management", "name": "incidents_private_global_access", + "restricted": false}}, {"id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-03-02T18:51:33.435297Z", "description": + "View notebooks.", "display_name": "Notebooks Read", "display_type": "read", + "group_name": "Notebooks", "name": "notebooks_read", "restricted": true}}, + {"id": "c7acc6a6-9a59-11ec-9cd5-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-03-02T18:51:33.43964Z", "description": "Create and change + notebooks.", "display_name": "Notebooks Write", "display_type": "write", "group_name": + "Notebooks", "name": "notebooks_write", "restricted": false}}, {"id": "f40ff7be-966b-11ec-8253-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-02-25T18:51:34.198635Z", + "description": "Delete data from your Logs, including entire indexes.", "display_name": + "Logs Delete Data", "display_type": "write", "group_name": "Log Management", + "name": "logs_delete_data", "restricted": false}}, {"id": "24d31064-b9b4-11ec-a2af-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-11T16:26:30.469616Z", + "description": "Create custom metrics from RUM events.", "display_name": "RUM + Generate Metrics", "display_type": "write", "group_name": "Real User Monitoring", + "name": "rum_generate_metrics", "restricted": false}}, {"id": "7fbc682c-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.019179Z", + "description": "Add or remove but not edit AWS integration configurations.", + "display_name": "AWS Configurations Manage", "display_type": "write", "group_name": + "Integrations", "name": "aws_configurations_manage", "restricted": false}}, + {"id": "7fbe2266-c59e-11ec-90fb-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-04-26T20:21:48.031171Z", "description": "Add or remove but + not edit Azure integration configurations.", "display_name": "Azure Configurations + Manage", "display_type": "write", "group_name": "Integrations", "name": "azure_configurations_manage", + "restricted": false}}, {"id": "7fbd9756-c59e-11ec-90fb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-04-26T20:21:48.027662Z", "description": + "Add or remove but not edit GCP integration configurations.", "display_name": + "GCP Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configurations_manage", "restricted": false}}, {"id": "7fbea6aa-c59e-11ec-90fb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-04-26T20:21:48.034453Z", + "description": "Install, uninstall, and configure integrations.", "display_name": + "Integrations Manage", "display_type": "write", "group_name": "Integrations", + "name": "manage_integrations", "restricted": false}}, {"id": "2674a030-d5e9-11ec-aebc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-05-17T13:56:29.090665Z", + "description": "Receive notifications and view currently configured notification + settings.", "display_name": "Usage Notifications Read", "display_type": "read", + "group_name": "Billing and Usage", "name": "usage_notifications_read", "restricted": + false}}, {"id": "26751d30-d5e9-11ec-aebc-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-05-17T13:56:29.094457Z", "description": "Receive + notifications and configure notification settings.", "display_name": "Usage + Notifications Write", "display_type": "write", "group_name": "Billing and + Usage", "name": "usage_notifications_write", "restricted": false}}, {"id": + "b03b5256-e5c4-11ec-a04e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-06T18:15:47.465864Z", "description": "Schedule PDF reports + from a dashboard.", "display_name": "Dashboards Report Write", "display_type": + "write", "group_name": "Dashboards", "name": "generate_dashboard_reports", + "restricted": false}}, {"id": "f33f74be-e746-11ec-87e3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-06-08T16:20:45.638848Z", "description": + "View SLOs and status corrections.", "display_name": "SLOs Read", "display_type": + "read", "group_name": "Service Level Objectives", "name": "slos_read", "restricted": + true}}, {"id": "f340161c-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.643085Z", "description": "Create, + edit, and delete SLOs.", "display_name": "SLOs Write", "display_type": "write", + "group_name": "Service Level Objectives", "name": "slos_write", "restricted": + false}}, {"id": "f33eaf3e-e746-11ec-87e3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-06-08T16:20:45.63282Z", "description": "Apply, + edit, and delete SLO status corrections. A user with this permission can make + status corrections, even if they do not have permission to edit those SLOs.", + "display_name": "SLOs Status Corrections", "display_type": "write", "group_name": + "Service Level Objectives", "name": "slos_corrections", "restricted": false}}, + {"id": "3ad32264-f311-11ec-a058-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-06-23T16:26:26.854058Z", "description": "Create, update, + and delete monitor configuration policies.", "display_name": "Monitor Configuration + Policy Write", "display_type": "write", "group_name": "Monitors", "name": + "monitor_config_policy_write", "restricted": false}}, {"id": "f42ef088-173a-11ed-8654-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-08-08T16:55:49.060954Z", + "description": "Add, modify, and delete service catalog definitions when those + definitions are maintained by Datadog.", "display_name": "Service Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_service_catalog_write", + "restricted": false}}, {"id": "f42e4c6e-173a-11ed-8654-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T16:55:49.05593Z", "description": + "View service catalog and service definitions.", "display_name": "Service + Catalog Read", "display_type": "read", "group_name": "APM", "name": "apm_service_catalog_read", + "restricted": false}}, {"id": "5e83a0ca-1761-11ed-9f31-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-08T21:30:48.32874Z", "description": + "Add and edit forwarding destinations and rules for logs.", "display_name": + "Logs Write Forwarding Rules", "display_type": "write", "group_name": "Log + Management", "name": "logs_write_forwarding_rules", "restricted": false}}, + {"id": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-08-15T20:25:48.321553Z", "description": "Deprecated. Watchdog + Insights endpoints are now OPEN.", "display_name": "Watchdog Insights Read", + "display_type": "read", "group_name": "Watchdog", "name": "watchdog_insights_read", + "restricted": false}}, {"id": "4758d632-248a-11ed-817b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-08-25T15:26:23.943459Z", "description": + "Resolve connections.", "display_name": "Connections Resolve", "display_type": + "read", "group_name": "App Builder & Workflow Automation", "name": "connections_resolve", + "restricted": false}}, {"id": "5def2f6a-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.057166Z", "description": + "View blocked attackers.", "display_name": "Application Security Management + Protect Read", "display_type": "read", "group_name": "Cloud Security Platform", + "name": "appsec_protect_read", "restricted": false}}, {"id": "5defc9e8-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.060959Z", + "description": "Manage blocked attackers.", "display_name": "Application Security + Management Protect Write", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "appsec_protect_write", "restricted": false}}, {"id": "5dedec22-55d9-11ed-9ccb-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-10-27T09:25:59.047444Z", + "description": "View whether Application Security Management has been enabled + or disabled on services via 1-click enablement with Remote Configuration.", + "display_name": "Application Security Management 1-click Enablement Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "appsec_activation_read", + "restricted": false}}, {"id": "5dee9f64-55d9-11ed-9ccb-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-10-27T09:25:59.053394Z", "description": + "Enable or disable Application Security Management on services via 1-click + enablement.", "display_name": "Application Security Management 1-click Enablement + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_activation_write", "restricted": false}}, {"id": "c0490360-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.026179Z", + "description": "View and run Apps in App Builder.", "display_name": "Apps + View", "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_run", "restricted": false}}, {"id": "c04a7614-5a12-11ed-adbe-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-11-01T18:26:50.036655Z", + "description": "Create, edit, and delete Apps in App Builder.", "display_name": + "Apps Write", "display_type": "write", "group_name": "App Builder & Workflow + Automation", "name": "apps_write", "restricted": false}}, {"id": "926612da-7a4c-11ed-b809-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-12T18:41:21.060748Z", + "description": "View Cases.", "display_name": "Cases Read", "display_type": + "read", "group_name": "Case and Incident Management", "name": "cases_read", + "restricted": false}}, {"id": "9266e93a-7a4c-11ed-b809-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T18:41:21.06715Z", "description": + "Create and update cases.", "display_name": "Cases Write", "display_type": + "write", "group_name": "Case and Incident Management", "name": "cases_write", + "restricted": false}}, {"id": "8a79d4c2-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.723147Z", "description": + "Edit APM Remote Configuration.", "display_name": "APM Remote Configuration + Write", "display_type": "write", "group_name": "APM", "name": "apm_remote_configuration_write", + "restricted": false}}, {"id": "8a78e224-7a5a-11ed-a3ad-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-12T20:21:20.71656Z", "description": + "View APM Remote Configuration.", "display_name": "APM Remote Configuration + Read", "display_type": "read", "group_name": "APM", "name": "apm_remote_configuration_read", + "restricted": false}}, {"id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.814628Z", "description": + "View CI Visibility.", "display_name": "CI Visibility Read", "display_type": + "read", "group_name": "Software Delivery", "name": "ci_visibility_read", "restricted": + true}}, {"id": "8b276eb6-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.821529Z", "description": "Edit + flaky tests and delete Test Services.", "display_name": "CI Visibility Tests + Write", "display_type": "write", "group_name": "Software Delivery", "name": + "ci_visibility_write", "restricted": false}}, {"id": "8b254e6a-7aff-11ed-9d0d-da7ad0900005", + "type": "permissions", "attributes": {"created": "2022-12-13T16:02:28.806929Z", + "description": "Edit CI Provider settings. Manage GitHub accounts and repositories + for enabling CI Visibility and job logs collection.", "display_name": "CI + Provider Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_provider_settings_write", "restricted": false}}, {"id": + "8b26e284-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", "attributes": + {"created": "2022-12-13T16:02:28.818035Z", "description": "Configure CI Visibility + settings. Set a repository default branch, enable GitHub comments, and delete + test services.", "display_name": "CI Visibility Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "ci_visibility_settings_write", + "restricted": false}}, {"id": "8b282770-7aff-11ed-9d0d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-13T16:02:28.826271Z", "description": + "Deprecated. Enable or disable Intelligent Test Runner.", "display_name": + "Intelligent Test Runner Activation Write", "display_type": "write", "group_name": + "Software Delivery", "name": "intelligent_test_runner_activation_write", "restricted": + false}}, {"id": "8b28b686-7aff-11ed-9d0d-da7ad0900005", "type": "permissions", + "attributes": {"created": "2022-12-13T16:02:28.830112Z", "description": "Deprecated. + Edit Intelligent Test Runner settings, such as modifying ITR excluded branch + list.", "display_name": "Intelligent Test Runner Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "intelligent_test_runner_settings_write", + "restricted": false}}, {"id": "55f64460-7d61-11ed-9c36-da7ad0900005", "type": + "permissions", "attributes": {"created": "2022-12-16T16:47:32.584514Z", "description": + "View data in Continuous Profiler.", "display_name": "Continuous Profiler + Read", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_read", + "restricted": false}}, {"id": "1535624c-9771-11ed-ad25-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-01-18T20:45:46.126002Z", "description": + "Manage Teams. Create, delete, rename, and edit metadata of all Teams. To + control Team membership across all Teams, use the User Access Manage permission.", + "display_name": "Teams Manage", "display_type": "write", "group_name": "Teams", + "name": "teams_manage", "restricted": false}}, {"id": "d039cfec-b44f-11ed-8db8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-02-24T14:30:40.720618Z", + "description": "View a list of findings that include both misconfigurations + and identity risks.", "display_name": "Security Monitoring Findings Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_findings_read", + "restricted": false}}, {"id": "77ed7a00-b468-11ed-b0f0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-02-24T17:27:09.998449Z", "description": + "View Incidents Notification settings.", "display_name": "Incident Notification + Settings Read", "display_type": "read", "group_name": "Case and Incident Management", + "name": "incident_notification_settings_read", "restricted": false}}, {"id": + "77ed87a2-b468-11ed-b0f0-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-02-24T17:27:09.998449Z", "description": "Configure Incidents + Notification settings.", "display_name": "Incident Notification Settings Write", + "display_type": "write", "group_name": "Case and Incident Management", "name": + "incident_notification_settings_write", "restricted": false}}, {"id": "4129ef9a-ca2e-11ed-b1b8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-03-24T10:25:52.891502Z", + "description": "Edit CI Ingestion Control exclusion filters.", "display_name": + "CI Visibility Ingestion Control Write", "display_type": "write", "group_name": + "Software Delivery", "name": "ci_ingestion_control_write", "restricted": false}}, + {"id": "33ee9a80-ccc0-11ed-861a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-03-27T16:55:39.540192Z", "description": "Edit Error Tracking + issues.", "display_name": "Error Tracking Issue Write", "display_type": "write", + "group_name": "Error Tracking", "name": "error_tracking_write", "restricted": + false}}, {"id": "81e488c0-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Manage + Watchdog Alerts.", "display_name": "Watchdog Alerts Write", "display_type": + "write", "group_name": "Watchdog", "name": "watchdog_alerts_write", "restricted": + false}}, {"id": "81e4434c-db35-11ed-a170-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-04-15T02:30:37.731056Z", "description": "Modify + Saved Views across all Datadog products.", "display_name": "Saved Views Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "saved_views_write", + "restricted": false}}, {"id": "94c8a4da-de87-11ed-9e92-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-04-19T07:55:41.646942Z", "description": + "Read Client Tokens. Unlike API keys, client tokens may be exposed client-side + in JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Read", "display_type": "read", "group_name": + "API and Application Keys", "name": "client_tokens_read", "restricted": false}}, + {"id": "94c927e8-de87-11ed-9e92-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-04-19T07:55:41.646942Z", "description": "Create and edit + Client Tokens. Unlike API keys, client tokens may be exposed client-side in + JavaScript code for web browsers and other clients to send data to Datadog.", + "display_name": "Client Tokens Write", "display_type": "write", "group_name": + "API and Application Keys", "name": "client_tokens_write", "restricted": false}}, + {"id": "619b2642-f41b-11ed-b4e1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-16T18:56:35.71915Z", "description": "Read Event Correlation + Configuration data such as Correlation Rules and Settings.", "display_name": + "Event Correlation Config Read", "display_type": "read", "group_name": "Events", + "name": "event_correlation_config_read", "restricted": false}}, {"id": "619b8f9c-f41b-11ed-b4e1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-16T18:56:35.71915Z", + "description": "Manage Event Correlation Configuration such as Correlation + Rules and Settings.", "display_name": "Event Correlation Config Write", "display_type": + "write", "group_name": "Events", "name": "event_correlation_config_write", + "restricted": false}}, {"id": "65eea998-f6a1-11ed-9953-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-05-20T00:00:57.864864Z", "description": + "Manage general event configuration such as API Emails.", "display_name": + "Event Config Write", "display_type": "write", "group_name": "Events", "name": + "event_config_write", "restricted": false}}, {"id": "2a92b62c-f9b3-11ed-9a97-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-23T21:45:42.705754Z", + "description": "Mute CSPM Findings.", "display_name": "Security Monitoring + Findings Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "security_monitoring_findings_write", "restricted": false}}, {"id": + "3c05b450-ffe8-11ed-b4b4-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T19:20:42.284425Z", "description": "View Cloud Cost + pages and the cloud cost data source in dashboards and notebooks. For more + details, see the Cloud Cost Management docs.", "display_name": "Cloud Cost + Management Read", "display_type": "read", "group_name": "Cloud Cost Management", + "name": "cloud_cost_management_read", "restricted": false}}, {"id": "3c06647c-ffe8-11ed-b4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-05-31T19:20:42.284425Z", + "description": "Configure cloud cost accounts and global customizations. For + more details, see the Cloud Cost Management docs.", "display_name": "Cloud + Cost Management Write", "display_type": "write", "group_name": "Cloud Cost + Management", "name": "cloud_cost_management_write", "restricted": false}}, + {"id": "ace5cc0e-ff71-11ed-b518-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-05-31T05:12:01.54707Z", "description": "Add and change tags + on hosts.", "display_name": "Host Tags Write", "display_type": "write", "group_name": + "Metrics", "name": "host_tags_write", "restricted": false}}, {"id": "48d8ce74-0065-11ee-9c16-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-01T10:15:50.891463Z", + "description": "Create CI Visibility pipeline spans using the API.", "display_name": + "CI Visibility Pipelines Write", "display_type": "write", "group_name": "Software + Delivery", "name": "ci_visibility_pipelines_write", "restricted": false}}, + {"id": "3276c638-0ebe-11ee-9428-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-06-19T16:27:34.826612Z", "description": "View Quality Gate + Rules.", "display_name": "Quality Gate Rules Read", "display_type": "read", + "group_name": "Software Delivery", "name": "quality_gate_rules_read", "restricted": + false}}, {"id": "3276cf02-0ebe-11ee-9428-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-19T16:27:34.826612Z", "description": "Edit + Quality Gate Rules.", "display_name": "Quality Gate Rules Write", "display_type": + "write", "group_name": "Software Delivery", "name": "quality_gate_rules_write", + "restricted": false}}, {"id": "ffb0167e-11e1-11ee-8f46-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-06-23T16:21:25.009293Z", "description": + "Edit metadata on metrics.", "display_name": "Metrics Metadata Write", "display_type": + "write", "group_name": "Metrics", "name": "metrics_metadata_write", "restricted": + false}}, {"id": "4316b75c-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Delete + data from RUM.", "display_name": "RUM Delete Data", "display_type": "write", + "group_name": "Real User Monitoring", "name": "rum_delete_data", "restricted": + false}}, {"id": "4316826e-093f-11ee-98e9-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-06-12T16:36:20.819036Z", "description": "Update + status or assignee of vulnerabilities.", "display_name": "Vulnerability Management + Write", "display_type": "write", "group_name": "Cloud Security Platform", + "name": "appsec_vm_write", "restricted": false}}, {"id": "4316b5b8-093f-11ee-98e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-06-12T16:36:20.819036Z", + "description": "Create or modify Reference Tables.", "display_name": "Reference + Tables Write", "display_type": "write", "group_name": "Reference Tables", + "name": "reference_tables_write", "restricted": false}}, {"id": "13a7297c-1ce3-11ee-b01a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-07T16:26:50.792866Z", + "description": "Create, update, and delete RUM playlists. Add and remove sessions + from RUM playlists.", "display_name": "RUM Playlist Write", "display_type": + "write", "group_name": "Real User Monitoring", "name": "rum_playlist_write", + "restricted": false}}, {"id": "eadf64b2-2199-11ee-9a0e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", "description": + "Delete pipelines from your organization.", "display_name": "Observability + Pipelines Delete", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_delete", "restricted": false}}, {"id": "eadf675a-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Deploy pipelines in your organization.", "display_name": "Observability + Pipelines Deploy", "display_type": "write", "group_name": "Observability Pipelines", + "name": "observability_pipelines_deploy", "restricted": false}}, {"id": "ef44c426-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Create custom metrics from processes.", "display_name": "Processes + Generate Metrics", "display_type": "write", "group_name": "Processes", "name": + "processes_generate_metrics", "restricted": false}}, {"id": "ef44613e-20d0-11ee-83e9-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-12T16:27:03.457484Z", + "description": "Delete API Keys for your organization.", "display_name": "API + Keys Delete", "display_type": "write", "group_name": "API and Application + Keys", "name": "api_keys_delete", "restricted": false}}, {"id": "eaded894-2199-11ee-9a0e-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-13T16:25:44.923503Z", + "description": "Collect an Agent flare with Fleet Automation.", "display_name": + "Agent Flare Collection", "display_type": "write", "group_name": "Fleet Automation", + "name": "agent_flare_collection", "restricted": false}}, {"id": "0fbf521c-271a-11ee-ab39-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-07-20T16:25:38.185785Z", + "description": "Control which organizations can query your organization''s + data.", "display_name": "Org Connections Write", "display_type": "write", + "group_name": "Access Management", "name": "org_connections_write", "restricted": + false}}, {"id": "0fbf051e-271a-11ee-ab39-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-07-20T16:25:38.185785Z", "description": "View + which organizations can query data from your organization. Query data from + other organizations.", "display_name": "Org Connections Read", "display_type": + "read", "group_name": "Access Management", "name": "org_connections_read", + "restricted": false}}, {"id": "55769e70-2c9a-11ee-a7df-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-07-27T16:26:26.546986Z", "description": + "Manage facets for products other than Log Management, such as APM Traces. + To modify Log Facets, use Logs Write Facets.", "display_name": "Facets Write", + "display_type": "write", "group_name": "Cross-Product Features", "name": "facets_write", + "restricted": false}}, {"id": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Read Rule Suppressions.", "display_name": "Security Suppressions Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "security_monitoring_suppressions_read", + "restricted": false}}, {"id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-08-17T16:25:26.209216Z", "description": + "Write Rule Suppressions.", "display_name": "Security Suppressions Write", + "display_type": "write", "group_name": "Cloud Security Platform", "name": + "security_monitoring_suppressions_write", "restricted": false}}, {"id": "e8c17678-3de3-11ee-a66f-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-08-18T16:25:56.6885Z", + "description": "Edit Static Analysis settings.", "display_name": "Static Analysis + Settings Write", "display_type": "write", "group_name": "Software Delivery", + "name": "static_analysis_settings_write", "restricted": false}}, {"id": "94783714-4e9b-11ee-959b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-09-08T23:01:01.28513Z", + "description": "View CD Visibility.", "display_name": "CD Visibility Read", + "display_type": "read", "group_name": "Software Delivery", "name": "cd_visibility_read", + "restricted": true}}, {"id": "09a13d52-691c-11ee-b7a4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-12T16:26:03.661255Z", "description": + "Write NDM Netflow port mappings.", "display_name": "NDM Netflow Port Mappings + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_netflow_port_mappings_write", "restricted": false}}, {"id": "2de35000-69e5-11ee-996b-da7ad0900005", + "type": "permissions", "attributes": {"created": "2023-10-13T16:25:53.335225Z", + "description": "View infrastructure, application code and library vulnerabilities. + This does not restrict access to the vulnerability data source through the + API or inventory SQL.", "display_name": "Vulnerability Management Read", "display_type": + "read", "group_name": "Cloud Security Platform", "name": "appsec_vm_read", + "restricted": true}}, {"id": "54f38ef0-6f65-11ee-a094-da7ad0900005", "type": + "permissions", "attributes": {"created": "2023-10-20T16:25:50.268064Z", "description": + "Create or modify Dynamic Instrumentation probes that capture function state: + local variables, method arguments, fields, and return value or thrown exception.", + "display_name": "Dynamic Instrumentation Capture Variables", "display_type": + "write", "group_name": "APM", "name": "debugger_capture_variables", "restricted": + false}}, {"id": "f2cc9374-9841-11ee-a301-da7ad0900005", "type": "permissions", + "attributes": {"created": "2023-12-11T16:25:50.880331Z", "description": "Disable + Error Tracking, edit inclusion filters, and edit rate limit.", "display_name": + "Error Tracking Settings Write", "display_type": "write", "group_name": "Error + Tracking", "name": "error_tracking_settings_write", "restricted": false}}, + {"id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "type": "permissions", "attributes": + {"created": "2023-12-11T16:25:50.880331Z", "description": "Add or change Error + Tracking exclusion filters.", "display_name": "Error Tracking Exclusion Filters + Write", "display_type": "write", "group_name": "Error Tracking", "name": "error_tracking_exclusion_filters_write", + "restricted": false}}, {"id": "32f12a0a-ba0c-11ee-b34b-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-01-23T16:26:45.209142Z", "description": + "View integrations and their configurations.", "display_name": "Integrations + Read", "display_type": "read", "group_name": "Integrations", "name": "integrations_read", + "restricted": false}}, {"id": "bebbe3b2-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "Add, modify, and delete API catalog definitions.", "display_name": "API Catalog + Write", "display_type": "write", "group_name": "APM", "name": "apm_api_catalog_write", + "restricted": false}}, {"id": "bebb2bca-c1e7-11ee-b9dc-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-02T16:25:57.659403Z", "description": + "View API catalog and API definitions.", "display_name": "API Catalog Read", + "display_type": "read", "group_name": "APM", "name": "apm_api_catalog_read", + "restricted": false}}, {"id": "11280c24-cce8-11ee-af00-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-02-16T16:25:58.73636Z", "description": + "Create or edit trend metrics from container images.", "display_name": "Containers + Write Image Trend Metrics", "display_type": "write", "group_name": "Containers", + "name": "containers_generate_image_metrics", "restricted": false}}, {"id": + "9d6b69dc-e21f-11ee-89d1-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-14T16:26:30.797793Z", "description": "Extend the retention + of Session Replays.", "display_name": "RUM Session Replay Extend Retention", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_extend_retention", + "restricted": false}}, {"id": "48bb8df4-e544-11ee-93aa-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": + "View and search Private Action Runners for Workflow Automation and App Builder.", + "display_name": "Private Action Runner Read", "display_type": "read", "group_name": + "App Builder & Workflow Automation", "name": "on_prem_runner_read", "restricted": + false}}, {"id": "48bb9d1c-e544-11ee-93aa-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-03-18T16:26:33.583707Z", "description": "Attach + a Private Action Runner to a connection.", "display_name": "Private Action + Runner Contribute", "display_type": "write", "group_name": "App Builder & + Workflow Automation", "name": "on_prem_runner_use", "restricted": false}}, + {"id": "48bb9ee8-e544-11ee-93aa-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-03-18T16:26:33.583707Z", "description": "Create and edit + Private Action Runners for Workflow Automation and App Builder.", "display_name": + "Private Action Runner Write", "display_type": "write", "group_name": "App + Builder & Workflow Automation", "name": "on_prem_runner_write", "restricted": + false}}, {"id": "ae9c303e-f5c4-11ee-b3e7-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-04-08T16:25:58.692075Z", "description": "Edit + the settings for DORA.", "display_name": "DORA Settings Write", "display_type": + "write", "group_name": "Software Delivery", "name": "dora_settings_write", + "restricted": false}}, {"id": "fd200cf2-00c4-11ef-8aaf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-22T16:25:53.208974Z", "description": + "Upgrade Datadog Agents with Fleet Automation.", "display_name": "Agent Upgrade", + "display_type": "write", "group_name": "Fleet Automation", "name": "agent_upgrade_write", + "restricted": false}}, {"id": "cccfe6c4-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).", + "display_name": "Read Continuous Profiler Profile-Guided Optimization (PGO) + Data", "display_type": "read", "group_name": "APM", "name": "continuous_profiler_pgo_read", + "restricted": false}}, {"id": "ccd05a00-018e-11ef-afb6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", "description": + "Add or remove but not edit Oracle Cloud integration configurations.", "display_name": + "OCI Configurations Manage", "display_type": "write", "group_name": "Integrations", + "name": "oci_configurations_manage", "restricted": false}}, {"id": "ccd08d36-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit AWS integration configurations.", + "display_name": "AWS Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "aws_configuration_read", "restricted": false}}, {"id": + "ccd09204-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Azure integration configurations.", "display_name": "Azure + Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "azure_configuration_read", "restricted": false}}, {"id": "ccd09ca4-018e-11ef-afb6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-04-23T16:30:30.492439Z", + "description": "View but not add, remove, or edit GCP integration configurations.", + "display_name": "GCP Configuration Read", "display_type": "read", "group_name": + "Integrations", "name": "gcp_configuration_read", "restricted": false}}, {"id": + "ccd09f06-018e-11ef-afb6-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-04-23T16:30:30.492439Z", "description": "View but not add, + remove, or edit Oracle Cloud integration configurations.", "display_name": + "OCI Configuration Read", "display_type": "read", "group_name": "Integrations", + "name": "oci_configuration_read", "restricted": false}}, {"id": "b4b67a6c-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove AWS integration configurations.", + "display_name": "AWS Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "aws_configuration_edit", "restricted": false}}, {"id": + "b4b707b6-08a0-11ef-b2a8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-02T16:26:19.141095Z", "description": "Edit but not add + or remove Azure integration configurations.", "display_name": "Azure Configuration + Edit", "display_type": "write", "group_name": "Integrations", "name": "azure_configuration_edit", + "restricted": false}}, {"id": "b4b70996-08a0-11ef-b2a8-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", "description": + "Edit but not add or remove GCP integration configurations.", "display_name": + "GCP Configuration Edit", "display_type": "write", "group_name": "Integrations", + "name": "gcp_configuration_edit", "restricted": false}}, {"id": "b4b734a2-08a0-11ef-b2a8-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-05-02T16:26:19.141095Z", + "description": "Edit but not add or remove Oracle Cloud integration configurations.", + "display_name": "OCI Configuration Edit", "display_type": "write", "group_name": + "Integrations", "name": "oci_configuration_edit", "restricted": false}}, {"id": + "e120d4c0-0969-11ef-965e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-03T16:26:22.500447Z", "description": "View LLM Observability.", + "display_name": "LLM Observability Read", "display_type": "read", "group_name": + "LLM Observability", "name": "llm_observability_read", "restricted": false}}, + {"id": "ef950332-13a0-11ef-b582-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-05-16T16:25:40.69783Z", "description": "Manage your organization''s + flex logs configuration.", "display_name": "Flex Logs Configuration Write", + "display_type": "write", "group_name": "Log Management", "name": "flex_logs_config_write", + "restricted": false}}, {"id": "21c5475c-228f-11ef-a00d-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-06-04T16:26:01.400743Z", "description": + "View Reference Tables.", "display_name": "Reference Tables Read", "display_type": + "read", "group_name": "Reference Tables", "name": "reference_tables_read", + "restricted": false}}, {"id": "75066402-3890-11ef-bbb1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", "description": + "Create and deploy Agent configurations.", "display_name": "Agent Configuration + Management", "display_type": "write", "group_name": "Fleet Automation", "name": + "fleet_policies_write", "restricted": false}}, {"id": "75072806-3890-11ef-bbb1-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-07-02T16:30:56.156267Z", + "description": "Enable, disable and update custom resource indexing.", "display_name": + "Custom Resource Definition Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_custom_resource_definitions_write", + "restricted": false}}, {"id": "a05f69c8-5410-11ef-9378-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": + "View Code Analysis.", "display_name": "Code Analysis Read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_analysis_read", "restricted": + false}}, {"id": "a05f8174-5410-11ef-9378-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-06T16:26:25.858118Z", "description": "Enable, + disable, and configure workload autoscaling. Apply workload scaling recommendations.", + "display_name": "Workload Scaling Write", "display_type": "write", "group_name": + "Orchestration", "name": "orchestration_workload_scaling_write", "restricted": + false}}, {"id": "06e3004e-5987-11ef-89c3-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-08-13T15:16:34.275999Z", "description": "Create, + Update, and Delete LLM Observability resources including User Defined Evaluations, + OOTB Evaluations, and User Defined Topics.", "display_name": "LLM Observability + Write", "display_type": "write", "group_name": "LLM Observability", "name": + "llm_observability_write", "restricted": false}}, {"id": "7d962a3c-6494-11ef-997a-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", + "description": "View captured events of pipelines in your organization.", + "display_name": "Observability Pipelines Live Capture Read", "display_type": + "read", "group_name": "Observability Pipelines", "name": "observability_pipelines_capture_read", + "restricted": false}}, {"id": "7d9641ac-6494-11ef-997a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-27T16:50:39.669348Z", "description": + "Capture live events of pipelines in your organization.", "display_name": + "Observability Pipelines Live Capture Write", "display_type": "write", "group_name": + "Observability Pipelines", "name": "observability_pipelines_capture_write", + "restricted": false}}, {"id": "1d47fa88-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows read access to the data within the Actions Datastore.", "display_name": + "Actions Datastore Read", "display_type": "read", "group_name": "App Builder + & Workflow Automation", "name": "apps_datastore_read", "restricted": false}}, + {"id": "1d47fcb8-60a3-11ef-a05a-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-08-22T16:25:15.890147Z", "description": "Allows modification + of data within the Actions Datastore, including adding, editing, and deleting + records.", "display_name": "Actions Datastore Write", "display_type": "write", + "group_name": "App Builder & Workflow Automation", "name": "apps_datastore_write", + "restricted": false}}, {"id": "1d472d7e-60a3-11ef-a05a-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-08-22T16:25:15.890147Z", "description": + "Allows management of the Actions Datastore, including creating, updating, + and deleting the datastore itself.", "display_name": "Actions Datastore Manage", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "apps_datastore_manage", "restricted": false}}, {"id": "7d08a48c-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "View Security Pipelines.", "display_name": "Security Pipelines + Read", "display_type": "read", "group_name": "Cloud Security Platform", "name": + "security_pipelines_read", "restricted": false}}, {"id": "7d096d86-66ec-11ef-96b3-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-08-30T16:25:36.77959Z", + "description": "Create, edit, and delete Security Pipelines.", "display_name": + "Security Pipelines Write", "display_type": "write", "group_name": "Cloud + Security Platform", "name": "security_pipelines_write", "restricted": false}}, + {"id": "8e9b2142-7511-11ef-b225-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-17T16:26:13.918826Z", "description": "Create, delete + and update connection groups.", "display_name": "Connection Groups Write", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "connection_groups_write", "restricted": false}}, {"id": "b309fe04-79d5-11ef-a56c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-23T18:00:21.053557Z", + "description": "Allow quality gates evaluations.", "display_name": "Quality + Gates Evaluations", "display_type": "read", "group_name": "Software Delivery", + "name": "quality_gates_evaluations_read", "restricted": false}}, {"id": "8f8df1e2-7c14-11ef-87e0-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-09-26T14:35:22.139553Z", + "description": "Read and use connection groups.", "display_name": "Connection + Groups Read", "display_type": "read", "group_name": "App Builder & Workflow + Automation", "name": "connection_groups_read", "restricted": false}}, {"id": + "83fc9760-7c51-11ef-b846-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-09-26T21:51:42.032795Z", "description": "Managing actions + on Cloud Workload Security Agent Rules.", "display_name": "Cloud Workload + Security Agent Actions", "display_type": "write", "group_name": "Cloud Security + Platform", "name": "security_monitoring_cws_agent_rules_actions", "restricted": + false}}, {"id": "300f69c6-8114-11ef-84c0-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": "View + RUM Retention filters data.", "display_name": "RUM Retention Filters Read", + "display_type": "read", "group_name": "Real User Monitoring", "name": "rum_retention_filters_read", + "restricted": false}}, {"id": "300f81cc-8114-11ef-84c0-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-02T23:15:17.740884Z", "description": + "Write RUM Retention filters.", "display_name": "RUM Retention Filters Write", + "display_type": "write", "group_name": "Real User Monitoring", "name": "rum_retention_filters_write", + "restricted": false}}, {"id": "76e47222-8a30-11ef-8675-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-10-14T13:30:22.950954Z", "description": + "View and use DDSQL Editor.", "display_name": "DDSQL Editor Read", "display_type": + "read", "group_name": "DDSQL Editor", "name": "ddsql_editor_read", "restricted": + false}}, {"id": "80adf9c4-9898-11ef-8b23-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-11-01T21:30:23.309658Z", "description": "View + the disaster recovery status.", "display_name": "Datadog Disaster Recovery + Read", "display_type": "read", "group_name": "Disaster Recovery", "name": + "disaster_recovery_status_read", "restricted": false}}, {"id": "80ae7688-9898-11ef-8b23-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-11-01T21:30:23.309658Z", + "description": "Update the disaster recovery status.", "display_name": "Datadog + Disaster Recovery Write", "display_type": "write", "group_name": "Disaster + Recovery", "name": "disaster_recovery_status_write", "restricted": false}}, + {"id": "71949074-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Write RUM Settings.", + "display_name": "RUM Settings Write", "display_type": "write", "group_name": + "Real User Monitoring", "name": "rum_settings_write", "restricted": false}}, + {"id": "71957e76-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "View Test Optimization.", + "display_name": "Test Optimization Read", "display_type": "read", "group_name": + "Software Delivery", "name": "test_optimization_read", "restricted": false}}, + {"id": "71958024-9d0c-11ef-a87c-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-07T13:30:24.24916Z", "description": "Manage flaky tests + for Test Optimization.", "display_name": "Test Optimization Write", "display_type": + "write", "group_name": "Software Delivery", "name": "test_optimization_write", + "restricted": false}}, {"id": "54f10334-a6a9-11ef-98f1-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-19T19:06:07.652237Z", "description": + "Create, delete and update Test Optimization settings.", "display_name": "Test + Optimization Settings Write", "display_type": "write", "group_name": "Software + Delivery", "name": "test_optimization_settings_write", "restricted": false}}, + {"id": "3bffdb2a-a901-11ef-af48-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-11-22T18:40:23.844837Z", "description": "Write comments + into vulnerabilities.", "display_name": "Security Comments Write", "display_type": + "write", "group_name": "Cloud Security Platform", "name": "security_comments_write", + "restricted": false}}, {"id": "3c002814-a901-11ef-af48-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-11-22T18:40:23.844837Z", "description": + "Read comments of vulnerabilities.", "display_name": "Security Comments Read", + "display_type": "read", "group_name": "Cloud Security Platform", "name": "security_comments_read", + "restricted": false}}, {"id": "9b5c7a38-b72a-11ef-bb07-da7ad0900005", "type": + "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": + "Create, modify and delete shared dashboards with share type ''Invite-only''. + These dashboards can only be accessed by user-specified email addresses.", + "display_name": "Shared Dashboards Invite-only Write", "display_type": "write", + "group_name": "Dashboards", "name": "dashboards_invite_share", "restricted": + false}}, {"id": "9b5d3748-b72a-11ef-bb07-da7ad0900005", "type": "permissions", + "attributes": {"created": "2024-12-10T19:11:49.480076Z", "description": "Create, + modify and delete shared dashboards with share type ''Embed''. These dashboards + can be embedded on user-specified domains.", "display_name": "Shared Dashboards + Embed Write", "display_type": "write", "group_name": "Dashboards", "name": + "dashboards_embed_share", "restricted": false}}, {"id": "9b5d3bbc-b72a-11ef-bb07-da7ad0900005", + "type": "permissions", "attributes": {"created": "2024-12-10T19:11:49.480076Z", + "description": "Generate public links to share embeddable graphs externally.", + "display_name": "Shared Graphs Write", "display_type": "write", "group_name": + "Dashboards", "name": "embeddable_graphs_share", "restricted": false}}, {"id": + "2837cb18-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "View Logs Workspaces.", + "display_name": "Read Logs Workspaces", "display_type": "read", "group_name": + "Log Management", "name": "logs_read_workspaces", "restricted": false}}, {"id": + "28395f82-b7f5-11ef-afc8-da7ad0900005", "type": "permissions", "attributes": + {"created": "2024-12-11T19:21:44.137884Z", "description": "Create, update, + and delete Logs Workspaces.", "display_name": "Write Logs Workspaces", "display_type": + "write", "group_name": "Log Management", "name": "logs_write_workspaces", + "restricted": false}}, {"id": "5072e504-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "View Audience Management data.", "display_name": "Profiles Read", "display_type": + "read", "group_name": "Product Analytics", "name": "audience_management_read", + "restricted": false}}, {"id": "5073050c-cd26-11ef-a4d9-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-07T18:36:31.39209Z", "description": + "Modify Audience Management data.", "display_name": "Profiles Write", "display_type": + "write", "group_name": "Product Analytics", "name": "audience_management_write", + "restricted": false}}, {"id": "5034771e-d2a9-11ef-b55e-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-14T18:56:50.868001Z", "description": + "Read logs configuration.", "display_name": "Logs Configuration Read", "display_type": + "read", "group_name": "Log Management", "name": "logs_read_config", "restricted": + false}}, {"id": "9b00426a-da87-11ef-9de6-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": "View + On-Call teams, schedules, escalation policies and overrides.", "display_name": + "On-Call Read", "display_type": "read", "group_name": "On-Call", "name": "on_call_read", + "restricted": false}}, {"id": "9b00ed28-da87-11ef-9de6-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", "description": + "Create, update, and delete On-Call teams, schedules and escalation policies.", + "display_name": "On-Call Write", "display_type": "write", "group_name": "On-Call", + "name": "on_call_write", "restricted": false}}, {"id": "9b010d44-da87-11ef-9de6-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-01-24T19:15:42.768282Z", + "description": "Page On-Call teams and users.", "display_name": "On-Call Page", + "display_type": "write", "group_name": "On-Call", "name": "on_call_page", + "restricted": false}}, {"id": "35e4e288-df3b-11ef-886f-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-01-30T18:51:27.197297Z", "description": + "View Error Tracking data, including stack traces, error messages, and context. + Also includes issue classifications and statuses such as For Review and Reviewed.", + "display_name": "Error Tracking Read", "display_type": "read", "group_name": + "Error Tracking", "name": "error_tracking_read", "restricted": false}}, {"id": + "7ad4419a-e288-11ef-bbbc-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-03T23:42:07.592356Z", "description": "Acknowledge, resolve + pages and edit overrides. Allow users to configure their On-Call profile.", + "display_name": "On-Call Responder", "display_type": "write", "group_name": + "On-Call", "name": "on_call_respond", "restricted": false}}, {"id": "4a6c29d6-e806-11ef-8710-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", + "description": "View Process Tag Rules.", "display_name": "Process Tags Read", + "display_type": "read", "group_name": "Processes", "name": "process_tags_read", + "restricted": false}}, {"id": "4a6cadb6-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Create, edit and delete Process Tag Rules.", "display_name": "Process Tags + Write", "display_type": "write", "group_name": "Processes", "name": "process_tags_write", + "restricted": false}}, {"id": "4a6cc8b4-e806-11ef-8710-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-10T23:25:18.781209Z", "description": + "Read Cloud Network Connections.", "display_name": "Network Connections Read", + "display_type": "read", "group_name": "Cloud Network Monitoring", "name": + "network_connections_read", "restricted": false}}, {"id": "df7c0ce2-e8b7-11ef-a4b4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", + "description": "View remote instrumentation configuration for serverless workloads.", + "display_name": "Serverless AWS Instrumentation Read", "display_type": "read", + "group_name": "Serverless", "name": "serverless_aws_instrumentation_read", + "restricted": false}}, {"id": "df7cae4a-e8b7-11ef-a4b4-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-11T20:36:29.786935Z", "description": + "Add, update, and remove remote instrumentation configuration for serverless + workloads.", "display_name": "Serverless AWS Instrumentation Write", "display_type": + "write", "group_name": "Serverless", "name": "serverless_aws_instrumentation_write", + "restricted": false}}, {"id": "23f76dc4-f607-11ef-99cf-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-02-28T19:06:40.038336Z", "description": + "Write terminal recordings.", "display_name": "CoTerm Write", "display_type": + "write", "group_name": "CoTerm", "name": "coterm_write", "restricted": false}}, + {"id": "23f87c8c-f607-11ef-99cf-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-02-28T19:06:40.038336Z", "description": "Read terminal recordings.", + "display_name": "CoTerm Read", "display_type": "read", "group_name": "CoTerm", + "name": "coterm_read", "restricted": false}}, {"id": "02e65e42-fabc-11ef-a653-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-03-06T18:51:28.120564Z", + "description": "Capture messages from Kafka topics in the Data Streams Monitoring + product.", "display_name": "Data Streams Monitoring Capture Messages", "display_type": + "write", "group_name": "Data Streams Monitoring", "name": "data_streams_monitoring_capture_messages", + "restricted": false}}, {"id": "db45b75e-0360-11f0-8ac3-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-03-17T18:51:37.899118Z", "description": + "View infrastructure diagrams in the Cloudcraft product.", "display_name": + "Cloudcraft Read", "display_type": "read", "group_name": "Infrastructure", + "name": "cloudcraft_read", "restricted": false}}, {"id": "9bb09240-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "View NDM device profiles.", "display_name": "NDM Device Profiles + View", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_view", "restricted": false}}, {"id": "9bb09a10-0fee-11f0-958c-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-02T18:16:33.714415Z", + "description": "Edit NDM device profiles.", "display_name": "NDM Device Profiles + Edit", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_profiles_edit", "restricted": false}}, {"id": "54f8b154-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Read NDM data directly. Note: even without this permission, + NDM data can be retrieved via general infrastructure query APIs.", "display_name": + "NDM Read", "display_type": "read", "group_name": "Network Device Monitoring", + "name": "ndm_devices_read", "restricted": false}}, {"id": "54f96e6e-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "Write NDM device tags.", "display_name": "NDM Device Tags + Write", "display_type": "write", "group_name": "Network Device Monitoring", + "name": "ndm_device_tags_write", "restricted": false}}, {"id": "54f98c32-2153-11f0-9edc-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-24T21:30:24.00567Z", + "description": "View workload autoscaling objects and recommendations. Note: + This permission is in Preview Mode and will be enforced soon.", "display_name": + "Workload Scaling Read (Preview)", "display_type": "read", "group_name": "Orchestration", + "name": "orchestration_workload_scaling_read", "restricted": false}}, {"id": + "02d58f7e-252b-11f0-b39e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-29T18:51:50.984055Z", "description": "Read Bits investigations. + Note: This permission is in Preview Mode and will be enforced soon.", "display_name": + "Bits Investigations Read (Preview)", "display_type": "read", "group_name": + "Bits AI", "name": "bits_investigations_read", "restricted": false}}, {"id": + "fbf76e2c-2618-11f0-8595-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-04-30T23:15:19.683852Z", "description": "View Sheets.", + "display_name": "Sheets Read", "display_type": "read", "group_name": "Sheets", + "name": "sheets_read", "restricted": false}}, {"id": "fbf841c6-2618-11f0-8595-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-04-30T23:15:19.683852Z", + "description": "Create and change Sheets.", "display_name": "Sheets Write", + "display_type": "write", "group_name": "Sheets", "name": "sheets_write", "restricted": + false}}, {"id": "2cead6ec-34db-11f0-9eb2-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-05-19T18:00:40.454044Z", "description": "Manage + autoscaling cluster level configuration.", "display_name": "Autoscaling Manage", + "display_type": "write", "group_name": "Orchestration", "name": "orchestration_autoscaling_manage", + "restricted": false}}, {"id": "12465c5e-3a5c-11f0-becd-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-05-26T18:05:56.647Z", "description": + "View Code Coverage data.", "display_name": "Code Coverage read", "display_type": + "read", "group_name": "Software Delivery", "name": "code_coverage_read", "restricted": + false}}, {"id": "f60d1eb2-4ba7-11f0-9459-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-06-17T18:22:00.814348Z", "description": "Configure + shared settings for Case Management.", "display_name": "Case Management Shared + Settings Write", "display_type": "write", "group_name": "Case and Incident + Management", "name": "cases_shared_settings_write", "restricted": false}}, + {"id": "d2c0335e-5688-11f0-ad5e-da7ad0900005", "type": "permissions", "attributes": + {"created": "2025-07-01T14:36:49.982499Z", "description": "Execute actions + in the Bits AI Action Interface.", "display_name": "Actions Interface Run", + "display_type": "write", "group_name": "App Builder & Workflow Automation", + "name": "actions_interface_run", "restricted": false}}, {"id": "cc7517b0-5cf2-11f0-85d4-da7ad0900005", + "type": "permissions", "attributes": {"created": "2025-07-09T18:30:33.053855Z", + "description": "Evaluate AI Guard rules.", "display_name": "AI Guard Evaluate", + "display_type": "write", "group_name": "Application Security", "name": "ai_guard_evaluate", + "restricted": false}}, {"id": "5de3ca8c-5dbd-11f0-b0ef-da7ad0900005", "type": + "permissions", "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": + "View all report schedules and manage only the ones they''ve created.", "display_name": + "Cloud Cost Report Schedules Write", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "generate_ccm_report_schedules", "restricted": + false}}, {"id": "5de41cf8-5dbd-11f0-b0ef-da7ad0900005", "type": "permissions", + "attributes": {"created": "2025-07-10T18:40:35.388063Z", "description": "View, + create, and fully manage all report schedules across the organization.", "display_name": + "Cloud Cost Report Schedules Manage", "display_type": "write", "group_name": + "Cloud Cost Management", "name": "manage_ccm_report_schedules", "restricted": + false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: + code: 200 + message: OK +- request: + body: null + headers: + Content-Type: + - application/json + method: DELETE + uri: https://api.us5.datadoghq.com/api/v2/rum/applications/76b6b549-c24e-43bf-bf9b-d6007377c6b5 + response: + body: + string: '' + headers: {} + status: + code: 204 + message: No Content +version: 1 diff --git a/tests/integration/resources/test_rum_applications.py b/tests/integration/resources/test_rum_applications.py new file mode 100644 index 000000000..511f3dbda --- /dev/null +++ b/tests/integration/resources/test_rum_applications.py @@ -0,0 +1,12 @@ +# Unless explicitly stated otherwise all files in this repository are licensed +# under the 3-clause BSD style license (see LICENSE). +# This product includes software developed at Datadog (https://www.datadoghq.com/). +# Copyright 2019 Datadog, Inc. + +from tests.integration.helpers import BaseResourcesTestClass +from datadog_sync.models import RUMApplications + + +class TestRUMApplicationsResources(BaseResourcesTestClass): + resource_type = RUMApplications.resource_type + field_to_update = "attributes.name"