diff --git a/datadog_sync/model/incidents.py b/datadog_sync/model/incidents.py
new file mode 100644
index 00000000..cb8710dd
--- /dev/null
+++ b/datadog_sync/model/incidents.py
@@ -0,0 +1,136 @@
+# 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, cast
+
+from datadog_sync.utils.base_resource import BaseResource, ResourceConfig
+from datadog_sync.utils.custom_client import PaginationConfig
+
+if TYPE_CHECKING:
+ from datadog_sync.utils.custom_client import CustomClient
+
+
+class Incidents(BaseResource):
+ resource_type = "incidents"
+ resource_config = ResourceConfig(
+ resource_connections={
+ "users": [
+ "relationships.commander_user.data.id",
+ ]
+ },
+ base_path="/api/v2/incidents",
+ excluded_attributes=[
+ "id",
+ "attributes.public_id",
+ "attributes.commander",
+ "attributes.last_modified_by",
+ "attributes.last_modified_by_uuid",
+ "attributes.created",
+ "attributes.modified",
+ "attributes.created_by",
+ "attributes.created_by_uuid",
+ "attributes.notification_handles",
+ "attributes.time_to_resolve",
+ "attributes.customer_impact_duration",
+ "attributes.time_to_internal_response",
+ "attributes.resolved",
+ "relationships.created_by_user",
+ "relationships.last_modified_by_user",
+ "relationships.user_defined_fields",
+ "relationships.integrations",
+ "relationships.attachments",
+ "relationships.responders",
+ "relationships.impacts",
+ ],
+ non_nullable_attr=[
+ "attributes.creation_idempotency_key",
+ "attributes.customer_impact_scope",
+ ],
+ )
+ # Additional Incidents specific attributes
+ pagination_config = PaginationConfig(
+ page_size=100,
+ page_number_param="page[offset]",
+ page_size_param="page[size]",
+ # this endpoint uses offset (number of items) instead of page number, workaround the paginated client by reusing
+ # `page_number` to store offset instead (computed here because we don't have `resp`)
+ page_number_func=lambda idx, page_size, page_number: page_size * (idx + 1),
+ # just return 1, the pagination loop already handles breaking when a page is smaller than page size
+ remaining_func=lambda *args: 1,
+ )
+
+ def get_resources(self, client: CustomClient) -> List[Dict]:
+
+ resp = client.paginated_request(client.get)(
+ self.resource_config.base_path, pagination_config=self.pagination_config
+ )
+
+ return resp
+
+ def import_resource(self, _id: Optional[str] = None, resource: Optional[Dict] = None) -> None:
+ if _id:
+ source_client = self.config.source_client
+ resource = source_client.get(self.resource_config.base_path + f"/{_id}").json()["data"]
+
+ resource = cast(dict, resource)
+
+ # it's the new default imposed by the api; forcing it here so we don't have a forever-diff
+ if "visibility" in resource["attributes"] and resource["attributes"]["visibility"] is None:
+ resource["attributes"]["visibility"] = "organization"
+
+ # let's do some deepomatic-specific incidents fields migrations:
+ if (
+ "Namespace" in resource["attributes"]["fields"]
+ and resource["attributes"]["fields"]["Namespace"]["value"] is not None
+ and "kube_namespace" in resource["attributes"]["fields"]
+ and resource["attributes"]["fields"]["kube_namespace"]["value"] is None
+ ):
+ resource["attributes"]["fields"]["kube_namespace"]["value"] = resource["attributes"]["fields"]["Namespace"][
+ "value"
+ ]
+ resource["attributes"]["fields"]["Namespace"]["value"] = None
+
+ self.resource_config.source_resources[resource["id"]] = resource
+
+ def pre_resource_action_hook(self, _id, resource: Dict) -> None:
+ pass
+
+ def pre_apply_hook(self) -> None:
+ pass
+
+ def create_resource(self, _id: str, resource: Dict) -> None:
+ destination_client = self.config.destination_client
+ payload = {"data": resource}
+ resp = destination_client.post(
+ self.resource_config.base_path,
+ payload,
+ ).json()
+
+ self.resource_config.destination_resources[_id] = resp["data"]
+
+ # create doesn't accept everything right away, e.g. attributes.resolved;
+ # follow the create by an update to sync more data
+ self.update_resource(_id, resource)
+
+ def update_resource(self, _id: str, resource: Dict) -> None:
+ destination_client = self.config.destination_client
+ payload = {"data": resource}
+
+ resp = destination_client.patch(
+ self.resource_config.base_path + f"/{self.resource_config.destination_resources[_id]['id']}",
+ payload,
+ ).json()
+
+ self.resource_config.destination_resources[_id] = resp["data"]
+
+ def delete_resource(self, _id: str) -> None:
+ destination_client = self.config.destination_client
+ destination_client.delete(
+ self.resource_config.base_path + f"/{self.resource_config.destination_resources[_id]['id']}"
+ )
+
+ def connect_id(self, key: str, r_obj: Dict, resource_to_connect: str) -> Optional[List[str]]:
+ return super(Incidents, self).connect_id(key, r_obj, resource_to_connect)
diff --git a/datadog_sync/models/__init__.py b/datadog_sync/models/__init__.py
index 07e99fe1..7387b040 100644
--- a/datadog_sync/models/__init__.py
+++ b/datadog_sync/models/__init__.py
@@ -4,6 +4,7 @@
# Copyright 2019 Datadog, Inc.
# ruff: noqa
+from datadog_sync.model.incidents import Incidents
from datadog_sync.model.roles import Roles
from datadog_sync.model.users import Users
from datadog_sync.model.dashboards import Dashboards
diff --git a/tests/integration/cassettes/test_cli/TestCli.test_cleanup.frozen b/tests/integration/cassettes/test_cli/TestCli.test_cleanup.frozen
index 251bbdfb..e764fd7b 100644
--- a/tests/integration/cassettes/test_cli/TestCli.test_cleanup.frozen
+++ b/tests/integration/cassettes/test_cli/TestCli.test_cleanup.frozen
@@ -1 +1 @@
-2023-12-19T16:54:00.563669+00:00
\ No newline at end of file
+2023-12-26T19:38:11.651915+00:00
\ No newline at end of file
diff --git a/tests/integration/cassettes/test_cli/TestCli.test_cleanup.yaml b/tests/integration/cassettes/test_cli/TestCli.test_cleanup.yaml
index ac10da14..df5a2480 100644
--- a/tests/integration/cassettes/test_cli/TestCli.test_cleanup.yaml
+++ b/tests/integration/cassettes/test_cli/TestCli.test_cleanup.yaml
@@ -9,204 +9,141 @@ interactions:
Content-Type:
- application/json
method: GET
- uri: https://api.datadoghq.com/api/v2/roles?page%5Bnumber%5D=0&page%5Bsize%5D=100
+ uri: https://api.datadoghq.com/api/v2/users?page%5Bnumber%5D=0&page%5Bsize%5D=100
response:
body:
- string: '{"data": [{"type": "roles", "id": "fa017a35-bfcb-11eb-a4d7-da7ad0900002",
- "attributes": {"name": "Datadog Admin Role", "created_at": "2021-05-28T15:47:15.884751+00:00",
- "modified_at": "2023-03-22T20:42:59.038042+00:00", "user_count": 5}, "relationships":
- {"permissions": {"data": [{"type": "permissions", "id": "984d2f00-d3b4-11e8-a200-bb47109e9987"},
- {"type": "permissions", "id": "5e605652-dd12-11e8-9e53-375565b8970e"}, {"type":
- "permissions", "id": "62cc036c-dd12-11e8-9e54-db9995643092"}, {"type": "permissions",
- "id": "6f66600e-dd12-11e8-9e55-7f30fbb45e73"}, {"type": "permissions", "id":
- "7d7c98ac-dd12-11e8-9e56-93700598622d"}, {"type": "permissions", "id": "811ac4ca-dd12-11e8-9e57-676a7f0beef9"},
- {"type": "permissions", "id": "84aa3ae4-dd12-11e8-9e58-a373a514ccd0"}, {"type":
- "permissions", "id": "87b00304-dd12-11e8-9e59-cbeb5f71f72f"}, {"type": "permissions",
- "id": "979df720-aed7-11e9-99c6-a7eb8373165a"}, {"type": "permissions", "id":
- "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id": "d90f6831-d3d8-11e9-a77a-4fd230ddbc6a"},
- {"type": "permissions", "id": "d90f6832-d3d8-11e9-a77a-bf8a2607f864"}, {"type":
- "permissions", "id": "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions",
- "id": "48ef71ea-d8b1-11e9-a77a-93f408470ad0"}, {"type": "permissions", "id":
- "4d87d5f8-d8b1-11e9-a77a-eb9c8350d04f"}, {"type": "permissions", "id": "1af86ce4-7823-11ea-93dc-d7cad1b1c6cb"},
- {"type": "permissions", "id": "b382b982-8535-11ea-93de-2bf1bdf20798"}, {"type":
- "permissions", "id": "7314eb20-aa58-11ea-95e2-6fb6e4a451d5"}, {"type": "permissions",
- "id": "7b516476-aa58-11ea-95e2-93718cd56369"}, {"type": "permissions", "id":
- "80de1ec0-aa58-11ea-95e2-aff381626d5d"}, {"type": "permissions", "id": "58b412cc-ff6d-11eb-bc9c-da7ad0900002"},
- {"type": "permissions", "id": "9ac1d8cc-e707-11ea-aa2d-73d37e989a9d"}, {"type":
- "permissions", "id": "9de604d8-e707-11ea-aa2d-93f1a783b3a3"}, {"type": "permissions",
- "id": "46a301da-ec5c-11ea-aa9f-73bedeab67ee"}, {"type": "permissions", "id":
- "46a301db-ec5c-11ea-aa9f-2fe72193d60e"}, {"type": "permissions", "id": "46a301dc-ec5c-11ea-aa9f-13b33f8f46ea"},
- {"type": "permissions", "id": "46a301dd-ec5c-11ea-aa9f-97edfb345bc9"}, {"type":
- "permissions", "id": "46a301de-ec5c-11ea-aa9f-a73252c24806"}, {"type": "permissions",
- "id": "46a301df-ec5c-11ea-aa9f-970a9ae645e5"}, {"type": "permissions", "id":
- "46a301e0-ec5c-11ea-aa9f-6ba6cc675d8c"}, {"type": "permissions", "id": "46a301e1-ec5c-11ea-aa9f-afa39f6f3e36"},
- {"type": "permissions", "id": "46a301e2-ec5c-11ea-aa9f-1f511b7305fd"}, {"type":
- "permissions", "id": "46a301e4-ec5c-11ea-aa9f-87282b3a50cc"}, {"type": "permissions",
- "id": "07c3c146-f7f8-11ea-acf6-0bd62b9ae60e"}, {"type": "permissions", "id":
- "2fbdac76-f923-11ea-adbc-07f3823e2b43"}, {"type": "permissions", "id": "372896c4-f923-11ea-adbc-4fecd107156d"},
- {"type": "permissions", "id": "3e4d4d28-f923-11ea-adbc-e3565938c12e"}, {"type":
- "permissions", "id": "4628ca54-f923-11ea-adbc-4b2b7f88c5e9"}, {"type": "permissions",
- "id": "4ada6e36-f923-11ea-adbc-0788e5c5e3cf"}, {"type": "permissions", "id":
- "5025ee24-f923-11ea-adbc-576ea241df8d"}, {"type": "permissions", "id": "55f4b5ec-f923-11ea-adbc-1bfa2334a755"},
- {"type": "permissions", "id": "5c6b88e2-f923-11ea-adbc-abf57d079420"}, {"type":
- "permissions", "id": "642eebe6-f923-11ea-adbc-eb617674ea04"}, {"type": "permissions",
- "id": "6ba32d22-0e1a-11eb-ba44-bf9a5aafaa39"}, {"type": "permissions", "id":
- "a42e94b2-1476-11eb-bd08-efda28c04248"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
- {"type": "permissions", "id": "43fa188e-2dce-11eb-84c0-835ad1fd6287"}, {"type":
- "permissions", "id": "465cfe66-2dce-11eb-84c0-6baa888239fa"}, {"type": "permissions",
- "id": "4916eebe-2dce-11eb-84c0-271cb2c672e8"}, {"type": "permissions", "id":
- "4e3f02b4-2dce-11eb-84c0-2fca946a6efc"}, {"type": "permissions", "id": "53950c54-2dce-11eb-84c0-a79ae108f6f8"},
- {"type": "permissions", "id": "5cbe5f9c-2dce-11eb-84c0-872d3e9f1076"}, {"type":
- "permissions", "id": "61765026-2dce-11eb-84c0-833e230d1b8f"}, {"type": "permissions",
- "id": "04bc1cf2-340a-11eb-873a-43b973c760dd"}, {"type": "permissions", "id":
- "8106300a-54f7-11eb-8cbc-7781a434a67b"}, {"type": "permissions", "id": "edfd5e74-801f-11eb-96d8-da7ad0900002"},
- {"type": "permissions", "id": "edfd5e75-801f-11eb-96d8-da7ad0900002"}, {"type":
- "permissions", "id": "bf0dcf7c-90af-11eb-9b82-da7ad0900002"}, {"type": "permissions",
- "id": "bf0dcf7d-90af-11eb-9b82-da7ad0900002"}, {"type": "permissions", "id":
- "7df222b6-a45c-11eb-a0af-da7ad0900002"}, {"type": "permissions", "id": "98b984f4-b16d-11eb-a2c6-da7ad0900002"},
- {"type": "permissions", "id": "98b984f5-b16d-11eb-a2c6-da7ad0900002"}, {"type":
- "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions",
- "id": "12efc211-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id":
- "12efc20f-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id": "12efc210-d36c-11eb-a9b8-da7ad0900002"},
- {"type": "permissions", "id": "97971c1c-e895-11eb-b13c-da7ad0900002"}, {"type":
- "permissions", "id": "97971c1d-e895-11eb-b13c-da7ad0900002"}, {"type": "permissions",
- "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions", "id":
- "7605ef25-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions", "id": "c95412b8-16c7-11ec-85c0-da7ad0900002"},
- {"type": "permissions", "id": "c95412b9-16c7-11ec-85c0-da7ad0900002"}, {"type":
- "permissions", "id": "26c79920-1703-11ec-85d2-da7ad0900002"}, {"type": "permissions",
- "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
- "f4473c61-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id": "020a563c-56a4-11ec-a982-da7ad0900002"},
- {"type": "permissions", "id": "8e4d6b6e-5750-11ec-a9f4-da7ad0900002"}, {"type":
- "permissions", "id": "945b3bb4-5884-11ec-aa6d-da7ad0900002"}, {"type": "permissions",
- "id": "945b3bb5-5884-11ec-aa6d-da7ad0900002"}, {"type": "permissions", "id":
- "f6e917a8-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions", "id": "f6e917aa-8502-11ec-bf20-da7ad0900002"},
- {"type": "permissions", "id": "f6e917a9-8502-11ec-bf20-da7ad0900002"}, {"type":
- "permissions", "id": "f6e917a6-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions",
- "id": "f6e917a7-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions", "id":
- "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "b6bf9ac7-9a59-11ec-8480-da7ad0900002"},
- {"type": "permissions", "id": "e35c06b0-966b-11ec-83c9-da7ad0900002"}, {"type":
- "permissions", "id": "2108215e-b9b4-11ec-958e-da7ad0900002"}, {"type": "permissions",
- "id": "7b1f5089-c59e-11ec-aa32-da7ad0900002"}, {"type": "permissions", "id":
- "1afff448-d5e9-11ec-ae37-da7ad0900002"}, {"type": "permissions", "id": "1afff449-d5e9-11ec-ae37-da7ad0900002"},
- {"type": "permissions", "id": "6c87d3da-e5c5-11ec-b1d6-da7ad0900002"}, {"type":
- "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions",
- "id": "f8e941d0-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id":
- "f8e941ce-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id": "4784b11c-f311-11ec-a5f5-da7ad0900002"},
- {"type": "permissions", "id": "ee68fba9-173a-11ed-b00b-da7ad0900002"}, {"type":
- "permissions", "id": "ee68fba8-173a-11ed-b00b-da7ad0900002"}, {"type": "permissions",
- "id": "5b2c3e28-1761-11ed-b018-da7ad0900002"}, {"type": "permissions", "id":
- "6be119a6-1cd8-11ed-b185-da7ad0900002"}, {"type": "permissions", "id": "36e2a22e-248a-11ed-b405-da7ad0900002"},
- {"type": "permissions", "id": "4ee674f6-55d9-11ed-b10d-da7ad0900002"}, {"type":
- "permissions", "id": "4ee7e46c-55d9-11ed-b10e-da7ad0900002"}, {"type": "permissions",
- "id": "4ee5731c-55d9-11ed-b10b-da7ad0900002"}, {"type": "permissions", "id":
- "4ee60688-55d9-11ed-b10c-da7ad0900002"}, {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"},
- {"type": "permissions", "id": "824851a6-7a4c-11ed-9590-da7ad0900002"}, {"type":
- "permissions", "id": "77d5f45e-7a5a-11ed-8abf-da7ad0900002"}, {"type": "permissions",
- "id": "77d55a44-7a5a-11ed-8abe-da7ad0900002"}, {"type": "permissions", "id":
- "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions", "id": "6c5c1090-7aff-11ed-a5cf-da7ad0900002"},
- {"type": "permissions", "id": "6c59ae72-7aff-11ed-a5cc-da7ad0900002"}, {"type":
- "permissions", "id": "6c5b7428-7aff-11ed-a5ce-da7ad0900002"}, {"type": "permissions",
- "id": "6c5d0892-7aff-11ed-a5d0-da7ad0900002"}, {"type": "permissions", "id":
- "6c5de654-7aff-11ed-a5d1-da7ad0900002"}, {"type": "permissions", "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"},
- {"type": "permissions", "id": "1d76ecfa-9771-11ed-9c2f-da7ad0900002"}, {"type":
- "permissions", "id": "ca6bfb3a-b44f-11ed-adb2-da7ad0900002"}, {"type": "permissions",
- "id": "4dc3eec6-b468-11ed-8539-da7ad0900002"}, {"type": "permissions", "id":
- "4dc4094c-b468-11ed-853a-da7ad0900002"}, {"type": "permissions", "id": "35dd33ea-ca2e-11ed-bca0-da7ad0900002"},
- {"type": "permissions", "id": "36bf3d0a-ccc0-11ed-9453-da7ad0900002"}, {"type":
- "permissions", "id": "f416f55e-db3f-11ed-8028-da7ad0900002"}, {"type": "permissions",
- "id": "f416b1ac-db3f-11ed-8027-da7ad0900002"}, {"type": "permissions", "id":
- "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "4e61ea18-de98-11ed-aa24-da7ad0900002"},
- {"type": "permissions", "id": "a4316eb8-f438-11ed-8af2-da7ad0900002"}, {"type":
- "permissions", "id": "a431bf12-f438-11ed-8af3-da7ad0900002"}, {"type": "permissions",
- "id": "8352cf04-f6ac-11ed-9ec7-da7ad0900002"}, {"type": "permissions", "id":
- "3a48350c-f9bc-11ed-b81c-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
- {"type": "permissions", "id": "a77452c8-fff2-11ed-965d-da7ad0900002"}, {"type":
- "permissions", "id": "a51b375a-ff73-11ed-8c18-da7ad0900002"}, {"type": "permissions",
- "id": "61f9891a-0070-11ee-9c3f-da7ad0900002"}, {"type": "permissions", "id":
- "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type": "permissions", "id": "1377ff28-0ec7-11ee-aebd-da7ad0900002"},
- {"type": "permissions", "id": "cc8cd958-11eb-11ee-ade2-da7ad0900002"}, {"type":
- "permissions", "id": "b1adb6e8-0949-11ee-b2c5-da7ad0900002"}, {"type": "permissions",
- "id": "b1ad77e6-0949-11ee-b2c3-da7ad0900002"}, {"type": "permissions", "id":
- "b1adb5da-0949-11ee-b2c4-da7ad0900002"}, {"type": "permissions", "id": "0efeff18-1cec-11ee-992d-da7ad0900002"},
- {"type": "permissions", "id": "6c5ce898-21a4-11ee-99ef-da7ad0900002"}, {"type":
- "permissions", "id": "6c5ce992-21a4-11ee-99f0-da7ad0900002"}, {"type": "permissions",
- "id": "785177a6-20da-11ee-bed7-da7ad0900002"}, {"type": "permissions", "id":
- "7850e390-20da-11ee-bed6-da7ad0900002"}, {"type": "permissions", "id": "6c5c79b2-21a4-11ee-99ee-da7ad0900002"},
- {"type": "permissions", "id": "1b8f54cc-2ca4-11ee-9e72-da7ad0900002"}, {"type":
- "permissions", "id": "5356dfd2-3dee-11ee-b07b-da7ad0900002"}, {"type": "permissions",
- "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions", "id":
- "50c270de-69ee-11ee-9151-da7ad0900002"}, {"type": "permissions", "id": "7c7836fc-6f6e-11ee-8cdd-da7ad0900002"}]}}},
- {"type": "roles", "id": "fa017a37-bfcb-11eb-a4d7-da7ad0900002", "attributes":
- {"name": "Datadog Read Only Role", "created_at": "2021-05-28T15:47:16.084615+00:00",
- "modified_at": "2021-05-28T15:47:16.084615+00:00", "user_count": 1}, "relationships":
- {"permissions": {"data": [{"type": "permissions", "id": "5e605652-dd12-11e8-9e53-375565b8970e"},
- {"type": "permissions", "id": "6f66600e-dd12-11e8-9e55-7f30fbb45e73"}, {"type":
- "permissions", "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions",
+ string: '{"data": [{"type": "users", "id": "0dd23ab8-984f-11ee-a259-160bb50d121a",
+ "attributes": {"name": "Aldrick Castro", "handle": "aldrick.castro@datadoghq.com",
+ "created_at": "2023-12-11T17:59:39.678404+00:00", "modified_at": "2023-12-11T18:01:09.427132+00:00",
+ "email": "aldrick.castro@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/c4b2f071a7e83e98302afbc9889cfc18?s=48&d=retro",
+ "title": "", "verified": true, "service_account": false, "disabled": false,
+ "allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
+ {"roles": {"data": [{"type": "roles", "id": "fa017a35-bfcb-11eb-a4d7-da7ad0900002"}]},
+ "org": {"data": {"type": "orgs", "id": "fa017a34-bfcb-11eb-a4d7-da7ad0900002"}}}},
+ {"type": "users", "id": "2d0d2076-bfcd-11eb-a4d7-da7ad0900002", "attributes":
+ {"name": "Frog", "handle": "frog@datadoghq.com", "created_at": "2021-05-28T15:55:50.995606+00:00",
+ "modified_at": "2022-10-28T07:43:41.792011+00:00", "email": "frog@datadoghq.com",
+ "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro",
+ "title": "", "verified": true, "service_account": false, "disabled": false,
+ "allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
+ {"roles": {"data": [{"type": "roles", "id": "fa017a35-bfcb-11eb-a4d7-da7ad0900002"}]},
+ "org": {"data": {"type": "orgs", "id": "fa017a34-bfcb-11eb-a4d7-da7ad0900002"}}}},
+ {"type": "users", "id": "d5459c54-9e9d-11ee-a5c9-ce6dc639753f", "attributes":
+ {"name": "CI Service Account", "handle": "d5459c54-9e9d-11ee-a5c9-ce6dc639753f",
+ "created_at": "2023-12-19T18:38:42.022746+00:00", "modified_at": "2023-12-19T18:38:42.022746+00:00",
+ "email": "frog@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro",
+ "title": "", "verified": true, "service_account": true, "disabled": false,
+ "allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
+ {"roles": {"data": [{"type": "roles", "id": "fa017a35-bfcb-11eb-a4d7-da7ad0900002"}]},
+ "org": {"data": {"type": "orgs", "id": "fa017a34-bfcb-11eb-a4d7-da7ad0900002"}}}},
+ {"type": "users", "id": "2c9609cc-c316-11eb-a516-da7ad0900002", "attributes":
+ {"name": "", "handle": "karimovj@gmail.com", "created_at": "2021-06-01T20:15:56.964166+00:00",
+ "modified_at": "2021-06-04T19:49:43.686963+00:00", "email": "karimovj@gmail.com",
+ "icon": "https://secure.gravatar.com/avatar/4df2a0457aa2d2f4bff089e88d1ed8e4?s=48&d=retro",
+ "title": "", "verified": true, "service_account": false, "disabled": true,
+ "allowed_login_methods": [], "status": "Disabled", "mfa_enabled": false},
+ "relationships": {"roles": {"data": [{"type": "roles", "id": "fa017a37-bfcb-11eb-a4d7-da7ad0900002"}]},
+ "org": {"data": {"type": "orgs", "id": "fa017a34-bfcb-11eb-a4d7-da7ad0900002"}}}},
+ {"type": "users", "id": "38111a03-e9ec-11ed-826a-4614aff52c0c", "attributes":
+ {"name": "Kevin Zou", "handle": "kevin.zou@datadoghq.com", "created_at": "2023-05-03T19:53:48.056641+00:00",
+ "modified_at": "2023-05-09T18:54:37.443272+00:00", "email": "kevin.zou@datadoghq.com",
+ "icon": "https://secure.gravatar.com/avatar/927e28676d353bcee29248ed2ca7ad9c?s=48&d=retro",
+ "title": "", "verified": true, "service_account": false, "disabled": false,
+ "allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
+ {"roles": {"data": [{"type": "roles", "id": "fa017a35-bfcb-11eb-a4d7-da7ad0900002"}]},
+ "org": {"data": {"type": "orgs", "id": "fa017a34-bfcb-11eb-a4d7-da7ad0900002"}}}},
+ {"type": "users", "id": "076756a8-c887-11eb-a639-da7ad0900002", "attributes":
+ {"name": "test-user", "handle": "new@example.com", "created_at": "2021-06-08T18:26:23.527127+00:00",
+ "modified_at": "2021-07-15T20:28:39.614554+00:00", "email": "new@example.com",
+ "icon": "https://secure.gravatar.com/avatar/b681d72feaf8bf6a93d9a8ab86679ec3?s=48&d=retro",
+ "title": "", "verified": false, "service_account": false, "disabled": false,
+ "allowed_login_methods": [], "status": "Pending", "mfa_enabled": false}, "relationships":
+ {"roles": {"data": []}, "org": {"data": {"type": "orgs", "id": "fa017a34-bfcb-11eb-a4d7-da7ad0900002"}}}},
+ {"type": "users", "id": "69b5667c-c7cb-11eb-a618-da7ad0900002", "attributes":
+ {"name": "Noueman Khalikine", "handle": "noueman.khalikine@datadoghq.com",
+ "created_at": "2021-06-07T20:03:23.070251+00:00", "modified_at": "2021-06-09T10:17:49.825007+00:00",
+ "email": "noueman.khalikine@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/92d6421ea95d9f7b8d60c8270c95d84a?s=48&d=retro",
+ "title": "", "verified": true, "service_account": false, "disabled": false,
+ "allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
+ {"roles": {"data": [{"type": "roles", "id": "fa017a35-bfcb-11eb-a4d7-da7ad0900002"}]},
+ "org": {"data": {"type": "orgs", "id": "fa017a34-bfcb-11eb-a4d7-da7ad0900002"}}}},
+ {"type": "users", "id": "fa017a39-bfcb-11eb-a4d7-da7ad0900002", "attributes":
+ {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com", "created_at":
+ "2021-05-28T15:47:16.257550+00:00", "modified_at": "2021-05-28T15:47:16.299685+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": [], "status": "Active", "mfa_enabled": false}, "relationships":
+ {"roles": {"data": [{"type": "roles", "id": "fa017a35-bfcb-11eb-a4d7-da7ad0900002"}]},
+ "org": {"data": {"type": "orgs", "id": "fa017a34-bfcb-11eb-a4d7-da7ad0900002"}}}},
+ {"type": "users", "id": "db1205fc-c7b0-11eb-a606-da7ad0900002", "attributes":
+ {"name": "None+ updated", "handle": "test-user-example@datadoghq.com", "created_at":
+ "2021-06-07T16:53:16.848154+00:00", "modified_at": "2021-07-26T20:34:55.537026+00:00",
+ "email": "test-user-example@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/034ab28ed9a3b29bccdb4d7b94cd7e03?s=48&d=retro",
+ "title": "", "verified": false, "service_account": false, "disabled": false,
+ "allowed_login_methods": [], "status": "Pending", "mfa_enabled": false}, "relationships":
+ {"roles": {"data": [{"type": "roles", "id": "fa017a37-bfcb-11eb-a4d7-da7ad0900002"}]},
+ "org": {"data": {"type": "orgs", "id": "fa017a34-bfcb-11eb-a4d7-da7ad0900002"}}}},
+ {"type": "users", "id": "82713226-ebdf-11eb-b25e-da7ad0900002", "attributes":
+ {"name": "Updated", "handle": "user_without_role@example.com", "created_at":
+ "2021-07-23T17:57:56.360770+00:00", "modified_at": "2022-01-12T23:22:56.070309+00:00",
+ "email": "user_without_role@example.com", "icon": "https://secure.gravatar.com/avatar/a0985e94ca4206b92a3504c0222b3f7e?s=48&d=retro",
+ "title": "", "verified": false, "service_account": false, "disabled": true,
+ "allowed_login_methods": [], "status": "Disabled", "mfa_enabled": false},
+ "relationships": {"roles": {"data": []}, "org": {"data": {"type": "orgs",
+ "id": "fa017a34-bfcb-11eb-a4d7-da7ad0900002"}}}}], "included": [{"type": "roles",
+ "id": "fa017a35-bfcb-11eb-a4d7-da7ad0900002", "attributes": {"name": "Datadog
+ Admin Role", "created_at": "2021-05-28T15:47:15.884751+00:00", "modified_at":
+ "2023-03-22T20:42:59.038042+00:00"}, "relationships": {"permissions": {"data":
+ [{"type": "permissions", "id": "984d2f00-d3b4-11e8-a200-bb47109e9987"}, {"type":
+ "permissions", "id": "5e605652-dd12-11e8-9e53-375565b8970e"}, {"type": "permissions",
+ "id": "62cc036c-dd12-11e8-9e54-db9995643092"}, {"type": "permissions", "id":
+ "6f66600e-dd12-11e8-9e55-7f30fbb45e73"}, {"type": "permissions", "id": "7d7c98ac-dd12-11e8-9e56-93700598622d"},
+ {"type": "permissions", "id": "811ac4ca-dd12-11e8-9e57-676a7f0beef9"}, {"type":
+ "permissions", "id": "84aa3ae4-dd12-11e8-9e58-a373a514ccd0"}, {"type": "permissions",
+ "id": "87b00304-dd12-11e8-9e59-cbeb5f71f72f"}, {"type": "permissions", "id":
+ "979df720-aed7-11e9-99c6-a7eb8373165a"}, {"type": "permissions", "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"},
+ {"type": "permissions", "id": "d90f6831-d3d8-11e9-a77a-4fd230ddbc6a"}, {"type":
+ "permissions", "id": "d90f6832-d3d8-11e9-a77a-bf8a2607f864"}, {"type": "permissions",
"id": "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id":
- "1af86ce4-7823-11ea-93dc-d7cad1b1c6cb"}, {"type": "permissions", "id": "b382b982-8535-11ea-93de-2bf1bdf20798"},
- {"type": "permissions", "id": "7314eb20-aa58-11ea-95e2-6fb6e4a451d5"}, {"type":
- "permissions", "id": "80de1ec0-aa58-11ea-95e2-aff381626d5d"}, {"type": "permissions",
- "id": "5025ee24-f923-11ea-adbc-576ea241df8d"}, {"type": "permissions", "id":
- "417ba636-2dce-11eb-84c0-6bce5b0d9de0"}, {"type": "permissions", "id": "43fa188e-2dce-11eb-84c0-835ad1fd6287"},
- {"type": "permissions", "id": "4916eebe-2dce-11eb-84c0-271cb2c672e8"}, {"type":
- "permissions", "id": "edfd5e75-801f-11eb-96d8-da7ad0900002"}, {"type": "permissions",
- "id": "98b984f4-b16d-11eb-a2c6-da7ad0900002"}, {"type": "permissions", "id":
- "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id": "97971c1c-e895-11eb-b13c-da7ad0900002"},
- {"type": "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type":
- "permissions", "id": "7605ef25-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
- "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
- "8e4d6b6e-5750-11ec-a9f4-da7ad0900002"}, {"type": "permissions", "id": "945b3bb4-5884-11ec-aa6d-da7ad0900002"},
- {"type": "permissions", "id": "f6e917a8-8502-11ec-bf20-da7ad0900002"}, {"type":
- "permissions", "id": "f6e917a6-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions",
- "id": "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id":
- "f8e941cf-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id": "ee68fba8-173a-11ed-b00b-da7ad0900002"},
- {"type": "permissions", "id": "6be119a6-1cd8-11ed-b185-da7ad0900002"}, {"type":
- "permissions", "id": "4ee674f6-55d9-11ed-b10d-da7ad0900002"}, {"type": "permissions",
- "id": "4ee5731c-55d9-11ed-b10b-da7ad0900002"}, {"type": "permissions", "id":
- "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type": "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"},
- {"type": "permissions", "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type":
- "permissions", "id": "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions",
- "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"}, {"type": "permissions", "id":
- "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type": "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"},
- {"type": "permissions", "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}},
- {"type": "roles", "id": "fa017a36-bfcb-11eb-a4d7-da7ad0900002", "attributes":
- {"name": "Datadog Standard Role", "created_at": "2021-05-28T15:47:15.999885+00:00",
- "modified_at": "2021-05-28T15:47:15.999885+00:00", "user_count": 0}, "relationships":
- {"permissions": {"data": [{"type": "permissions", "id": "984d2f00-d3b4-11e8-a200-bb47109e9987"},
- {"type": "permissions", "id": "5e605652-dd12-11e8-9e53-375565b8970e"}, {"type":
- "permissions", "id": "62cc036c-dd12-11e8-9e54-db9995643092"}, {"type": "permissions",
- "id": "6f66600e-dd12-11e8-9e55-7f30fbb45e73"}, {"type": "permissions", "id":
- "7d7c98ac-dd12-11e8-9e56-93700598622d"}, {"type": "permissions", "id": "811ac4ca-dd12-11e8-9e57-676a7f0beef9"},
- {"type": "permissions", "id": "84aa3ae4-dd12-11e8-9e58-a373a514ccd0"}, {"type":
- "permissions", "id": "979df720-aed7-11e9-99c6-a7eb8373165a"}, {"type": "permissions",
- "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
- "d90f6831-d3d8-11e9-a77a-4fd230ddbc6a"}, {"type": "permissions", "id": "d90f6832-d3d8-11e9-a77a-bf8a2607f864"},
- {"type": "permissions", "id": "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type":
- "permissions", "id": "48ef71ea-d8b1-11e9-a77a-93f408470ad0"}, {"type": "permissions",
- "id": "4d87d5f8-d8b1-11e9-a77a-eb9c8350d04f"}, {"type": "permissions", "id":
- "1af86ce4-7823-11ea-93dc-d7cad1b1c6cb"}, {"type": "permissions", "id": "b382b982-8535-11ea-93de-2bf1bdf20798"},
- {"type": "permissions", "id": "7314eb20-aa58-11ea-95e2-6fb6e4a451d5"}, {"type":
- "permissions", "id": "7b516476-aa58-11ea-95e2-93718cd56369"}, {"type": "permissions",
- "id": "80de1ec0-aa58-11ea-95e2-aff381626d5d"}, {"type": "permissions", "id":
- "58b412cc-ff6d-11eb-bc9c-da7ad0900002"}, {"type": "permissions", "id": "9ac1d8cc-e707-11ea-aa2d-73d37e989a9d"},
- {"type": "permissions", "id": "46a301da-ec5c-11ea-aa9f-73bedeab67ee"}, {"type":
- "permissions", "id": "46a301db-ec5c-11ea-aa9f-2fe72193d60e"}, {"type": "permissions",
- "id": "46a301dd-ec5c-11ea-aa9f-97edfb345bc9"}, {"type": "permissions", "id":
- "46a301e4-ec5c-11ea-aa9f-87282b3a50cc"}, {"type": "permissions", "id": "07c3c146-f7f8-11ea-acf6-0bd62b9ae60e"},
+ "48ef71ea-d8b1-11e9-a77a-93f408470ad0"}, {"type": "permissions", "id": "4d87d5f8-d8b1-11e9-a77a-eb9c8350d04f"},
+ {"type": "permissions", "id": "1af86ce4-7823-11ea-93dc-d7cad1b1c6cb"}, {"type":
+ "permissions", "id": "b382b982-8535-11ea-93de-2bf1bdf20798"}, {"type": "permissions",
+ "id": "7314eb20-aa58-11ea-95e2-6fb6e4a451d5"}, {"type": "permissions", "id":
+ "7b516476-aa58-11ea-95e2-93718cd56369"}, {"type": "permissions", "id": "80de1ec0-aa58-11ea-95e2-aff381626d5d"},
+ {"type": "permissions", "id": "58b412cc-ff6d-11eb-bc9c-da7ad0900002"}, {"type":
+ "permissions", "id": "9ac1d8cc-e707-11ea-aa2d-73d37e989a9d"}, {"type": "permissions",
+ "id": "9de604d8-e707-11ea-aa2d-93f1a783b3a3"}, {"type": "permissions", "id":
+ "46a301da-ec5c-11ea-aa9f-73bedeab67ee"}, {"type": "permissions", "id": "46a301db-ec5c-11ea-aa9f-2fe72193d60e"},
+ {"type": "permissions", "id": "46a301dc-ec5c-11ea-aa9f-13b33f8f46ea"}, {"type":
+ "permissions", "id": "46a301dd-ec5c-11ea-aa9f-97edfb345bc9"}, {"type": "permissions",
+ "id": "46a301de-ec5c-11ea-aa9f-a73252c24806"}, {"type": "permissions", "id":
+ "46a301df-ec5c-11ea-aa9f-970a9ae645e5"}, {"type": "permissions", "id": "46a301e0-ec5c-11ea-aa9f-6ba6cc675d8c"},
+ {"type": "permissions", "id": "46a301e1-ec5c-11ea-aa9f-afa39f6f3e36"}, {"type":
+ "permissions", "id": "46a301e2-ec5c-11ea-aa9f-1f511b7305fd"}, {"type": "permissions",
+ "id": "46a301e4-ec5c-11ea-aa9f-87282b3a50cc"}, {"type": "permissions", "id":
+ "07c3c146-f7f8-11ea-acf6-0bd62b9ae60e"}, {"type": "permissions", "id": "2fbdac76-f923-11ea-adbc-07f3823e2b43"},
{"type": "permissions", "id": "372896c4-f923-11ea-adbc-4fecd107156d"}, {"type":
- "permissions", "id": "4628ca54-f923-11ea-adbc-4b2b7f88c5e9"}, {"type": "permissions",
- "id": "4ada6e36-f923-11ea-adbc-0788e5c5e3cf"}, {"type": "permissions", "id":
- "5025ee24-f923-11ea-adbc-576ea241df8d"}, {"type": "permissions", "id": "55f4b5ec-f923-11ea-adbc-1bfa2334a755"},
- {"type": "permissions", "id": "5c6b88e2-f923-11ea-adbc-abf57d079420"}, {"type":
- "permissions", "id": "642eebe6-f923-11ea-adbc-eb617674ea04"}, {"type": "permissions",
- "id": "6ba32d22-0e1a-11eb-ba44-bf9a5aafaa39"}, {"type": "permissions", "id":
- "fcac2ad8-2843-11eb-8315-0fe47949d625"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
- {"type": "permissions", "id": "43fa188e-2dce-11eb-84c0-835ad1fd6287"}, {"type":
- "permissions", "id": "4916eebe-2dce-11eb-84c0-271cb2c672e8"}, {"type": "permissions",
- "id": "5cbe5f9c-2dce-11eb-84c0-872d3e9f1076"}, {"type": "permissions", "id":
- "61765026-2dce-11eb-84c0-833e230d1b8f"}, {"type": "permissions", "id": "8106300a-54f7-11eb-8cbc-7781a434a67b"},
- {"type": "permissions", "id": "edfd5e75-801f-11eb-96d8-da7ad0900002"}, {"type":
- "permissions", "id": "98b984f4-b16d-11eb-a2c6-da7ad0900002"}, {"type": "permissions",
+ "permissions", "id": "3e4d4d28-f923-11ea-adbc-e3565938c12e"}, {"type": "permissions",
+ "id": "4628ca54-f923-11ea-adbc-4b2b7f88c5e9"}, {"type": "permissions", "id":
+ "4ada6e36-f923-11ea-adbc-0788e5c5e3cf"}, {"type": "permissions", "id": "5025ee24-f923-11ea-adbc-576ea241df8d"},
+ {"type": "permissions", "id": "55f4b5ec-f923-11ea-adbc-1bfa2334a755"}, {"type":
+ "permissions", "id": "5c6b88e2-f923-11ea-adbc-abf57d079420"}, {"type": "permissions",
+ "id": "642eebe6-f923-11ea-adbc-eb617674ea04"}, {"type": "permissions", "id":
+ "6ba32d22-0e1a-11eb-ba44-bf9a5aafaa39"}, {"type": "permissions", "id": "a42e94b2-1476-11eb-bd08-efda28c04248"},
+ {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"}, {"type":
+ "permissions", "id": "43fa188e-2dce-11eb-84c0-835ad1fd6287"}, {"type": "permissions",
+ "id": "465cfe66-2dce-11eb-84c0-6baa888239fa"}, {"type": "permissions", "id":
+ "4916eebe-2dce-11eb-84c0-271cb2c672e8"}, {"type": "permissions", "id": "4e3f02b4-2dce-11eb-84c0-2fca946a6efc"},
+ {"type": "permissions", "id": "53950c54-2dce-11eb-84c0-a79ae108f6f8"}, {"type":
+ "permissions", "id": "5cbe5f9c-2dce-11eb-84c0-872d3e9f1076"}, {"type": "permissions",
+ "id": "61765026-2dce-11eb-84c0-833e230d1b8f"}, {"type": "permissions", "id":
+ "04bc1cf2-340a-11eb-873a-43b973c760dd"}, {"type": "permissions", "id": "8106300a-54f7-11eb-8cbc-7781a434a67b"},
+ {"type": "permissions", "id": "edfd5e74-801f-11eb-96d8-da7ad0900002"}, {"type":
+ "permissions", "id": "edfd5e75-801f-11eb-96d8-da7ad0900002"}, {"type": "permissions",
+ "id": "bf0dcf7c-90af-11eb-9b82-da7ad0900002"}, {"type": "permissions", "id":
+ "bf0dcf7d-90af-11eb-9b82-da7ad0900002"}, {"type": "permissions", "id": "7df222b6-a45c-11eb-a0af-da7ad0900002"},
+ {"type": "permissions", "id": "98b984f4-b16d-11eb-a2c6-da7ad0900002"}, {"type":
+ "permissions", "id": "98b984f5-b16d-11eb-a2c6-da7ad0900002"}, {"type": "permissions",
"id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id":
"12efc211-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id": "12efc20f-d36c-11eb-a9b8-da7ad0900002"},
{"type": "permissions", "id": "12efc210-d36c-11eb-a9b8-da7ad0900002"}, {"type":
@@ -217,188 +154,85 @@ interactions:
"permissions", "id": "c95412b9-16c7-11ec-85c0-da7ad0900002"}, {"type": "permissions",
"id": "26c79920-1703-11ec-85d2-da7ad0900002"}, {"type": "permissions", "id":
"f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id": "f4473c61-4792-11ec-a27b-da7ad0900002"},
- {"type": "permissions", "id": "8e4d6b6e-5750-11ec-a9f4-da7ad0900002"}, {"type":
- "permissions", "id": "945b3bb4-5884-11ec-aa6d-da7ad0900002"}, {"type": "permissions",
- "id": "f6e917a8-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions", "id":
- "f6e917aa-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions", "id": "f6e917a9-8502-11ec-bf20-da7ad0900002"},
- {"type": "permissions", "id": "f6e917a6-8502-11ec-bf20-da7ad0900002"}, {"type":
- "permissions", "id": "f6e917a7-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions",
- "id": "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id":
- "b6bf9ac7-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "2108215e-b9b4-11ec-958e-da7ad0900002"},
- {"type": "permissions", "id": "7b1f5089-c59e-11ec-aa32-da7ad0900002"}, {"type":
- "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions",
- "id": "f8e941d0-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id":
- "f8e941ce-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id": "ee68fba9-173a-11ed-b00b-da7ad0900002"},
- {"type": "permissions", "id": "ee68fba8-173a-11ed-b00b-da7ad0900002"}, {"type":
- "permissions", "id": "6be119a6-1cd8-11ed-b185-da7ad0900002"}, {"type": "permissions",
- "id": "36e2a22e-248a-11ed-b405-da7ad0900002"}, {"type": "permissions", "id":
- "4ee674f6-55d9-11ed-b10d-da7ad0900002"}, {"type": "permissions", "id": "4ee7e46c-55d9-11ed-b10e-da7ad0900002"},
- {"type": "permissions", "id": "4ee5731c-55d9-11ed-b10b-da7ad0900002"}, {"type":
- "permissions", "id": "4ee60688-55d9-11ed-b10c-da7ad0900002"}, {"type": "permissions",
- "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type": "permissions", "id":
- "824851a6-7a4c-11ed-9590-da7ad0900002"}, {"type": "permissions", "id": "77d55a44-7a5a-11ed-8abe-da7ad0900002"},
- {"type": "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type":
- "permissions", "id": "6c5c1090-7aff-11ed-a5cf-da7ad0900002"}, {"type": "permissions",
+ {"type": "permissions", "id": "020a563c-56a4-11ec-a982-da7ad0900002"}, {"type":
+ "permissions", "id": "8e4d6b6e-5750-11ec-a9f4-da7ad0900002"}, {"type": "permissions",
+ "id": "945b3bb4-5884-11ec-aa6d-da7ad0900002"}, {"type": "permissions", "id":
+ "945b3bb5-5884-11ec-aa6d-da7ad0900002"}, {"type": "permissions", "id": "f6e917a8-8502-11ec-bf20-da7ad0900002"},
+ {"type": "permissions", "id": "f6e917aa-8502-11ec-bf20-da7ad0900002"}, {"type":
+ "permissions", "id": "f6e917a9-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions",
+ "id": "f6e917a6-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions", "id":
+ "f6e917a7-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions", "id": "b6bf9ac6-9a59-11ec-8480-da7ad0900002"},
+ {"type": "permissions", "id": "b6bf9ac7-9a59-11ec-8480-da7ad0900002"}, {"type":
+ "permissions", "id": "e35c06b0-966b-11ec-83c9-da7ad0900002"}, {"type": "permissions",
+ "id": "2108215e-b9b4-11ec-958e-da7ad0900002"}, {"type": "permissions", "id":
+ "7b1f5089-c59e-11ec-aa32-da7ad0900002"}, {"type": "permissions", "id": "1afff448-d5e9-11ec-ae37-da7ad0900002"},
+ {"type": "permissions", "id": "1afff449-d5e9-11ec-ae37-da7ad0900002"}, {"type":
+ "permissions", "id": "6c87d3da-e5c5-11ec-b1d6-da7ad0900002"}, {"type": "permissions",
+ "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id":
+ "f8e941d0-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id": "f8e941ce-e746-11ec-b22d-da7ad0900002"},
+ {"type": "permissions", "id": "4784b11c-f311-11ec-a5f5-da7ad0900002"}, {"type":
+ "permissions", "id": "ee68fba9-173a-11ed-b00b-da7ad0900002"}, {"type": "permissions",
+ "id": "ee68fba8-173a-11ed-b00b-da7ad0900002"}, {"type": "permissions", "id":
+ "5b2c3e28-1761-11ed-b018-da7ad0900002"}, {"type": "permissions", "id": "6be119a6-1cd8-11ed-b185-da7ad0900002"},
+ {"type": "permissions", "id": "36e2a22e-248a-11ed-b405-da7ad0900002"}, {"type":
+ "permissions", "id": "4ee674f6-55d9-11ed-b10d-da7ad0900002"}, {"type": "permissions",
+ "id": "4ee7e46c-55d9-11ed-b10e-da7ad0900002"}, {"type": "permissions", "id":
+ "4ee5731c-55d9-11ed-b10b-da7ad0900002"}, {"type": "permissions", "id": "4ee60688-55d9-11ed-b10c-da7ad0900002"},
+ {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type":
+ "permissions", "id": "824851a6-7a4c-11ed-9590-da7ad0900002"}, {"type": "permissions",
+ "id": "77d5f45e-7a5a-11ed-8abf-da7ad0900002"}, {"type": "permissions", "id":
+ "77d55a44-7a5a-11ed-8abe-da7ad0900002"}, {"type": "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"},
+ {"type": "permissions", "id": "6c5c1090-7aff-11ed-a5cf-da7ad0900002"}, {"type":
+ "permissions", "id": "6c59ae72-7aff-11ed-a5cc-da7ad0900002"}, {"type": "permissions",
"id": "6c5b7428-7aff-11ed-a5ce-da7ad0900002"}, {"type": "permissions", "id":
- "6c5de654-7aff-11ed-a5d1-da7ad0900002"}, {"type": "permissions", "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"},
- {"type": "permissions", "id": "ca6bfb3a-b44f-11ed-adb2-da7ad0900002"}, {"type":
- "permissions", "id": "4dc3eec6-b468-11ed-8539-da7ad0900002"}, {"type": "permissions",
- "id": "4dc4094c-b468-11ed-853a-da7ad0900002"}, {"type": "permissions", "id":
- "36bf3d0a-ccc0-11ed-9453-da7ad0900002"}, {"type": "permissions", "id": "f416f55e-db3f-11ed-8028-da7ad0900002"},
- {"type": "permissions", "id": "f416b1ac-db3f-11ed-8027-da7ad0900002"}, {"type":
- "permissions", "id": "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions",
- "id": "4e61ea18-de98-11ed-aa24-da7ad0900002"}, {"type": "permissions", "id":
- "a4316eb8-f438-11ed-8af2-da7ad0900002"}, {"type": "permissions", "id": "a431bf12-f438-11ed-8af3-da7ad0900002"},
- {"type": "permissions", "id": "8352cf04-f6ac-11ed-9ec7-da7ad0900002"}, {"type":
- "permissions", "id": "3a48350c-f9bc-11ed-b81c-da7ad0900002"}, {"type": "permissions",
- "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"}, {"type": "permissions", "id":
- "a77452c8-fff2-11ed-965d-da7ad0900002"}, {"type": "permissions", "id": "a51b375a-ff73-11ed-8c18-da7ad0900002"},
- {"type": "permissions", "id": "61f9891a-0070-11ee-9c3f-da7ad0900002"}, {"type":
- "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type": "permissions",
- "id": "cc8cd958-11eb-11ee-ade2-da7ad0900002"}, {"type": "permissions", "id":
+ "6c5d0892-7aff-11ed-a5d0-da7ad0900002"}, {"type": "permissions", "id": "6c5de654-7aff-11ed-a5d1-da7ad0900002"},
+ {"type": "permissions", "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type":
+ "permissions", "id": "1d76ecfa-9771-11ed-9c2f-da7ad0900002"}, {"type": "permissions",
+ "id": "ca6bfb3a-b44f-11ed-adb2-da7ad0900002"}, {"type": "permissions", "id":
+ "4dc3eec6-b468-11ed-8539-da7ad0900002"}, {"type": "permissions", "id": "4dc4094c-b468-11ed-853a-da7ad0900002"},
+ {"type": "permissions", "id": "35dd33ea-ca2e-11ed-bca0-da7ad0900002"}, {"type":
+ "permissions", "id": "36bf3d0a-ccc0-11ed-9453-da7ad0900002"}, {"type": "permissions",
+ "id": "f416f55e-db3f-11ed-8028-da7ad0900002"}, {"type": "permissions", "id":
+ "f416b1ac-db3f-11ed-8027-da7ad0900002"}, {"type": "permissions", "id": "4e61a95e-de98-11ed-aa23-da7ad0900002"},
+ {"type": "permissions", "id": "4e61ea18-de98-11ed-aa24-da7ad0900002"}, {"type":
+ "permissions", "id": "a4316eb8-f438-11ed-8af2-da7ad0900002"}, {"type": "permissions",
+ "id": "a431bf12-f438-11ed-8af3-da7ad0900002"}, {"type": "permissions", "id":
+ "8352cf04-f6ac-11ed-9ec7-da7ad0900002"}, {"type": "permissions", "id": "3a48350c-f9bc-11ed-b81c-da7ad0900002"},
+ {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"}, {"type":
+ "permissions", "id": "a77452c8-fff2-11ed-965d-da7ad0900002"}, {"type": "permissions",
+ "id": "a51b375a-ff73-11ed-8c18-da7ad0900002"}, {"type": "permissions", "id":
+ "61f9891a-0070-11ee-9c3f-da7ad0900002"}, {"type": "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"},
+ {"type": "permissions", "id": "1377ff28-0ec7-11ee-aebd-da7ad0900002"}, {"type":
+ "permissions", "id": "cc8cd958-11eb-11ee-ade2-da7ad0900002"}, {"type": "permissions",
+ "id": "b1adb6e8-0949-11ee-b2c5-da7ad0900002"}, {"type": "permissions", "id":
"b1ad77e6-0949-11ee-b2c3-da7ad0900002"}, {"type": "permissions", "id": "b1adb5da-0949-11ee-b2c4-da7ad0900002"},
{"type": "permissions", "id": "0efeff18-1cec-11ee-992d-da7ad0900002"}, {"type":
- "permissions", "id": "785177a6-20da-11ee-bed7-da7ad0900002"}, {"type": "permissions",
- "id": "6c5c79b2-21a4-11ee-99ee-da7ad0900002"}, {"type": "permissions", "id":
- "1b8f54cc-2ca4-11ee-9e72-da7ad0900002"}, {"type": "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"},
- {"type": "permissions", "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}},
- {"type": "roles", "id": "e8406dae-760f-11ed-b571-da7ad0900002", "attributes":
- {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670404619",
- "created_at": "2022-12-07T09:17:01.147039+00:00", "modified_at": "2022-12-07T09:17:01.261261+00:00",
- "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
- "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
- "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
- {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
- "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
- "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
- "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"},
- {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type":
- "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions",
- "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type": "permissions", "id":
- "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
- {"type": "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type":
- "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions",
- "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}, {"type": "roles", "id":
- "fe9dd0a0-760f-11ed-b4a5-da7ad0900002", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670404656",
- "created_at": "2022-12-07T09:17:38.668879+00:00", "modified_at": "2022-12-07T09:17:38.767135+00:00",
- "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
- "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
- "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
- {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
- "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
- "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
- "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"},
- {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type":
- "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions",
- "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type": "permissions", "id":
- "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
- {"type": "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type":
- "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions",
- "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}, {"type": "roles", "id":
- "cf8c10f0-7610-11ed-8608-da7ad0900002", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405007",
- "created_at": "2022-12-07T09:23:29.196890+00:00", "modified_at": "2022-12-07T09:23:29.281877+00:00",
- "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
- "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
- "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
- {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
- "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
- "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
- "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"},
- {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type":
- "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions",
- "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type": "permissions", "id":
- "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
- {"type": "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type":
- "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions",
- "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}, {"type": "roles", "id":
- "ea30031a-7612-11ed-abf9-da7ad0900002", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405911",
- "created_at": "2022-12-07T09:38:32.884937+00:00", "modified_at": "2022-12-07T09:38:32.985618+00:00",
- "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
- "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
- "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
- {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
- "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
- "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
- "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"},
- {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type":
- "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions",
- "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type": "permissions", "id":
- "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
- {"type": "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type":
- "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions",
- "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}, {"type": "roles", "id":
- "f1e67558-7612-11ed-9fc8-da7ad0900002", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405924",
- "created_at": "2022-12-07T09:38:45.824787+00:00", "modified_at": "2022-12-07T09:38:45.921838+00:00",
- "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
- "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
- "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
- {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
- "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
- "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
- "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"},
- {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type":
- "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions",
- "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type": "permissions", "id":
- "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
- {"type": "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type":
- "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions",
- "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}, {"type": "roles", "id":
- "430aea7c-0501-11ee-9f44-da7ad0900002", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1686121345",
- "created_at": "2023-06-07T07:02:27.295218+00:00", "modified_at": "2023-06-07T07:02:27.326358+00:00",
- "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
- "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
- "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
- {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
- "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
- "id": "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id":
- "f8e941cf-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"},
- {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"}, {"type":
- "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type": "permissions",
- "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions", "id":
- "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}], "meta": {"page": {"total_count":
- 9, "total_filtered_count": 9}}}'
- headers:
- Content-Type:
- - application/json
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: GET
- uri: https://api.datadoghq.com/api/v2/permissions
- response:
- body:
- string: '{"data": [{"type": "permissions", "id": "984a2bd4-d3b4-11e8-a1ff-a7f660d43029",
- "attributes": {"name": "admin", "display_name": "Privileged Access", "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.", "created": "2018-10-19T15:35:23.734317+00:00", "group_name":
- "General", "display_type": "other", "restricted": false}}, {"type": "permissions",
- "id": "984d2f00-d3b4-11e8-a200-bb47109e9987", "attributes": {"name": "standard",
- "display_name": "Standard Access", "description": "Deprecated. Standard Access
- has been replaced by more specific permissions.", "created": "2018-10-19T15:35:23.756736+00:00",
- "group_name": "General", "display_type": "other", "restricted": false}}, {"type":
- "permissions", "id": "5e605652-dd12-11e8-9e53-375565b8970e", "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-31T13:39:19.727450+00:00", "group_name": "Log Management", "display_type":
- "read", "restricted": false}}, {"type": "permissions", "id": "62cc036c-dd12-11e8-9e54-db9995643092",
- "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-31T13:39:27.148615+00:00",
+ "permissions", "id": "6c5ce898-21a4-11ee-99ef-da7ad0900002"}, {"type": "permissions",
+ "id": "6c5ce992-21a4-11ee-99f0-da7ad0900002"}, {"type": "permissions", "id":
+ "785177a6-20da-11ee-bed7-da7ad0900002"}, {"type": "permissions", "id": "7850e390-20da-11ee-bed6-da7ad0900002"},
+ {"type": "permissions", "id": "6c5c79b2-21a4-11ee-99ee-da7ad0900002"}, {"type":
+ "permissions", "id": "1b8f54cc-2ca4-11ee-9e72-da7ad0900002"}, {"type": "permissions",
+ "id": "5356dfd2-3dee-11ee-b07b-da7ad0900002"}, {"type": "permissions", "id":
+ "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions", "id": "50c270de-69ee-11ee-9151-da7ad0900002"},
+ {"type": "permissions", "id": "7c7836fc-6f6e-11ee-8cdd-da7ad0900002"}]}}},
+ {"type": "permissions", "id": "984d2f00-d3b4-11e8-a200-bb47109e9987", "attributes":
+ {"name": "standard", "display_name": "Standard Access", "description": "Deprecated.
+ Standard Access has been replaced by more specific permissions.", "created":
+ "2018-10-19T15:35:23.756736+00:00", "group_name": "General", "display_type":
+ "other", "restricted": false}}, {"type": "permissions", "id": "5e605652-dd12-11e8-9e53-375565b8970e",
+ "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-31T13:39:19.727450+00:00", "group_name":
+ "Log Management", "display_type": "read", "restricted": false}}, {"type":
+ "permissions", "id": "62cc036c-dd12-11e8-9e54-db9995643092", "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-31T13:39:27.148615+00:00",
"group_name": "Log Management", "display_type": "other", "restricted": false}},
{"type": "permissions", "id": "6f66600e-dd12-11e8-9e55-7f30fbb45e73", "attributes":
{"name": "logs_live_tail", "display_name": "Logs Live Tail", "description":
@@ -591,20 +425,14 @@ interactions:
"description": "Create, disable, and use Service Accounts in your organization.",
"created": "2020-10-22T14:55:35.814239+00:00", "group_name": "Access Management",
"display_type": "write", "restricted": false}}, {"type": "permissions", "id":
- "fcac2ad8-2843-11eb-8315-0fe47949d625", "attributes": {"name": "integrations_api",
- "display_name": "Integrations API", "description": "Deprecated. Use the Integrations
- APIs to configure integrations. In order to configure integrations from the
- UI, a user must also have Standard Access.", "created": "2020-11-16T19:43:23.198568+00:00",
- "group_name": "Integrations", "display_type": "other", "restricted": false}},
- {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0", "attributes":
- {"name": "apm_read", "display_name": "APM Read", "description": "Read and
- query APM and Trace Analytics.", "created": "2020-11-23T20:55:45.006110+00:00",
- "group_name": "APM", "display_type": "read", "restricted": true}}, {"type":
- "permissions", "id": "43fa188e-2dce-11eb-84c0-835ad1fd6287", "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:55:49.190595+00:00", "group_name":
+ "417ba636-2dce-11eb-84c0-6bce5b0d9de0", "attributes": {"name": "apm_read",
+ "display_name": "APM Read", "description": "Read and query APM and Trace Analytics.",
+ "created": "2020-11-23T20:55:45.006110+00:00", "group_name": "APM", "display_type":
+ "read", "restricted": true}}, {"type": "permissions", "id": "43fa188e-2dce-11eb-84c0-835ad1fd6287",
+ "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:55:49.190595+00:00", "group_name":
"APM", "display_type": "read", "restricted": false}}, {"type": "permissions",
"id": "465cfe66-2dce-11eb-84c0-6baa888239fa", "attributes": {"name": "apm_retention_filter_write",
"display_name": "APM Retention Filters Write", "description": "Create, edit,
@@ -778,11 +606,6 @@ interactions:
{"name": "connections_write", "display_name": "Connections Write", "description":
"Create and delete connections.", "created": "2022-02-03T15:07:12.056590+00:00",
"group_name": "Workflow Automation", "display_type": "write", "restricted":
- false}}, {"type": "permissions", "id": "7a89ec40-8b69-11ec-812d-da7ad0900002",
- "attributes": {"name": "incidents_private_global_access", "display_name":
- "Private Incidents Global Access", "description": "Access all private incidents
- in Datadog, even when not added as a responder.", "created": "2022-02-11T18:36:08.531989+00:00",
- "group_name": "Case and Incident Management", "display_type": "other", "restricted":
false}}, {"type": "permissions", "id": "b6bf9ac6-9a59-11ec-8480-da7ad0900002",
"attributes": {"name": "notebooks_read", "display_name": "Notebooks Read",
"description": "View notebooks.", "created": "2022-03-02T18:51:05.040950+00:00",
@@ -1086,7 +909,42 @@ interactions:
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-20T17:31:22.039614+00:00",
- "group_name": "APM", "display_type": "write", "restricted": false}}]}'
+ "group_name": "APM", "display_type": "write", "restricted": false}}, {"type":
+ "roles", "id": "fa017a37-bfcb-11eb-a4d7-da7ad0900002", "attributes": {"name":
+ "Datadog Read Only Role", "created_at": "2021-05-28T15:47:16.084615+00:00",
+ "modified_at": "2021-05-28T15:47:16.084615+00:00"}, "relationships": {"permissions":
+ {"data": [{"type": "permissions", "id": "5e605652-dd12-11e8-9e53-375565b8970e"},
+ {"type": "permissions", "id": "6f66600e-dd12-11e8-9e55-7f30fbb45e73"}, {"type":
+ "permissions", "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions",
+ "id": "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id":
+ "1af86ce4-7823-11ea-93dc-d7cad1b1c6cb"}, {"type": "permissions", "id": "b382b982-8535-11ea-93de-2bf1bdf20798"},
+ {"type": "permissions", "id": "7314eb20-aa58-11ea-95e2-6fb6e4a451d5"}, {"type":
+ "permissions", "id": "80de1ec0-aa58-11ea-95e2-aff381626d5d"}, {"type": "permissions",
+ "id": "5025ee24-f923-11ea-adbc-576ea241df8d"}, {"type": "permissions", "id":
+ "417ba636-2dce-11eb-84c0-6bce5b0d9de0"}, {"type": "permissions", "id": "43fa188e-2dce-11eb-84c0-835ad1fd6287"},
+ {"type": "permissions", "id": "4916eebe-2dce-11eb-84c0-271cb2c672e8"}, {"type":
+ "permissions", "id": "edfd5e75-801f-11eb-96d8-da7ad0900002"}, {"type": "permissions",
+ "id": "98b984f4-b16d-11eb-a2c6-da7ad0900002"}, {"type": "permissions", "id":
+ "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id": "97971c1c-e895-11eb-b13c-da7ad0900002"},
+ {"type": "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type":
+ "permissions", "id": "7605ef25-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
+ "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
+ "8e4d6b6e-5750-11ec-a9f4-da7ad0900002"}, {"type": "permissions", "id": "945b3bb4-5884-11ec-aa6d-da7ad0900002"},
+ {"type": "permissions", "id": "f6e917a8-8502-11ec-bf20-da7ad0900002"}, {"type":
+ "permissions", "id": "f6e917a6-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions",
+ "id": "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id":
+ "f8e941cf-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id": "ee68fba8-173a-11ed-b00b-da7ad0900002"},
+ {"type": "permissions", "id": "6be119a6-1cd8-11ed-b185-da7ad0900002"}, {"type":
+ "permissions", "id": "4ee674f6-55d9-11ed-b10d-da7ad0900002"}, {"type": "permissions",
+ "id": "4ee5731c-55d9-11ed-b10b-da7ad0900002"}, {"type": "permissions", "id":
+ "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type": "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"},
+ {"type": "permissions", "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type":
+ "permissions", "id": "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions",
+ "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"}, {"type": "permissions", "id":
+ "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type": "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"},
+ {"type": "permissions", "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}],
+ "meta": {"page": {"total_count": 10, "total_filtered_count": 10, "max_page_size":
+ 1000}}}'
headers:
Content-Type:
- application/json
@@ -1103,222 +961,396 @@ interactions:
Content-Type:
- application/json
method: GET
- uri: https://api.datadoghq.com/api/v2/users?page%5Bnumber%5D=0&page%5Bsize%5D=100
+ uri: https://api.datadoghq.com/api/v2/roles?page%5Bnumber%5D=0&page%5Bsize%5D=100
response:
body:
- string: '{"data": [{"type": "users", "id": "0dd23ab8-984f-11ee-a259-160bb50d121a",
- "attributes": {"name": "Aldrick Castro", "handle": "aldrick.castro@datadoghq.com",
- "created_at": "2023-12-11T17:59:39.678404+00:00", "modified_at": "2023-12-11T18:01:09.427132+00:00",
- "email": "aldrick.castro@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/c4b2f071a7e83e98302afbc9889cfc18?s=48&d=retro",
- "title": "", "verified": true, "service_account": false, "disabled": false,
- "allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
- {"roles": {"data": [{"type": "roles", "id": "fa017a35-bfcb-11eb-a4d7-da7ad0900002"}]},
- "org": {"data": {"type": "orgs", "id": "fa017a34-bfcb-11eb-a4d7-da7ad0900002"}}}},
- {"type": "users", "id": "2d0d2076-bfcd-11eb-a4d7-da7ad0900002", "attributes":
- {"name": "Frog", "handle": "frog@datadoghq.com", "created_at": "2021-05-28T15:55:50.995606+00:00",
- "modified_at": "2022-10-28T07:43:41.792011+00:00", "email": "frog@datadoghq.com",
- "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro",
- "title": "", "verified": true, "service_account": false, "disabled": false,
- "allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
- {"roles": {"data": [{"type": "roles", "id": "fa017a35-bfcb-11eb-a4d7-da7ad0900002"}]},
- "org": {"data": {"type": "orgs", "id": "fa017a34-bfcb-11eb-a4d7-da7ad0900002"}}}},
- {"type": "users", "id": "2c9609cc-c316-11eb-a516-da7ad0900002", "attributes":
- {"name": "", "handle": "karimovj@gmail.com", "created_at": "2021-06-01T20:15:56.964166+00:00",
- "modified_at": "2021-06-04T19:49:43.686963+00:00", "email": "karimovj@gmail.com",
- "icon": "https://secure.gravatar.com/avatar/4df2a0457aa2d2f4bff089e88d1ed8e4?s=48&d=retro",
- "title": "", "verified": true, "service_account": false, "disabled": true,
- "allowed_login_methods": [], "status": "Disabled", "mfa_enabled": false},
- "relationships": {"roles": {"data": [{"type": "roles", "id": "fa017a37-bfcb-11eb-a4d7-da7ad0900002"}]},
- "org": {"data": {"type": "orgs", "id": "fa017a34-bfcb-11eb-a4d7-da7ad0900002"}}}},
- {"type": "users", "id": "38111a03-e9ec-11ed-826a-4614aff52c0c", "attributes":
- {"name": "Kevin Zou", "handle": "kevin.zou@datadoghq.com", "created_at": "2023-05-03T19:53:48.056641+00:00",
- "modified_at": "2023-05-09T18:54:37.443272+00:00", "email": "kevin.zou@datadoghq.com",
- "icon": "https://secure.gravatar.com/avatar/927e28676d353bcee29248ed2ca7ad9c?s=48&d=retro",
- "title": "", "verified": true, "service_account": false, "disabled": false,
- "allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
- {"roles": {"data": [{"type": "roles", "id": "fa017a35-bfcb-11eb-a4d7-da7ad0900002"}]},
- "org": {"data": {"type": "orgs", "id": "fa017a34-bfcb-11eb-a4d7-da7ad0900002"}}}},
- {"type": "users", "id": "076756a8-c887-11eb-a639-da7ad0900002", "attributes":
- {"name": "test-user", "handle": "new@example.com", "created_at": "2021-06-08T18:26:23.527127+00:00",
- "modified_at": "2021-07-15T20:28:39.614554+00:00", "email": "new@example.com",
- "icon": "https://secure.gravatar.com/avatar/b681d72feaf8bf6a93d9a8ab86679ec3?s=48&d=retro",
- "title": "", "verified": false, "service_account": false, "disabled": false,
- "allowed_login_methods": [], "status": "Pending", "mfa_enabled": false}, "relationships":
- {"roles": {"data": []}, "org": {"data": {"type": "orgs", "id": "fa017a34-bfcb-11eb-a4d7-da7ad0900002"}}}},
- {"type": "users", "id": "69b5667c-c7cb-11eb-a618-da7ad0900002", "attributes":
- {"name": "Noueman Khalikine", "handle": "noueman.khalikine@datadoghq.com",
- "created_at": "2021-06-07T20:03:23.070251+00:00", "modified_at": "2021-06-09T10:17:49.825007+00:00",
- "email": "noueman.khalikine@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/92d6421ea95d9f7b8d60c8270c95d84a?s=48&d=retro",
- "title": "", "verified": true, "service_account": false, "disabled": false,
- "allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
- {"roles": {"data": [{"type": "roles", "id": "fa017a35-bfcb-11eb-a4d7-da7ad0900002"}]},
- "org": {"data": {"type": "orgs", "id": "fa017a34-bfcb-11eb-a4d7-da7ad0900002"}}}},
- {"type": "users", "id": "fa017a39-bfcb-11eb-a4d7-da7ad0900002", "attributes":
- {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com", "created_at":
- "2021-05-28T15:47:16.257550+00:00", "modified_at": "2021-05-28T15:47:16.299685+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": [], "status": "Active", "mfa_enabled": false}, "relationships":
- {"roles": {"data": [{"type": "roles", "id": "fa017a35-bfcb-11eb-a4d7-da7ad0900002"}]},
- "org": {"data": {"type": "orgs", "id": "fa017a34-bfcb-11eb-a4d7-da7ad0900002"}}}},
- {"type": "users", "id": "db1205fc-c7b0-11eb-a606-da7ad0900002", "attributes":
- {"name": "None+ updated", "handle": "test-user-example@datadoghq.com", "created_at":
- "2021-06-07T16:53:16.848154+00:00", "modified_at": "2021-07-26T20:34:55.537026+00:00",
- "email": "test-user-example@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/034ab28ed9a3b29bccdb4d7b94cd7e03?s=48&d=retro",
- "title": "", "verified": false, "service_account": false, "disabled": false,
- "allowed_login_methods": [], "status": "Pending", "mfa_enabled": false}, "relationships":
- {"roles": {"data": [{"type": "roles", "id": "fa017a37-bfcb-11eb-a4d7-da7ad0900002"}]},
- "org": {"data": {"type": "orgs", "id": "fa017a34-bfcb-11eb-a4d7-da7ad0900002"}}}},
- {"type": "users", "id": "82713226-ebdf-11eb-b25e-da7ad0900002", "attributes":
- {"name": "Updated", "handle": "user_without_role@example.com", "created_at":
- "2021-07-23T17:57:56.360770+00:00", "modified_at": "2022-01-12T23:22:56.070309+00:00",
- "email": "user_without_role@example.com", "icon": "https://secure.gravatar.com/avatar/a0985e94ca4206b92a3504c0222b3f7e?s=48&d=retro",
- "title": "", "verified": false, "service_account": false, "disabled": true,
- "allowed_login_methods": [], "status": "Disabled", "mfa_enabled": false},
- "relationships": {"roles": {"data": []}, "org": {"data": {"type": "orgs",
- "id": "fa017a34-bfcb-11eb-a4d7-da7ad0900002"}}}}], "included": [{"type": "roles",
- "id": "fa017a35-bfcb-11eb-a4d7-da7ad0900002", "attributes": {"name": "Datadog
- Admin Role", "created_at": "2021-05-28T15:47:15.884751+00:00", "modified_at":
- "2023-03-22T20:42:59.038042+00:00"}, "relationships": {"permissions": {"data":
- [{"type": "permissions", "id": "984d2f00-d3b4-11e8-a200-bb47109e9987"}, {"type":
- "permissions", "id": "5e605652-dd12-11e8-9e53-375565b8970e"}, {"type": "permissions",
- "id": "62cc036c-dd12-11e8-9e54-db9995643092"}, {"type": "permissions", "id":
- "6f66600e-dd12-11e8-9e55-7f30fbb45e73"}, {"type": "permissions", "id": "7d7c98ac-dd12-11e8-9e56-93700598622d"},
- {"type": "permissions", "id": "811ac4ca-dd12-11e8-9e57-676a7f0beef9"}, {"type":
- "permissions", "id": "84aa3ae4-dd12-11e8-9e58-a373a514ccd0"}, {"type": "permissions",
- "id": "87b00304-dd12-11e8-9e59-cbeb5f71f72f"}, {"type": "permissions", "id":
- "979df720-aed7-11e9-99c6-a7eb8373165a"}, {"type": "permissions", "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"},
- {"type": "permissions", "id": "d90f6831-d3d8-11e9-a77a-4fd230ddbc6a"}, {"type":
- "permissions", "id": "d90f6832-d3d8-11e9-a77a-bf8a2607f864"}, {"type": "permissions",
- "id": "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id":
- "48ef71ea-d8b1-11e9-a77a-93f408470ad0"}, {"type": "permissions", "id": "4d87d5f8-d8b1-11e9-a77a-eb9c8350d04f"},
- {"type": "permissions", "id": "1af86ce4-7823-11ea-93dc-d7cad1b1c6cb"}, {"type":
- "permissions", "id": "b382b982-8535-11ea-93de-2bf1bdf20798"}, {"type": "permissions",
- "id": "7314eb20-aa58-11ea-95e2-6fb6e4a451d5"}, {"type": "permissions", "id":
- "7b516476-aa58-11ea-95e2-93718cd56369"}, {"type": "permissions", "id": "80de1ec0-aa58-11ea-95e2-aff381626d5d"},
- {"type": "permissions", "id": "58b412cc-ff6d-11eb-bc9c-da7ad0900002"}, {"type":
- "permissions", "id": "9ac1d8cc-e707-11ea-aa2d-73d37e989a9d"}, {"type": "permissions",
- "id": "9de604d8-e707-11ea-aa2d-93f1a783b3a3"}, {"type": "permissions", "id":
- "46a301da-ec5c-11ea-aa9f-73bedeab67ee"}, {"type": "permissions", "id": "46a301db-ec5c-11ea-aa9f-2fe72193d60e"},
- {"type": "permissions", "id": "46a301dc-ec5c-11ea-aa9f-13b33f8f46ea"}, {"type":
- "permissions", "id": "46a301dd-ec5c-11ea-aa9f-97edfb345bc9"}, {"type": "permissions",
- "id": "46a301de-ec5c-11ea-aa9f-a73252c24806"}, {"type": "permissions", "id":
- "46a301df-ec5c-11ea-aa9f-970a9ae645e5"}, {"type": "permissions", "id": "46a301e0-ec5c-11ea-aa9f-6ba6cc675d8c"},
- {"type": "permissions", "id": "46a301e1-ec5c-11ea-aa9f-afa39f6f3e36"}, {"type":
- "permissions", "id": "46a301e2-ec5c-11ea-aa9f-1f511b7305fd"}, {"type": "permissions",
- "id": "46a301e4-ec5c-11ea-aa9f-87282b3a50cc"}, {"type": "permissions", "id":
- "07c3c146-f7f8-11ea-acf6-0bd62b9ae60e"}, {"type": "permissions", "id": "2fbdac76-f923-11ea-adbc-07f3823e2b43"},
- {"type": "permissions", "id": "372896c4-f923-11ea-adbc-4fecd107156d"}, {"type":
- "permissions", "id": "3e4d4d28-f923-11ea-adbc-e3565938c12e"}, {"type": "permissions",
- "id": "4628ca54-f923-11ea-adbc-4b2b7f88c5e9"}, {"type": "permissions", "id":
- "4ada6e36-f923-11ea-adbc-0788e5c5e3cf"}, {"type": "permissions", "id": "5025ee24-f923-11ea-adbc-576ea241df8d"},
- {"type": "permissions", "id": "55f4b5ec-f923-11ea-adbc-1bfa2334a755"}, {"type":
- "permissions", "id": "5c6b88e2-f923-11ea-adbc-abf57d079420"}, {"type": "permissions",
- "id": "642eebe6-f923-11ea-adbc-eb617674ea04"}, {"type": "permissions", "id":
- "6ba32d22-0e1a-11eb-ba44-bf9a5aafaa39"}, {"type": "permissions", "id": "a42e94b2-1476-11eb-bd08-efda28c04248"},
- {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"}, {"type":
- "permissions", "id": "43fa188e-2dce-11eb-84c0-835ad1fd6287"}, {"type": "permissions",
- "id": "465cfe66-2dce-11eb-84c0-6baa888239fa"}, {"type": "permissions", "id":
- "4916eebe-2dce-11eb-84c0-271cb2c672e8"}, {"type": "permissions", "id": "4e3f02b4-2dce-11eb-84c0-2fca946a6efc"},
- {"type": "permissions", "id": "53950c54-2dce-11eb-84c0-a79ae108f6f8"}, {"type":
- "permissions", "id": "5cbe5f9c-2dce-11eb-84c0-872d3e9f1076"}, {"type": "permissions",
- "id": "61765026-2dce-11eb-84c0-833e230d1b8f"}, {"type": "permissions", "id":
- "04bc1cf2-340a-11eb-873a-43b973c760dd"}, {"type": "permissions", "id": "8106300a-54f7-11eb-8cbc-7781a434a67b"},
- {"type": "permissions", "id": "edfd5e74-801f-11eb-96d8-da7ad0900002"}, {"type":
- "permissions", "id": "edfd5e75-801f-11eb-96d8-da7ad0900002"}, {"type": "permissions",
- "id": "bf0dcf7c-90af-11eb-9b82-da7ad0900002"}, {"type": "permissions", "id":
- "bf0dcf7d-90af-11eb-9b82-da7ad0900002"}, {"type": "permissions", "id": "7df222b6-a45c-11eb-a0af-da7ad0900002"},
- {"type": "permissions", "id": "98b984f4-b16d-11eb-a2c6-da7ad0900002"}, {"type":
- "permissions", "id": "98b984f5-b16d-11eb-a2c6-da7ad0900002"}, {"type": "permissions",
- "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id":
- "12efc211-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id": "12efc20f-d36c-11eb-a9b8-da7ad0900002"},
- {"type": "permissions", "id": "12efc210-d36c-11eb-a9b8-da7ad0900002"}, {"type":
- "permissions", "id": "97971c1c-e895-11eb-b13c-da7ad0900002"}, {"type": "permissions",
- "id": "97971c1d-e895-11eb-b13c-da7ad0900002"}, {"type": "permissions", "id":
+ string: '{"data": [{"type": "roles", "id": "fa017a35-bfcb-11eb-a4d7-da7ad0900002",
+ "attributes": {"name": "Datadog Admin Role", "created_at": "2021-05-28T15:47:15.884751+00:00",
+ "modified_at": "2023-03-22T20:42:59.038042+00:00", "user_count": 6}, "relationships":
+ {"permissions": {"data": [{"type": "permissions", "id": "984d2f00-d3b4-11e8-a200-bb47109e9987"},
+ {"type": "permissions", "id": "5e605652-dd12-11e8-9e53-375565b8970e"}, {"type":
+ "permissions", "id": "62cc036c-dd12-11e8-9e54-db9995643092"}, {"type": "permissions",
+ "id": "6f66600e-dd12-11e8-9e55-7f30fbb45e73"}, {"type": "permissions", "id":
+ "7d7c98ac-dd12-11e8-9e56-93700598622d"}, {"type": "permissions", "id": "811ac4ca-dd12-11e8-9e57-676a7f0beef9"},
+ {"type": "permissions", "id": "84aa3ae4-dd12-11e8-9e58-a373a514ccd0"}, {"type":
+ "permissions", "id": "87b00304-dd12-11e8-9e59-cbeb5f71f72f"}, {"type": "permissions",
+ "id": "979df720-aed7-11e9-99c6-a7eb8373165a"}, {"type": "permissions", "id":
+ "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id": "d90f6831-d3d8-11e9-a77a-4fd230ddbc6a"},
+ {"type": "permissions", "id": "d90f6832-d3d8-11e9-a77a-bf8a2607f864"}, {"type":
+ "permissions", "id": "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions",
+ "id": "48ef71ea-d8b1-11e9-a77a-93f408470ad0"}, {"type": "permissions", "id":
+ "4d87d5f8-d8b1-11e9-a77a-eb9c8350d04f"}, {"type": "permissions", "id": "1af86ce4-7823-11ea-93dc-d7cad1b1c6cb"},
+ {"type": "permissions", "id": "b382b982-8535-11ea-93de-2bf1bdf20798"}, {"type":
+ "permissions", "id": "7314eb20-aa58-11ea-95e2-6fb6e4a451d5"}, {"type": "permissions",
+ "id": "7b516476-aa58-11ea-95e2-93718cd56369"}, {"type": "permissions", "id":
+ "80de1ec0-aa58-11ea-95e2-aff381626d5d"}, {"type": "permissions", "id": "58b412cc-ff6d-11eb-bc9c-da7ad0900002"},
+ {"type": "permissions", "id": "9ac1d8cc-e707-11ea-aa2d-73d37e989a9d"}, {"type":
+ "permissions", "id": "9de604d8-e707-11ea-aa2d-93f1a783b3a3"}, {"type": "permissions",
+ "id": "46a301da-ec5c-11ea-aa9f-73bedeab67ee"}, {"type": "permissions", "id":
+ "46a301db-ec5c-11ea-aa9f-2fe72193d60e"}, {"type": "permissions", "id": "46a301dc-ec5c-11ea-aa9f-13b33f8f46ea"},
+ {"type": "permissions", "id": "46a301dd-ec5c-11ea-aa9f-97edfb345bc9"}, {"type":
+ "permissions", "id": "46a301de-ec5c-11ea-aa9f-a73252c24806"}, {"type": "permissions",
+ "id": "46a301df-ec5c-11ea-aa9f-970a9ae645e5"}, {"type": "permissions", "id":
+ "46a301e0-ec5c-11ea-aa9f-6ba6cc675d8c"}, {"type": "permissions", "id": "46a301e1-ec5c-11ea-aa9f-afa39f6f3e36"},
+ {"type": "permissions", "id": "46a301e2-ec5c-11ea-aa9f-1f511b7305fd"}, {"type":
+ "permissions", "id": "46a301e4-ec5c-11ea-aa9f-87282b3a50cc"}, {"type": "permissions",
+ "id": "07c3c146-f7f8-11ea-acf6-0bd62b9ae60e"}, {"type": "permissions", "id":
+ "2fbdac76-f923-11ea-adbc-07f3823e2b43"}, {"type": "permissions", "id": "372896c4-f923-11ea-adbc-4fecd107156d"},
+ {"type": "permissions", "id": "3e4d4d28-f923-11ea-adbc-e3565938c12e"}, {"type":
+ "permissions", "id": "4628ca54-f923-11ea-adbc-4b2b7f88c5e9"}, {"type": "permissions",
+ "id": "4ada6e36-f923-11ea-adbc-0788e5c5e3cf"}, {"type": "permissions", "id":
+ "5025ee24-f923-11ea-adbc-576ea241df8d"}, {"type": "permissions", "id": "55f4b5ec-f923-11ea-adbc-1bfa2334a755"},
+ {"type": "permissions", "id": "5c6b88e2-f923-11ea-adbc-abf57d079420"}, {"type":
+ "permissions", "id": "642eebe6-f923-11ea-adbc-eb617674ea04"}, {"type": "permissions",
+ "id": "6ba32d22-0e1a-11eb-ba44-bf9a5aafaa39"}, {"type": "permissions", "id":
+ "a42e94b2-1476-11eb-bd08-efda28c04248"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
+ {"type": "permissions", "id": "43fa188e-2dce-11eb-84c0-835ad1fd6287"}, {"type":
+ "permissions", "id": "465cfe66-2dce-11eb-84c0-6baa888239fa"}, {"type": "permissions",
+ "id": "4916eebe-2dce-11eb-84c0-271cb2c672e8"}, {"type": "permissions", "id":
+ "4e3f02b4-2dce-11eb-84c0-2fca946a6efc"}, {"type": "permissions", "id": "53950c54-2dce-11eb-84c0-a79ae108f6f8"},
+ {"type": "permissions", "id": "5cbe5f9c-2dce-11eb-84c0-872d3e9f1076"}, {"type":
+ "permissions", "id": "61765026-2dce-11eb-84c0-833e230d1b8f"}, {"type": "permissions",
+ "id": "04bc1cf2-340a-11eb-873a-43b973c760dd"}, {"type": "permissions", "id":
+ "8106300a-54f7-11eb-8cbc-7781a434a67b"}, {"type": "permissions", "id": "edfd5e74-801f-11eb-96d8-da7ad0900002"},
+ {"type": "permissions", "id": "edfd5e75-801f-11eb-96d8-da7ad0900002"}, {"type":
+ "permissions", "id": "bf0dcf7c-90af-11eb-9b82-da7ad0900002"}, {"type": "permissions",
+ "id": "bf0dcf7d-90af-11eb-9b82-da7ad0900002"}, {"type": "permissions", "id":
+ "7df222b6-a45c-11eb-a0af-da7ad0900002"}, {"type": "permissions", "id": "98b984f4-b16d-11eb-a2c6-da7ad0900002"},
+ {"type": "permissions", "id": "98b984f5-b16d-11eb-a2c6-da7ad0900002"}, {"type":
+ "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions",
+ "id": "12efc211-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id":
+ "12efc20f-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id": "12efc210-d36c-11eb-a9b8-da7ad0900002"},
+ {"type": "permissions", "id": "97971c1c-e895-11eb-b13c-da7ad0900002"}, {"type":
+ "permissions", "id": "97971c1d-e895-11eb-b13c-da7ad0900002"}, {"type": "permissions",
+ "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions", "id":
+ "7605ef25-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions", "id": "c95412b8-16c7-11ec-85c0-da7ad0900002"},
+ {"type": "permissions", "id": "c95412b9-16c7-11ec-85c0-da7ad0900002"}, {"type":
+ "permissions", "id": "26c79920-1703-11ec-85d2-da7ad0900002"}, {"type": "permissions",
+ "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
+ "f4473c61-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id": "020a563c-56a4-11ec-a982-da7ad0900002"},
+ {"type": "permissions", "id": "8e4d6b6e-5750-11ec-a9f4-da7ad0900002"}, {"type":
+ "permissions", "id": "945b3bb4-5884-11ec-aa6d-da7ad0900002"}, {"type": "permissions",
+ "id": "945b3bb5-5884-11ec-aa6d-da7ad0900002"}, {"type": "permissions", "id":
+ "f6e917a8-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions", "id": "f6e917aa-8502-11ec-bf20-da7ad0900002"},
+ {"type": "permissions", "id": "f6e917a9-8502-11ec-bf20-da7ad0900002"}, {"type":
+ "permissions", "id": "f6e917a6-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions",
+ "id": "f6e917a7-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions", "id":
+ "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "b6bf9ac7-9a59-11ec-8480-da7ad0900002"},
+ {"type": "permissions", "id": "e35c06b0-966b-11ec-83c9-da7ad0900002"}, {"type":
+ "permissions", "id": "2108215e-b9b4-11ec-958e-da7ad0900002"}, {"type": "permissions",
+ "id": "7b1f5089-c59e-11ec-aa32-da7ad0900002"}, {"type": "permissions", "id":
+ "1afff448-d5e9-11ec-ae37-da7ad0900002"}, {"type": "permissions", "id": "1afff449-d5e9-11ec-ae37-da7ad0900002"},
+ {"type": "permissions", "id": "6c87d3da-e5c5-11ec-b1d6-da7ad0900002"}, {"type":
+ "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions",
+ "id": "f8e941d0-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id":
+ "f8e941ce-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id": "4784b11c-f311-11ec-a5f5-da7ad0900002"},
+ {"type": "permissions", "id": "ee68fba9-173a-11ed-b00b-da7ad0900002"}, {"type":
+ "permissions", "id": "ee68fba8-173a-11ed-b00b-da7ad0900002"}, {"type": "permissions",
+ "id": "5b2c3e28-1761-11ed-b018-da7ad0900002"}, {"type": "permissions", "id":
+ "6be119a6-1cd8-11ed-b185-da7ad0900002"}, {"type": "permissions", "id": "36e2a22e-248a-11ed-b405-da7ad0900002"},
+ {"type": "permissions", "id": "4ee674f6-55d9-11ed-b10d-da7ad0900002"}, {"type":
+ "permissions", "id": "4ee7e46c-55d9-11ed-b10e-da7ad0900002"}, {"type": "permissions",
+ "id": "4ee5731c-55d9-11ed-b10b-da7ad0900002"}, {"type": "permissions", "id":
+ "4ee60688-55d9-11ed-b10c-da7ad0900002"}, {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"},
+ {"type": "permissions", "id": "824851a6-7a4c-11ed-9590-da7ad0900002"}, {"type":
+ "permissions", "id": "77d5f45e-7a5a-11ed-8abf-da7ad0900002"}, {"type": "permissions",
+ "id": "77d55a44-7a5a-11ed-8abe-da7ad0900002"}, {"type": "permissions", "id":
+ "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions", "id": "6c5c1090-7aff-11ed-a5cf-da7ad0900002"},
+ {"type": "permissions", "id": "6c59ae72-7aff-11ed-a5cc-da7ad0900002"}, {"type":
+ "permissions", "id": "6c5b7428-7aff-11ed-a5ce-da7ad0900002"}, {"type": "permissions",
+ "id": "6c5d0892-7aff-11ed-a5d0-da7ad0900002"}, {"type": "permissions", "id":
+ "6c5de654-7aff-11ed-a5d1-da7ad0900002"}, {"type": "permissions", "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"},
+ {"type": "permissions", "id": "1d76ecfa-9771-11ed-9c2f-da7ad0900002"}, {"type":
+ "permissions", "id": "ca6bfb3a-b44f-11ed-adb2-da7ad0900002"}, {"type": "permissions",
+ "id": "4dc3eec6-b468-11ed-8539-da7ad0900002"}, {"type": "permissions", "id":
+ "4dc4094c-b468-11ed-853a-da7ad0900002"}, {"type": "permissions", "id": "35dd33ea-ca2e-11ed-bca0-da7ad0900002"},
+ {"type": "permissions", "id": "36bf3d0a-ccc0-11ed-9453-da7ad0900002"}, {"type":
+ "permissions", "id": "f416f55e-db3f-11ed-8028-da7ad0900002"}, {"type": "permissions",
+ "id": "f416b1ac-db3f-11ed-8027-da7ad0900002"}, {"type": "permissions", "id":
+ "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "4e61ea18-de98-11ed-aa24-da7ad0900002"},
+ {"type": "permissions", "id": "a4316eb8-f438-11ed-8af2-da7ad0900002"}, {"type":
+ "permissions", "id": "a431bf12-f438-11ed-8af3-da7ad0900002"}, {"type": "permissions",
+ "id": "8352cf04-f6ac-11ed-9ec7-da7ad0900002"}, {"type": "permissions", "id":
+ "3a48350c-f9bc-11ed-b81c-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
+ {"type": "permissions", "id": "a77452c8-fff2-11ed-965d-da7ad0900002"}, {"type":
+ "permissions", "id": "a51b375a-ff73-11ed-8c18-da7ad0900002"}, {"type": "permissions",
+ "id": "61f9891a-0070-11ee-9c3f-da7ad0900002"}, {"type": "permissions", "id":
+ "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type": "permissions", "id": "1377ff28-0ec7-11ee-aebd-da7ad0900002"},
+ {"type": "permissions", "id": "cc8cd958-11eb-11ee-ade2-da7ad0900002"}, {"type":
+ "permissions", "id": "b1adb6e8-0949-11ee-b2c5-da7ad0900002"}, {"type": "permissions",
+ "id": "b1ad77e6-0949-11ee-b2c3-da7ad0900002"}, {"type": "permissions", "id":
+ "b1adb5da-0949-11ee-b2c4-da7ad0900002"}, {"type": "permissions", "id": "0efeff18-1cec-11ee-992d-da7ad0900002"},
+ {"type": "permissions", "id": "6c5ce898-21a4-11ee-99ef-da7ad0900002"}, {"type":
+ "permissions", "id": "6c5ce992-21a4-11ee-99f0-da7ad0900002"}, {"type": "permissions",
+ "id": "785177a6-20da-11ee-bed7-da7ad0900002"}, {"type": "permissions", "id":
+ "7850e390-20da-11ee-bed6-da7ad0900002"}, {"type": "permissions", "id": "6c5c79b2-21a4-11ee-99ee-da7ad0900002"},
+ {"type": "permissions", "id": "1b8f54cc-2ca4-11ee-9e72-da7ad0900002"}, {"type":
+ "permissions", "id": "5356dfd2-3dee-11ee-b07b-da7ad0900002"}, {"type": "permissions",
+ "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions", "id":
+ "50c270de-69ee-11ee-9151-da7ad0900002"}, {"type": "permissions", "id": "7c7836fc-6f6e-11ee-8cdd-da7ad0900002"}]}}},
+ {"type": "roles", "id": "fa017a37-bfcb-11eb-a4d7-da7ad0900002", "attributes":
+ {"name": "Datadog Read Only Role", "created_at": "2021-05-28T15:47:16.084615+00:00",
+ "modified_at": "2021-05-28T15:47:16.084615+00:00", "user_count": 1}, "relationships":
+ {"permissions": {"data": [{"type": "permissions", "id": "5e605652-dd12-11e8-9e53-375565b8970e"},
+ {"type": "permissions", "id": "6f66600e-dd12-11e8-9e55-7f30fbb45e73"}, {"type":
+ "permissions", "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions",
+ "id": "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id":
+ "1af86ce4-7823-11ea-93dc-d7cad1b1c6cb"}, {"type": "permissions", "id": "b382b982-8535-11ea-93de-2bf1bdf20798"},
+ {"type": "permissions", "id": "7314eb20-aa58-11ea-95e2-6fb6e4a451d5"}, {"type":
+ "permissions", "id": "80de1ec0-aa58-11ea-95e2-aff381626d5d"}, {"type": "permissions",
+ "id": "5025ee24-f923-11ea-adbc-576ea241df8d"}, {"type": "permissions", "id":
+ "417ba636-2dce-11eb-84c0-6bce5b0d9de0"}, {"type": "permissions", "id": "43fa188e-2dce-11eb-84c0-835ad1fd6287"},
+ {"type": "permissions", "id": "4916eebe-2dce-11eb-84c0-271cb2c672e8"}, {"type":
+ "permissions", "id": "edfd5e75-801f-11eb-96d8-da7ad0900002"}, {"type": "permissions",
+ "id": "98b984f4-b16d-11eb-a2c6-da7ad0900002"}, {"type": "permissions", "id":
+ "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id": "97971c1c-e895-11eb-b13c-da7ad0900002"},
+ {"type": "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type":
+ "permissions", "id": "7605ef25-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
+ "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
+ "8e4d6b6e-5750-11ec-a9f4-da7ad0900002"}, {"type": "permissions", "id": "945b3bb4-5884-11ec-aa6d-da7ad0900002"},
+ {"type": "permissions", "id": "f6e917a8-8502-11ec-bf20-da7ad0900002"}, {"type":
+ "permissions", "id": "f6e917a6-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions",
+ "id": "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id":
+ "f8e941cf-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id": "ee68fba8-173a-11ed-b00b-da7ad0900002"},
+ {"type": "permissions", "id": "6be119a6-1cd8-11ed-b185-da7ad0900002"}, {"type":
+ "permissions", "id": "4ee674f6-55d9-11ed-b10d-da7ad0900002"}, {"type": "permissions",
+ "id": "4ee5731c-55d9-11ed-b10b-da7ad0900002"}, {"type": "permissions", "id":
+ "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type": "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"},
+ {"type": "permissions", "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type":
+ "permissions", "id": "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions",
+ "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"}, {"type": "permissions", "id":
+ "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type": "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"},
+ {"type": "permissions", "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}},
+ {"type": "roles", "id": "fa017a36-bfcb-11eb-a4d7-da7ad0900002", "attributes":
+ {"name": "Datadog Standard Role", "created_at": "2021-05-28T15:47:15.999885+00:00",
+ "modified_at": "2021-05-28T15:47:15.999885+00:00", "user_count": 0}, "relationships":
+ {"permissions": {"data": [{"type": "permissions", "id": "984d2f00-d3b4-11e8-a200-bb47109e9987"},
+ {"type": "permissions", "id": "5e605652-dd12-11e8-9e53-375565b8970e"}, {"type":
+ "permissions", "id": "62cc036c-dd12-11e8-9e54-db9995643092"}, {"type": "permissions",
+ "id": "6f66600e-dd12-11e8-9e55-7f30fbb45e73"}, {"type": "permissions", "id":
+ "7d7c98ac-dd12-11e8-9e56-93700598622d"}, {"type": "permissions", "id": "811ac4ca-dd12-11e8-9e57-676a7f0beef9"},
+ {"type": "permissions", "id": "84aa3ae4-dd12-11e8-9e58-a373a514ccd0"}, {"type":
+ "permissions", "id": "979df720-aed7-11e9-99c6-a7eb8373165a"}, {"type": "permissions",
+ "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
+ "d90f6831-d3d8-11e9-a77a-4fd230ddbc6a"}, {"type": "permissions", "id": "d90f6832-d3d8-11e9-a77a-bf8a2607f864"},
+ {"type": "permissions", "id": "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type":
+ "permissions", "id": "48ef71ea-d8b1-11e9-a77a-93f408470ad0"}, {"type": "permissions",
+ "id": "4d87d5f8-d8b1-11e9-a77a-eb9c8350d04f"}, {"type": "permissions", "id":
+ "1af86ce4-7823-11ea-93dc-d7cad1b1c6cb"}, {"type": "permissions", "id": "b382b982-8535-11ea-93de-2bf1bdf20798"},
+ {"type": "permissions", "id": "7314eb20-aa58-11ea-95e2-6fb6e4a451d5"}, {"type":
+ "permissions", "id": "7b516476-aa58-11ea-95e2-93718cd56369"}, {"type": "permissions",
+ "id": "80de1ec0-aa58-11ea-95e2-aff381626d5d"}, {"type": "permissions", "id":
+ "58b412cc-ff6d-11eb-bc9c-da7ad0900002"}, {"type": "permissions", "id": "9ac1d8cc-e707-11ea-aa2d-73d37e989a9d"},
+ {"type": "permissions", "id": "46a301da-ec5c-11ea-aa9f-73bedeab67ee"}, {"type":
+ "permissions", "id": "46a301db-ec5c-11ea-aa9f-2fe72193d60e"}, {"type": "permissions",
+ "id": "46a301dd-ec5c-11ea-aa9f-97edfb345bc9"}, {"type": "permissions", "id":
+ "46a301e4-ec5c-11ea-aa9f-87282b3a50cc"}, {"type": "permissions", "id": "07c3c146-f7f8-11ea-acf6-0bd62b9ae60e"},
+ {"type": "permissions", "id": "372896c4-f923-11ea-adbc-4fecd107156d"}, {"type":
+ "permissions", "id": "4628ca54-f923-11ea-adbc-4b2b7f88c5e9"}, {"type": "permissions",
+ "id": "4ada6e36-f923-11ea-adbc-0788e5c5e3cf"}, {"type": "permissions", "id":
+ "5025ee24-f923-11ea-adbc-576ea241df8d"}, {"type": "permissions", "id": "55f4b5ec-f923-11ea-adbc-1bfa2334a755"},
+ {"type": "permissions", "id": "5c6b88e2-f923-11ea-adbc-abf57d079420"}, {"type":
+ "permissions", "id": "642eebe6-f923-11ea-adbc-eb617674ea04"}, {"type": "permissions",
+ "id": "6ba32d22-0e1a-11eb-ba44-bf9a5aafaa39"}, {"type": "permissions", "id":
+ "fcac2ad8-2843-11eb-8315-0fe47949d625"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
+ {"type": "permissions", "id": "43fa188e-2dce-11eb-84c0-835ad1fd6287"}, {"type":
+ "permissions", "id": "4916eebe-2dce-11eb-84c0-271cb2c672e8"}, {"type": "permissions",
+ "id": "5cbe5f9c-2dce-11eb-84c0-872d3e9f1076"}, {"type": "permissions", "id":
+ "61765026-2dce-11eb-84c0-833e230d1b8f"}, {"type": "permissions", "id": "8106300a-54f7-11eb-8cbc-7781a434a67b"},
+ {"type": "permissions", "id": "edfd5e75-801f-11eb-96d8-da7ad0900002"}, {"type":
+ "permissions", "id": "98b984f4-b16d-11eb-a2c6-da7ad0900002"}, {"type": "permissions",
+ "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id":
+ "12efc211-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id": "12efc20f-d36c-11eb-a9b8-da7ad0900002"},
+ {"type": "permissions", "id": "12efc210-d36c-11eb-a9b8-da7ad0900002"}, {"type":
+ "permissions", "id": "97971c1c-e895-11eb-b13c-da7ad0900002"}, {"type": "permissions",
+ "id": "97971c1d-e895-11eb-b13c-da7ad0900002"}, {"type": "permissions", "id":
"7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions", "id": "7605ef25-f376-11eb-b90b-da7ad0900002"},
{"type": "permissions", "id": "c95412b8-16c7-11ec-85c0-da7ad0900002"}, {"type":
"permissions", "id": "c95412b9-16c7-11ec-85c0-da7ad0900002"}, {"type": "permissions",
"id": "26c79920-1703-11ec-85d2-da7ad0900002"}, {"type": "permissions", "id":
"f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id": "f4473c61-4792-11ec-a27b-da7ad0900002"},
- {"type": "permissions", "id": "020a563c-56a4-11ec-a982-da7ad0900002"}, {"type":
- "permissions", "id": "8e4d6b6e-5750-11ec-a9f4-da7ad0900002"}, {"type": "permissions",
- "id": "945b3bb4-5884-11ec-aa6d-da7ad0900002"}, {"type": "permissions", "id":
- "945b3bb5-5884-11ec-aa6d-da7ad0900002"}, {"type": "permissions", "id": "f6e917a8-8502-11ec-bf20-da7ad0900002"},
- {"type": "permissions", "id": "f6e917aa-8502-11ec-bf20-da7ad0900002"}, {"type":
- "permissions", "id": "f6e917a9-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions",
- "id": "f6e917a6-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions", "id":
- "f6e917a7-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions", "id": "b6bf9ac6-9a59-11ec-8480-da7ad0900002"},
- {"type": "permissions", "id": "b6bf9ac7-9a59-11ec-8480-da7ad0900002"}, {"type":
- "permissions", "id": "e35c06b0-966b-11ec-83c9-da7ad0900002"}, {"type": "permissions",
- "id": "2108215e-b9b4-11ec-958e-da7ad0900002"}, {"type": "permissions", "id":
- "7b1f5089-c59e-11ec-aa32-da7ad0900002"}, {"type": "permissions", "id": "1afff448-d5e9-11ec-ae37-da7ad0900002"},
- {"type": "permissions", "id": "1afff449-d5e9-11ec-ae37-da7ad0900002"}, {"type":
- "permissions", "id": "6c87d3da-e5c5-11ec-b1d6-da7ad0900002"}, {"type": "permissions",
- "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id":
- "f8e941d0-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id": "f8e941ce-e746-11ec-b22d-da7ad0900002"},
- {"type": "permissions", "id": "4784b11c-f311-11ec-a5f5-da7ad0900002"}, {"type":
- "permissions", "id": "ee68fba9-173a-11ed-b00b-da7ad0900002"}, {"type": "permissions",
- "id": "ee68fba8-173a-11ed-b00b-da7ad0900002"}, {"type": "permissions", "id":
- "5b2c3e28-1761-11ed-b018-da7ad0900002"}, {"type": "permissions", "id": "6be119a6-1cd8-11ed-b185-da7ad0900002"},
- {"type": "permissions", "id": "36e2a22e-248a-11ed-b405-da7ad0900002"}, {"type":
- "permissions", "id": "4ee674f6-55d9-11ed-b10d-da7ad0900002"}, {"type": "permissions",
- "id": "4ee7e46c-55d9-11ed-b10e-da7ad0900002"}, {"type": "permissions", "id":
- "4ee5731c-55d9-11ed-b10b-da7ad0900002"}, {"type": "permissions", "id": "4ee60688-55d9-11ed-b10c-da7ad0900002"},
- {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type":
- "permissions", "id": "824851a6-7a4c-11ed-9590-da7ad0900002"}, {"type": "permissions",
- "id": "77d5f45e-7a5a-11ed-8abf-da7ad0900002"}, {"type": "permissions", "id":
- "77d55a44-7a5a-11ed-8abe-da7ad0900002"}, {"type": "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"},
- {"type": "permissions", "id": "6c5c1090-7aff-11ed-a5cf-da7ad0900002"}, {"type":
- "permissions", "id": "6c59ae72-7aff-11ed-a5cc-da7ad0900002"}, {"type": "permissions",
+ {"type": "permissions", "id": "8e4d6b6e-5750-11ec-a9f4-da7ad0900002"}, {"type":
+ "permissions", "id": "945b3bb4-5884-11ec-aa6d-da7ad0900002"}, {"type": "permissions",
+ "id": "f6e917a8-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions", "id":
+ "f6e917aa-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions", "id": "f6e917a9-8502-11ec-bf20-da7ad0900002"},
+ {"type": "permissions", "id": "f6e917a6-8502-11ec-bf20-da7ad0900002"}, {"type":
+ "permissions", "id": "f6e917a7-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions",
+ "id": "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id":
+ "b6bf9ac7-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "2108215e-b9b4-11ec-958e-da7ad0900002"},
+ {"type": "permissions", "id": "7b1f5089-c59e-11ec-aa32-da7ad0900002"}, {"type":
+ "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions",
+ "id": "f8e941d0-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id":
+ "f8e941ce-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id": "ee68fba9-173a-11ed-b00b-da7ad0900002"},
+ {"type": "permissions", "id": "ee68fba8-173a-11ed-b00b-da7ad0900002"}, {"type":
+ "permissions", "id": "6be119a6-1cd8-11ed-b185-da7ad0900002"}, {"type": "permissions",
+ "id": "36e2a22e-248a-11ed-b405-da7ad0900002"}, {"type": "permissions", "id":
+ "4ee674f6-55d9-11ed-b10d-da7ad0900002"}, {"type": "permissions", "id": "4ee7e46c-55d9-11ed-b10e-da7ad0900002"},
+ {"type": "permissions", "id": "4ee5731c-55d9-11ed-b10b-da7ad0900002"}, {"type":
+ "permissions", "id": "4ee60688-55d9-11ed-b10c-da7ad0900002"}, {"type": "permissions",
+ "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type": "permissions", "id":
+ "824851a6-7a4c-11ed-9590-da7ad0900002"}, {"type": "permissions", "id": "77d55a44-7a5a-11ed-8abe-da7ad0900002"},
+ {"type": "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type":
+ "permissions", "id": "6c5c1090-7aff-11ed-a5cf-da7ad0900002"}, {"type": "permissions",
"id": "6c5b7428-7aff-11ed-a5ce-da7ad0900002"}, {"type": "permissions", "id":
- "6c5d0892-7aff-11ed-a5d0-da7ad0900002"}, {"type": "permissions", "id": "6c5de654-7aff-11ed-a5d1-da7ad0900002"},
- {"type": "permissions", "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type":
- "permissions", "id": "1d76ecfa-9771-11ed-9c2f-da7ad0900002"}, {"type": "permissions",
- "id": "ca6bfb3a-b44f-11ed-adb2-da7ad0900002"}, {"type": "permissions", "id":
- "4dc3eec6-b468-11ed-8539-da7ad0900002"}, {"type": "permissions", "id": "4dc4094c-b468-11ed-853a-da7ad0900002"},
- {"type": "permissions", "id": "35dd33ea-ca2e-11ed-bca0-da7ad0900002"}, {"type":
- "permissions", "id": "36bf3d0a-ccc0-11ed-9453-da7ad0900002"}, {"type": "permissions",
- "id": "f416f55e-db3f-11ed-8028-da7ad0900002"}, {"type": "permissions", "id":
- "f416b1ac-db3f-11ed-8027-da7ad0900002"}, {"type": "permissions", "id": "4e61a95e-de98-11ed-aa23-da7ad0900002"},
- {"type": "permissions", "id": "4e61ea18-de98-11ed-aa24-da7ad0900002"}, {"type":
- "permissions", "id": "a4316eb8-f438-11ed-8af2-da7ad0900002"}, {"type": "permissions",
- "id": "a431bf12-f438-11ed-8af3-da7ad0900002"}, {"type": "permissions", "id":
- "8352cf04-f6ac-11ed-9ec7-da7ad0900002"}, {"type": "permissions", "id": "3a48350c-f9bc-11ed-b81c-da7ad0900002"},
- {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"}, {"type":
- "permissions", "id": "a77452c8-fff2-11ed-965d-da7ad0900002"}, {"type": "permissions",
- "id": "a51b375a-ff73-11ed-8c18-da7ad0900002"}, {"type": "permissions", "id":
- "61f9891a-0070-11ee-9c3f-da7ad0900002"}, {"type": "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"},
- {"type": "permissions", "id": "1377ff28-0ec7-11ee-aebd-da7ad0900002"}, {"type":
- "permissions", "id": "cc8cd958-11eb-11ee-ade2-da7ad0900002"}, {"type": "permissions",
- "id": "b1adb6e8-0949-11ee-b2c5-da7ad0900002"}, {"type": "permissions", "id":
+ "6c5de654-7aff-11ed-a5d1-da7ad0900002"}, {"type": "permissions", "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"},
+ {"type": "permissions", "id": "ca6bfb3a-b44f-11ed-adb2-da7ad0900002"}, {"type":
+ "permissions", "id": "4dc3eec6-b468-11ed-8539-da7ad0900002"}, {"type": "permissions",
+ "id": "4dc4094c-b468-11ed-853a-da7ad0900002"}, {"type": "permissions", "id":
+ "36bf3d0a-ccc0-11ed-9453-da7ad0900002"}, {"type": "permissions", "id": "f416f55e-db3f-11ed-8028-da7ad0900002"},
+ {"type": "permissions", "id": "f416b1ac-db3f-11ed-8027-da7ad0900002"}, {"type":
+ "permissions", "id": "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions",
+ "id": "4e61ea18-de98-11ed-aa24-da7ad0900002"}, {"type": "permissions", "id":
+ "a4316eb8-f438-11ed-8af2-da7ad0900002"}, {"type": "permissions", "id": "a431bf12-f438-11ed-8af3-da7ad0900002"},
+ {"type": "permissions", "id": "8352cf04-f6ac-11ed-9ec7-da7ad0900002"}, {"type":
+ "permissions", "id": "3a48350c-f9bc-11ed-b81c-da7ad0900002"}, {"type": "permissions",
+ "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"}, {"type": "permissions", "id":
+ "a77452c8-fff2-11ed-965d-da7ad0900002"}, {"type": "permissions", "id": "a51b375a-ff73-11ed-8c18-da7ad0900002"},
+ {"type": "permissions", "id": "61f9891a-0070-11ee-9c3f-da7ad0900002"}, {"type":
+ "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type": "permissions",
+ "id": "cc8cd958-11eb-11ee-ade2-da7ad0900002"}, {"type": "permissions", "id":
"b1ad77e6-0949-11ee-b2c3-da7ad0900002"}, {"type": "permissions", "id": "b1adb5da-0949-11ee-b2c4-da7ad0900002"},
{"type": "permissions", "id": "0efeff18-1cec-11ee-992d-da7ad0900002"}, {"type":
- "permissions", "id": "6c5ce898-21a4-11ee-99ef-da7ad0900002"}, {"type": "permissions",
- "id": "6c5ce992-21a4-11ee-99f0-da7ad0900002"}, {"type": "permissions", "id":
- "785177a6-20da-11ee-bed7-da7ad0900002"}, {"type": "permissions", "id": "7850e390-20da-11ee-bed6-da7ad0900002"},
- {"type": "permissions", "id": "6c5c79b2-21a4-11ee-99ee-da7ad0900002"}, {"type":
- "permissions", "id": "1b8f54cc-2ca4-11ee-9e72-da7ad0900002"}, {"type": "permissions",
- "id": "5356dfd2-3dee-11ee-b07b-da7ad0900002"}, {"type": "permissions", "id":
- "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions", "id": "50c270de-69ee-11ee-9151-da7ad0900002"},
- {"type": "permissions", "id": "7c7836fc-6f6e-11ee-8cdd-da7ad0900002"}]}}},
- {"type": "permissions", "id": "984d2f00-d3b4-11e8-a200-bb47109e9987", "attributes":
- {"name": "standard", "display_name": "Standard Access", "description": "Deprecated.
- Standard Access has been replaced by more specific permissions.", "created":
- "2018-10-19T15:35:23.756736+00:00", "group_name": "General", "display_type":
- "other", "restricted": false}}, {"type": "permissions", "id": "5e605652-dd12-11e8-9e53-375565b8970e",
- "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-31T13:39:19.727450+00:00", "group_name":
- "Log Management", "display_type": "read", "restricted": false}}, {"type":
- "permissions", "id": "62cc036c-dd12-11e8-9e54-db9995643092", "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-31T13:39:27.148615+00:00",
+ "permissions", "id": "785177a6-20da-11ee-bed7-da7ad0900002"}, {"type": "permissions",
+ "id": "6c5c79b2-21a4-11ee-99ee-da7ad0900002"}, {"type": "permissions", "id":
+ "1b8f54cc-2ca4-11ee-9e72-da7ad0900002"}, {"type": "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"},
+ {"type": "permissions", "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}},
+ {"type": "roles", "id": "e8406dae-760f-11ed-b571-da7ad0900002", "attributes":
+ {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670404619",
+ "created_at": "2022-12-07T09:17:01.147039+00:00", "modified_at": "2022-12-07T09:17:01.261261+00:00",
+ "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
+ "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
+ "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
+ {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
+ "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
+ "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
+ "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"},
+ {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type":
+ "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions",
+ "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type": "permissions", "id":
+ "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
+ {"type": "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type":
+ "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions",
+ "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}, {"type": "roles", "id":
+ "fe9dd0a0-760f-11ed-b4a5-da7ad0900002", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670404656",
+ "created_at": "2022-12-07T09:17:38.668879+00:00", "modified_at": "2022-12-07T09:17:38.767135+00:00",
+ "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
+ "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
+ "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
+ {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
+ "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
+ "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
+ "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"},
+ {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type":
+ "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions",
+ "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type": "permissions", "id":
+ "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
+ {"type": "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type":
+ "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions",
+ "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}, {"type": "roles", "id":
+ "cf8c10f0-7610-11ed-8608-da7ad0900002", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405007",
+ "created_at": "2022-12-07T09:23:29.196890+00:00", "modified_at": "2022-12-07T09:23:29.281877+00:00",
+ "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
+ "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
+ "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
+ {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
+ "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
+ "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
+ "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"},
+ {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type":
+ "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions",
+ "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type": "permissions", "id":
+ "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
+ {"type": "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type":
+ "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions",
+ "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}, {"type": "roles", "id":
+ "ea30031a-7612-11ed-abf9-da7ad0900002", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405911",
+ "created_at": "2022-12-07T09:38:32.884937+00:00", "modified_at": "2022-12-07T09:38:32.985618+00:00",
+ "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
+ "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
+ "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
+ {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
+ "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
+ "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
+ "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"},
+ {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type":
+ "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions",
+ "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type": "permissions", "id":
+ "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
+ {"type": "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type":
+ "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions",
+ "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}, {"type": "roles", "id":
+ "f1e67558-7612-11ed-9fc8-da7ad0900002", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405924",
+ "created_at": "2022-12-07T09:38:45.824787+00:00", "modified_at": "2022-12-07T09:38:45.921838+00:00",
+ "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
+ "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
+ "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
+ {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
+ "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
+ "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
+ "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"},
+ {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type":
+ "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions",
+ "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type": "permissions", "id":
+ "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
+ {"type": "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type":
+ "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions",
+ "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}, {"type": "roles", "id":
+ "430aea7c-0501-11ee-9f44-da7ad0900002", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1686121345",
+ "created_at": "2023-06-07T07:02:27.295218+00:00", "modified_at": "2023-06-07T07:02:27.326358+00:00",
+ "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
+ "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
+ "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
+ {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
+ "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
+ "id": "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id":
+ "f8e941cf-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"},
+ {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"}, {"type":
+ "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type": "permissions",
+ "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions", "id":
+ "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}], "meta": {"page": {"total_count":
+ 9, "total_filtered_count": 9}}}'
+ headers:
+ Content-Type:
+ - application/json
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: GET
+ uri: https://api.datadoghq.com/api/v2/permissions
+ response:
+ body:
+ string: '{"data": [{"type": "permissions", "id": "984a2bd4-d3b4-11e8-a1ff-a7f660d43029",
+ "attributes": {"name": "admin", "display_name": "Privileged Access", "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.", "created": "2018-10-19T15:35:23.734317+00:00", "group_name":
+ "General", "display_type": "other", "restricted": false}}, {"type": "permissions",
+ "id": "984d2f00-d3b4-11e8-a200-bb47109e9987", "attributes": {"name": "standard",
+ "display_name": "Standard Access", "description": "Deprecated. Standard Access
+ has been replaced by more specific permissions.", "created": "2018-10-19T15:35:23.756736+00:00",
+ "group_name": "General", "display_type": "other", "restricted": false}}, {"type":
+ "permissions", "id": "5e605652-dd12-11e8-9e53-375565b8970e", "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-31T13:39:19.727450+00:00", "group_name": "Log Management", "display_type":
+ "read", "restricted": false}}, {"type": "permissions", "id": "62cc036c-dd12-11e8-9e54-db9995643092",
+ "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-31T13:39:27.148615+00:00",
"group_name": "Log Management", "display_type": "other", "restricted": false}},
{"type": "permissions", "id": "6f66600e-dd12-11e8-9e55-7f30fbb45e73", "attributes":
{"name": "logs_live_tail", "display_name": "Logs Live Tail", "description":
@@ -1511,14 +1543,20 @@ interactions:
"description": "Create, disable, and use Service Accounts in your organization.",
"created": "2020-10-22T14:55:35.814239+00:00", "group_name": "Access Management",
"display_type": "write", "restricted": false}}, {"type": "permissions", "id":
- "417ba636-2dce-11eb-84c0-6bce5b0d9de0", "attributes": {"name": "apm_read",
- "display_name": "APM Read", "description": "Read and query APM and Trace Analytics.",
- "created": "2020-11-23T20:55:45.006110+00:00", "group_name": "APM", "display_type":
- "read", "restricted": true}}, {"type": "permissions", "id": "43fa188e-2dce-11eb-84c0-835ad1fd6287",
- "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:55:49.190595+00:00", "group_name":
+ "fcac2ad8-2843-11eb-8315-0fe47949d625", "attributes": {"name": "integrations_api",
+ "display_name": "Integrations API", "description": "Deprecated. Use the Integrations
+ APIs to configure integrations. In order to configure integrations from the
+ UI, a user must also have Standard Access.", "created": "2020-11-16T19:43:23.198568+00:00",
+ "group_name": "Integrations", "display_type": "other", "restricted": false}},
+ {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0", "attributes":
+ {"name": "apm_read", "display_name": "APM Read", "description": "Read and
+ query APM and Trace Analytics.", "created": "2020-11-23T20:55:45.006110+00:00",
+ "group_name": "APM", "display_type": "read", "restricted": true}}, {"type":
+ "permissions", "id": "43fa188e-2dce-11eb-84c0-835ad1fd6287", "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:55:49.190595+00:00", "group_name":
"APM", "display_type": "read", "restricted": false}}, {"type": "permissions",
"id": "465cfe66-2dce-11eb-84c0-6baa888239fa", "attributes": {"name": "apm_retention_filter_write",
"display_name": "APM Retention Filters Write", "description": "Create, edit,
@@ -1692,6 +1730,11 @@ interactions:
{"name": "connections_write", "display_name": "Connections Write", "description":
"Create and delete connections.", "created": "2022-02-03T15:07:12.056590+00:00",
"group_name": "Workflow Automation", "display_type": "write", "restricted":
+ false}}, {"type": "permissions", "id": "7a89ec40-8b69-11ec-812d-da7ad0900002",
+ "attributes": {"name": "incidents_private_global_access", "display_name":
+ "Private Incidents Global Access", "description": "Access all private incidents
+ in Datadog, even when not added as a responder.", "created": "2022-02-11T18:36:08.531989+00:00",
+ "group_name": "Case and Incident Management", "display_type": "other", "restricted":
false}}, {"type": "permissions", "id": "b6bf9ac6-9a59-11ec-8480-da7ad0900002",
"attributes": {"name": "notebooks_read", "display_name": "Notebooks Read",
"description": "View notebooks.", "created": "2022-03-02T18:51:05.040950+00:00",
@@ -1995,42 +2038,7 @@ interactions:
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-20T17:31:22.039614+00:00",
- "group_name": "APM", "display_type": "write", "restricted": false}}, {"type":
- "roles", "id": "fa017a37-bfcb-11eb-a4d7-da7ad0900002", "attributes": {"name":
- "Datadog Read Only Role", "created_at": "2021-05-28T15:47:16.084615+00:00",
- "modified_at": "2021-05-28T15:47:16.084615+00:00"}, "relationships": {"permissions":
- {"data": [{"type": "permissions", "id": "5e605652-dd12-11e8-9e53-375565b8970e"},
- {"type": "permissions", "id": "6f66600e-dd12-11e8-9e55-7f30fbb45e73"}, {"type":
- "permissions", "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions",
- "id": "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id":
- "1af86ce4-7823-11ea-93dc-d7cad1b1c6cb"}, {"type": "permissions", "id": "b382b982-8535-11ea-93de-2bf1bdf20798"},
- {"type": "permissions", "id": "7314eb20-aa58-11ea-95e2-6fb6e4a451d5"}, {"type":
- "permissions", "id": "80de1ec0-aa58-11ea-95e2-aff381626d5d"}, {"type": "permissions",
- "id": "5025ee24-f923-11ea-adbc-576ea241df8d"}, {"type": "permissions", "id":
- "417ba636-2dce-11eb-84c0-6bce5b0d9de0"}, {"type": "permissions", "id": "43fa188e-2dce-11eb-84c0-835ad1fd6287"},
- {"type": "permissions", "id": "4916eebe-2dce-11eb-84c0-271cb2c672e8"}, {"type":
- "permissions", "id": "edfd5e75-801f-11eb-96d8-da7ad0900002"}, {"type": "permissions",
- "id": "98b984f4-b16d-11eb-a2c6-da7ad0900002"}, {"type": "permissions", "id":
- "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id": "97971c1c-e895-11eb-b13c-da7ad0900002"},
- {"type": "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type":
- "permissions", "id": "7605ef25-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
- "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
- "8e4d6b6e-5750-11ec-a9f4-da7ad0900002"}, {"type": "permissions", "id": "945b3bb4-5884-11ec-aa6d-da7ad0900002"},
- {"type": "permissions", "id": "f6e917a8-8502-11ec-bf20-da7ad0900002"}, {"type":
- "permissions", "id": "f6e917a6-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions",
- "id": "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id":
- "f8e941cf-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id": "ee68fba8-173a-11ed-b00b-da7ad0900002"},
- {"type": "permissions", "id": "6be119a6-1cd8-11ed-b185-da7ad0900002"}, {"type":
- "permissions", "id": "4ee674f6-55d9-11ed-b10d-da7ad0900002"}, {"type": "permissions",
- "id": "4ee5731c-55d9-11ed-b10b-da7ad0900002"}, {"type": "permissions", "id":
- "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type": "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"},
- {"type": "permissions", "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type":
- "permissions", "id": "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions",
- "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"}, {"type": "permissions", "id":
- "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type": "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"},
- {"type": "permissions", "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}],
- "meta": {"page": {"total_count": 9, "total_filtered_count": 9, "max_page_size":
- 1000}}}'
+ "group_name": "APM", "display_type": "write", "restricted": false}}]}'
headers:
Content-Type:
- application/json
@@ -2047,14 +2055,14 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/dashboard/v8u-z4u-sw5
+ uri: https://api.datadoghq.eu/api/v1/synthetics/private-locations/pl:test-create_a_private_location_returns_ok_response-1694443516-976afb4da65c8c52b3734195f46fb103
response:
body:
- string: '{"deleted_dashboard_id": "v8u-z4u-sw5"}'
+ string: ''
headers: {}
status:
- code: 200
- message: OK
+ code: 204
+ message: No Content
- request:
body: null
headers:
@@ -2065,14 +2073,14 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/dashboard/daj-ywa-p2h
+ uri: https://api.datadoghq.eu/api/v1/synthetics/private-locations/pl:test-create_a_private_location_returns_ok_response-1694441705-a585a8086b00df22b9bd471e79240397
response:
body:
- string: '{"deleted_dashboard_id": "daj-ywa-p2h"}'
+ string: ''
headers: {}
status:
- code: 200
- message: OK
+ code: 204
+ message: No Content
- request:
body: null
headers:
@@ -2083,14 +2091,14 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/dashboard/n5v-rx6-a2v
+ uri: https://api.datadoghq.eu/api/v1/synthetics/private-locations/pl:test-create_a_private_location_returns_ok_response-1694441551-992177a06990ebfb5040e5ec2fda60f9
response:
body:
- string: '{"deleted_dashboard_id": "n5v-rx6-a2v"}'
+ string: ''
headers: {}
status:
- code: 200
- message: OK
+ code: 204
+ message: No Content
- request:
body: null
headers:
@@ -2101,14 +2109,14 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/monitor/14510182?force=True
+ uri: https://api.datadoghq.eu/api/v1/synthetics/private-locations/pl:test-private-variable-8963e7cc787dd5f89d2d480415bd6e41
response:
body:
- string: '{"deleted_monitor_id": 14510182}'
+ string: ''
headers: {}
status:
- code: 200
- message: OK
+ code: 204
+ message: No Content
- request:
body: null
headers:
@@ -2119,10 +2127,10 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/monitor/14510186?force=True
+ uri: https://api.datadoghq.eu/api/v1/dashboard/bu3-mab-7wq
response:
body:
- string: '{"deleted_monitor_id": 14510186}'
+ string: '{"deleted_dashboard_id": "bu3-mab-7wq"}'
headers: {}
status:
code: 200
@@ -2137,10 +2145,10 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/monitor/14510196?force=True
+ uri: https://api.datadoghq.eu/api/v1/dashboard/84x-yzm-tcs
response:
body:
- string: '{"deleted_monitor_id": 14510196}'
+ string: '{"deleted_dashboard_id": "84x-yzm-tcs"}'
headers: {}
status:
code: 200
@@ -2155,10 +2163,10 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/monitor/14510197?force=True
+ uri: https://api.datadoghq.eu/api/v1/dashboard/nkw-nry-gr4
response:
body:
- string: '{"deleted_monitor_id": 14510197}'
+ string: '{"deleted_dashboard_id": "nkw-nry-gr4"}'
headers: {}
status:
code: 200
@@ -2173,10 +2181,136 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/monitor/14510183?force=True
+ uri: https://api.datadoghq.eu/api/v2/roles/39093e10-a426-11ee-930f-da7ad0900005
+ response:
+ body:
+ string: ''
+ headers: {}
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: DELETE
+ uri: https://api.datadoghq.eu/api/v2/roles/3a81548a-a426-11ee-bcb1-da7ad0900005
+ response:
+ body:
+ string: ''
+ headers: {}
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: DELETE
+ uri: https://api.datadoghq.eu/api/v2/roles/3a026b84-a426-11ee-bf48-da7ad0900005
+ response:
+ body:
+ string: ''
+ headers: {}
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: DELETE
+ uri: https://api.datadoghq.eu/api/v2/roles/39c96f28-a426-11ee-96a2-da7ad0900005
+ response:
+ body:
+ string: ''
+ headers: {}
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: DELETE
+ uri: https://api.datadoghq.eu/api/v2/roles/39432b66-a426-11ee-8954-da7ad0900005
+ response:
+ body:
+ string: ''
+ headers: {}
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: DELETE
+ uri: https://api.datadoghq.eu/api/v2/roles/3a40a55c-a426-11ee-a12b-da7ad0900005
+ response:
+ body:
+ string: ''
+ headers: {}
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: DELETE
+ uri: https://api.datadoghq.eu/api/v2/roles/39839ff2-a426-11ee-bf8c-da7ad0900005
+ response:
+ body:
+ string: ''
+ headers: {}
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: DELETE
+ uri: https://api.datadoghq.eu/api/v1/monitor/14605709?force=True
response:
body:
- string: '{"deleted_monitor_id": 14510183}'
+ string: '{"deleted_monitor_id": 14605709}'
headers: {}
status:
code: 200
@@ -2191,10 +2325,10 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/monitor/14510202?force=True
+ uri: https://api.datadoghq.eu/api/v1/monitor/14605710?force=True
response:
body:
- string: '{"deleted_monitor_id": 14510202}'
+ string: '{"deleted_monitor_id": 14605710}'
headers: {}
status:
code: 200
@@ -2209,10 +2343,10 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/monitor/14510187?force=True
+ uri: https://api.datadoghq.eu/api/v1/monitor/14605742?force=True
response:
body:
- string: '{"deleted_monitor_id": 14510187}'
+ string: '{"deleted_monitor_id": 14605742}'
headers: {}
status:
code: 200
@@ -2227,10 +2361,10 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/monitor/14510181?force=True
+ uri: https://api.datadoghq.eu/api/v1/monitor/14605712?force=True
response:
body:
- string: '{"deleted_monitor_id": 14510181}'
+ string: '{"deleted_monitor_id": 14605712}'
headers: {}
status:
code: 200
@@ -2245,10 +2379,10 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/monitor/14510185?force=True
+ uri: https://api.datadoghq.eu/api/v1/monitor/14605716?force=True
response:
body:
- string: '{"deleted_monitor_id": 14510185}'
+ string: '{"deleted_monitor_id": 14605716}'
headers: {}
status:
code: 200
@@ -2263,10 +2397,10 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/monitor/14510184?force=True
+ uri: https://api.datadoghq.eu/api/v1/monitor/14605730?force=True
response:
body:
- string: '{"deleted_monitor_id": 14510184}'
+ string: '{"deleted_monitor_id": 14605730}'
headers: {}
status:
code: 200
@@ -2281,10 +2415,10 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/monitor/14510188?force=True
+ uri: https://api.datadoghq.eu/api/v1/monitor/14605714?force=True
response:
body:
- string: '{"deleted_monitor_id": 14510188}'
+ string: '{"deleted_monitor_id": 14605714}'
headers: {}
status:
code: 200
@@ -2299,10 +2433,10 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/dashboard/lists/manual/33964
+ uri: https://api.datadoghq.eu/api/v1/monitor/14605732?force=True
response:
body:
- string: '{"deleted_dashboard_list_id": 33964}'
+ string: '{"deleted_monitor_id": 14605732}'
headers: {}
status:
code: 200
@@ -2317,10 +2451,10 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/dashboard/lists/manual/33962
+ uri: https://api.datadoghq.eu/api/v1/monitor/14605711?force=True
response:
body:
- string: '{"deleted_dashboard_list_id": 33962}'
+ string: '{"deleted_monitor_id": 14605711}'
headers: {}
status:
code: 200
@@ -2335,10 +2469,10 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/dashboard/lists/manual/33963
+ uri: https://api.datadoghq.eu/api/v1/monitor/14605715?force=True
response:
body:
- string: '{"deleted_dashboard_list_id": 33963}'
+ string: '{"deleted_monitor_id": 14605715}'
headers: {}
status:
code: 200
@@ -2353,14 +2487,14 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v2/roles/22b717f0-9e8f-11ee-a661-da7ad0900005
+ uri: https://api.datadoghq.eu/api/v1/monitor/14605713?force=True
response:
body:
- string: ''
+ string: '{"deleted_monitor_id": 14605713}'
headers: {}
status:
- code: 204
- message: No Content
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -2371,14 +2505,14 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v2/roles/24d549e4-9e8f-11ee-bcac-da7ad0900005
+ uri: https://api.datadoghq.eu/api/v1/dashboard/lists/manual/34030
response:
body:
- string: ''
+ string: '{"deleted_dashboard_list_id": 34030}'
headers: {}
status:
- code: 204
- message: No Content
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -2389,14 +2523,14 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v2/roles/234a9598-9e8f-11ee-8654-da7ad0900005
+ uri: https://api.datadoghq.eu/api/v1/dashboard/lists/manual/34028
response:
body:
- string: ''
+ string: '{"deleted_dashboard_list_id": 34028}'
headers: {}
status:
- code: 204
- message: No Content
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -2407,14 +2541,14 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v2/roles/22ffccc0-9e8f-11ee-8103-da7ad0900005
+ uri: https://api.datadoghq.eu/api/v1/dashboard/lists/manual/34029
response:
body:
- string: ''
+ string: '{"deleted_dashboard_list_id": 34029}'
headers: {}
status:
- code: 204
- message: No Content
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -2425,14 +2559,14 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v2/roles/23fcc8b2-9e8f-11ee-a583-da7ad0900005
+ uri: https://api.datadoghq.eu/api/v1/synthetics/variables/ec1fc3a9-8a79-4048-b3f7-38298fef4bd9
response:
body:
string: ''
headers: {}
status:
- code: 204
- message: No Content
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -2443,14 +2577,14 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v2/roles/2491cf2a-9e8f-11ee-8590-da7ad0900005
+ uri: https://api.datadoghq.eu/api/v1/synthetics/variables/06fdd901-505a-465a-822e-18f547e598cf
response:
body:
- string: ''
+ string: '{"errors": ["Synthetics global variable in use"]}'
headers: {}
status:
- code: 204
- message: No Content
+ code: 400
+ message: Bad Request
- request:
body: null
headers:
@@ -2461,14 +2595,14 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v2/roles/2445ef1a-9e8f-11ee-b62e-da7ad0900005
+ uri: https://api.datadoghq.eu/api/v1/synthetics/variables/ae21f137-1c0e-4080-996d-524fe113da0e
response:
body:
string: ''
headers: {}
status:
- code: 204
- message: No Content
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -2479,14 +2613,14 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/synthetics/private-locations/pl:test-create_a_private_location_returns_ok_response-1694441705-e351bb7df4f464d647a1558946a964b7
+ uri: https://api.datadoghq.eu/api/v1/synthetics/variables/81b56828-4aee-4a07-886d-c2d0b7816626
response:
body:
string: ''
headers: {}
status:
- code: 204
- message: No Content
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -2497,14 +2631,14 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/synthetics/private-locations/pl:test-create_a_private_location_returns_ok_response-1694441551-9eba6e4fa1e226c4f258afd5c0411e20
+ uri: https://api.datadoghq.eu/api/v1/synthetics/variables/0cdc8837-a895-4a30-9b8e-70f915b5cd47
response:
body:
string: ''
headers: {}
status:
- code: 204
- message: No Content
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -2515,14 +2649,14 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/synthetics/private-locations/pl:test-create_a_private_location_returns_ok_response-1694443516-b0b55721d21deff0afd76a41c764d98c
+ uri: https://api.datadoghq.eu/api/v1/synthetics/variables/b994f767-c190-4dae-9924-0048a6a63336
response:
body:
- string: ''
+ string: '{"errors": ["Synthetics global variable in use"]}'
headers: {}
status:
- code: 204
- message: No Content
+ code: 400
+ message: Bad Request
- request:
body: null
headers:
@@ -2533,14 +2667,14 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/synthetics/private-locations/pl:test-private-variable-9fc470dc49d4115924cacc1585bd2c6d
+ uri: https://api.datadoghq.eu/api/v1/synthetics/variables/a7460a49-dbd4-4d88-925f-f3505a6c4af3
response:
body:
string: ''
headers: {}
status:
- code: 204
- message: No Content
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -2551,10 +2685,10 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/slo/2fa9470a541e56b085e94458c8181f62?force=True
+ uri: https://api.datadoghq.eu/api/v1/slo/c56feb058139508997fbf3c5cad197cf?force=True
response:
body:
- string: '{"data": ["2fa9470a541e56b085e94458c8181f62"], "error": null}'
+ string: '{"data": ["c56feb058139508997fbf3c5cad197cf"], "error": null}'
headers: {}
status:
code: 200
@@ -2569,10 +2703,10 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/slo/b1e2084a1f04586dab7ff2be7bb7afee?force=True
+ uri: https://api.datadoghq.eu/api/v1/slo/62aa53ae0b9d5b388725ef3a03ef91be?force=True
response:
body:
- string: '{"data": ["b1e2084a1f04586dab7ff2be7bb7afee"], "error": null}'
+ string: '{"data": ["62aa53ae0b9d5b388725ef3a03ef91be"], "error": null}'
headers: {}
status:
code: 200
@@ -2587,16 +2721,16 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/slo/2056b4c971c15e528efffc8fc78178a4?force=True
+ uri: https://api.datadoghq.eu/api/v1/slo/757d56d2b04c5ca198490666f0391009?force=True
response:
body:
- string: '{"data": ["2056b4c971c15e528efffc8fc78178a4"], "error": null}'
+ string: '{"data": ["757d56d2b04c5ca198490666f0391009"], "error": null}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"public_ids": ["bsb-uvh-xzh"]}'
+ body: null
headers:
Accept:
- '*/*'
@@ -2604,17 +2738,35 @@ interactions:
- gzip, deflate
Content-Type:
- application/json
- method: POST
- uri: https://api.datadoghq.eu/api/v1/synthetics/tests/delete
+ method: DELETE
+ uri: https://api.datadoghq.eu/api/v2/users/2abdf182-a0fc-11ee-a6a8-065d78846176
response:
body:
- string: '{"deleted_tests": [{"public_id": "bsb-uvh-xzh", "deleted_at": "2023-12-19T16:54:13.716701+00:00"}]}'
+ string: ''
headers: {}
status:
- code: 200
- message: OK
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: DELETE
+ uri: https://api.datadoghq.eu/api/v2/users/16646c0f-a0fc-11ee-ac60-ced34c8fb548
+ response:
+ body:
+ string: ''
+ headers: {}
+ status:
+ code: 204
+ message: No Content
- request:
- body: '{"public_ids": ["q6t-wfn-646"]}'
+ body: '{"public_ids": ["xc2-r2r-75g"]}'
headers:
Accept:
- '*/*'
@@ -2626,13 +2778,13 @@ interactions:
uri: https://api.datadoghq.eu/api/v1/synthetics/tests/delete
response:
body:
- string: '{"deleted_tests": [{"public_id": "q6t-wfn-646", "deleted_at": "2023-12-19T16:54:14.187238+00:00"}]}'
+ string: '{"deleted_tests": [{"public_id": "xc2-r2r-75g", "deleted_at": "2023-12-26T19:38:22.652563+00:00"}]}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"public_ids": ["ppw-qzr-pk4"]}'
+ body: '{"public_ids": ["fun-hq6-tqi"]}'
headers:
Accept:
- '*/*'
@@ -2644,13 +2796,13 @@ interactions:
uri: https://api.datadoghq.eu/api/v1/synthetics/tests/delete
response:
body:
- string: '{"deleted_tests": [{"public_id": "ppw-qzr-pk4", "deleted_at": "2023-12-19T16:54:14.618610+00:00"}]}'
+ string: '{"deleted_tests": [{"public_id": "fun-hq6-tqi", "deleted_at": "2023-12-26T19:38:23.124864+00:00"}]}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"public_ids": ["2um-zt6-cby"]}'
+ body: '{"public_ids": ["yt2-2u2-uwv"]}'
headers:
Accept:
- '*/*'
@@ -2662,13 +2814,13 @@ interactions:
uri: https://api.datadoghq.eu/api/v1/synthetics/tests/delete
response:
body:
- string: '{"deleted_tests": [{"public_id": "2um-zt6-cby", "deleted_at": "2023-12-19T16:54:15.011843+00:00"}]}'
+ string: '{"deleted_tests": [{"public_id": "yt2-2u2-uwv", "deleted_at": "2023-12-26T19:38:23.498863+00:00"}]}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"public_ids": ["xiz-gdx-4ht"]}'
+ body: '{"public_ids": ["nd8-dwy-6rh"]}'
headers:
Accept:
- '*/*'
@@ -2680,13 +2832,13 @@ interactions:
uri: https://api.datadoghq.eu/api/v1/synthetics/tests/delete
response:
body:
- string: '{"deleted_tests": [{"public_id": "xiz-gdx-4ht", "deleted_at": "2023-12-19T16:54:15.564293+00:00"}]}'
+ string: '{"deleted_tests": [{"public_id": "nd8-dwy-6rh", "deleted_at": "2023-12-26T19:38:23.870334+00:00"}]}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"public_ids": ["asu-8wx-azj"]}'
+ body: '{"public_ids": ["3tj-xf6-kej"]}'
headers:
Accept:
- '*/*'
@@ -2698,13 +2850,13 @@ interactions:
uri: https://api.datadoghq.eu/api/v1/synthetics/tests/delete
response:
body:
- string: '{"deleted_tests": [{"public_id": "asu-8wx-azj", "deleted_at": "2023-12-19T16:54:16.645468+00:00"}]}'
+ string: '{"deleted_tests": [{"public_id": "3tj-xf6-kej", "deleted_at": "2023-12-26T19:38:24.159412+00:00"}]}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"public_ids": ["46s-tjh-9bw"]}'
+ body: '{"public_ids": ["5fu-ndx-75u"]}'
headers:
Accept:
- '*/*'
@@ -2716,13 +2868,13 @@ interactions:
uri: https://api.datadoghq.eu/api/v1/synthetics/tests/delete
response:
body:
- string: '{"deleted_tests": [{"public_id": "46s-tjh-9bw", "deleted_at": "2023-12-19T16:54:17.114817+00:00"}]}'
+ string: '{"deleted_tests": [{"public_id": "5fu-ndx-75u", "deleted_at": "2023-12-26T19:38:24.491163+00:00"}]}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"public_ids": ["jkp-y9b-48j"]}'
+ body: '{"public_ids": ["hmi-svc-itn"]}'
headers:
Accept:
- '*/*'
@@ -2734,13 +2886,13 @@ interactions:
uri: https://api.datadoghq.eu/api/v1/synthetics/tests/delete
response:
body:
- string: '{"deleted_tests": [{"public_id": "jkp-y9b-48j", "deleted_at": "2023-12-19T16:54:17.558188+00:00"}]}'
+ string: '{"deleted_tests": [{"public_id": "hmi-svc-itn", "deleted_at": "2023-12-26T19:38:24.907161+00:00"}]}'
headers: {}
status:
code: 200
message: OK
- request:
- body: null
+ body: '{"public_ids": ["cau-k3f-nhx"]}'
headers:
Accept:
- '*/*'
@@ -2748,11 +2900,11 @@ interactions:
- gzip, deflate
Content-Type:
- application/json
- method: DELETE
- uri: https://api.datadoghq.eu/api/v1/synthetics/variables/a71e1eaf-3a01-449b-88f2-71ef1a511e75
+ method: POST
+ uri: https://api.datadoghq.eu/api/v1/synthetics/tests/delete
response:
body:
- string: ''
+ string: '{"deleted_tests": [{"public_id": "cau-k3f-nhx", "deleted_at": "2023-12-26T19:38:25.296135+00:00"}]}'
headers: {}
status:
code: 200
@@ -2767,14 +2919,14 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/synthetics/variables/1c56de3d-e4c9-4cf0-bd9b-84ce650a4180
+ uri: https://api.datadoghq.eu/api/v2/incidents/b96b70c7-8568-5db1-b555-b8a681127ffd
response:
body:
string: ''
headers: {}
status:
- code: 200
- message: OK
+ code: 204
+ message: No Content
- request:
body: null
headers:
@@ -2785,14 +2937,14 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/synthetics/variables/da753a0b-80e8-49a8-a0ae-302f5cd654b0
+ uri: https://api.datadoghq.eu/api/v2/incidents/cddc3af9-6e80-5838-9e88-8658a3b05904
response:
body:
string: ''
headers: {}
status:
- code: 200
- message: OK
+ code: 204
+ message: No Content
- request:
body: null
headers:
@@ -2802,11 +2954,928 @@ interactions:
- gzip, deflate
Content-Type:
- application/json
- method: DELETE
- uri: https://api.datadoghq.eu/api/v1/synthetics/variables/c56cfd52-030e-4508-9262-9a3a1ac7b2b5
+ method: GET
+ uri: https://api.datadoghq.eu/api/v2/users?page%5Bnumber%5D=0&page%5Bsize%5D=100
response:
body:
- string: ''
+ string: '{"data": [{"type": "users", "id": "dc00e597-9e99-11ee-aa09-5628ff9a83db",
+ "attributes": {"name": "Aldrick Castro", "handle": "aldrick.castro@datadoghq.com",
+ "created_at": "2023-12-19T18:10:15.329617+00:00", "modified_at": "2023-12-19T19:09:21.769743+00:00",
+ "email": "aldrick.castro@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/c4b2f071a7e83e98302afbc9889cfc18?s=48&d=retro",
+ "title": "", "verified": true, "service_account": false, "disabled": false,
+ "allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
+ {"roles": {"data": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}},
+ {"type": "users", "id": "dc007960-9e99-11ee-a2db-ca9976f8cdd6", "attributes":
+ {"name": "", "handle": "frog@datadoghq.com", "created_at": "2023-12-19T18:10:15.326776+00:00",
+ "modified_at": "2023-12-19T18:15:23.723082+00:00", "email": "frog@datadoghq.com",
+ "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro",
+ "title": "", "verified": true, "service_account": false, "disabled": false,
+ "allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
+ {"roles": {"data": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}},
+ {"type": "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "attributes":
+ {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "created_at":
+ "2023-12-19T18:16:46.899841+00:00", "modified_at": "2023-12-26T19:37:53.198907+00:00",
+ "email": "frog@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro",
+ "title": "", "verified": true, "service_account": true, "disabled": false,
+ "allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
+ {"roles": {"data": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}},
+ {"type": "users", "id": "29e24184-a0fc-11ee-8daf-aea76f621e57", "attributes":
+ {"name": "Kevin Zou", "handle": "kevin.zou@datadoghq.com", "created_at": "2023-12-22T18:58:58.996081+00:00",
+ "modified_at": "2023-12-26T19:37:53.670047+00:00", "email": "kevin.zou@datadoghq.com",
+ "icon": "https://secure.gravatar.com/avatar/927e28676d353bcee29248ed2ca7ad9c?s=48&d=retro",
+ "title": "", "verified": false, "service_account": false, "disabled": false,
+ "allowed_login_methods": [], "status": "Pending", "mfa_enabled": false}, "relationships":
+ {"roles": {"data": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}},
+ {"type": "users", "id": "16646c0f-a0fc-11ee-ac60-ced34c8fb548", "attributes":
+ {"name": "test-user", "handle": "new@example.com", "created_at": "2023-12-22T18:58:26.294705+00:00",
+ "modified_at": "2023-12-26T19:38:22.361465+00:00", "email": "new@example.com",
+ "icon": "https://secure.gravatar.com/avatar/b681d72feaf8bf6a93d9a8ab86679ec3?s=48&d=retro",
+ "title": "", "verified": false, "service_account": false, "disabled": true,
+ "allowed_login_methods": [], "status": "Disabled", "mfa_enabled": false},
+ "relationships": {"roles": {"data": []}, "org": {"data": {"type": "orgs",
+ "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}}, {"type": "users", "id":
+ "2a4ba4d1-a0fc-11ee-ac60-ced34c8fb548", "attributes": {"name": "Noueman Khalikine",
+ "handle": "noueman.khalikine@datadoghq.com", "created_at": "2023-12-22T18:58:59.686746+00:00",
+ "modified_at": "2023-12-26T19:37:54.169244+00:00", "email": "noueman.khalikine@datadoghq.com",
+ "icon": "https://secure.gravatar.com/avatar/92d6421ea95d9f7b8d60c8270c95d84a?s=48&d=retro",
+ "title": "", "verified": false, "service_account": false, "disabled": false,
+ "allowed_login_methods": [], "status": "Pending", "mfa_enabled": false}, "relationships":
+ {"roles": {"data": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}},
+ {"type": "users", "id": "3d1c4acf-9e99-11ee-aa8a-52121f0cd5ec", "attributes":
+ {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com", "created_at":
+ "2023-12-19T18:05:48.751349+00:00", "modified_at": "2023-12-19T18:10:34.281612+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": [], "status": "Active", "mfa_enabled": false}, "relationships":
+ {"roles": {"data": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}},
+ {"type": "users", "id": "2abdf182-a0fc-11ee-a6a8-065d78846176", "attributes":
+ {"name": "None+ updated", "handle": "test-user-example@datadoghq.com", "created_at":
+ "2023-12-22T18:59:00.435831+00:00", "modified_at": "2023-12-26T19:38:22.050533+00:00",
+ "email": "test-user-example@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/034ab28ed9a3b29bccdb4d7b94cd7e03?s=48&d=retro",
+ "title": "", "verified": false, "service_account": false, "disabled": true,
+ "allowed_login_methods": [], "status": "Disabled", "mfa_enabled": false},
+ "relationships": {"roles": {"data": [{"type": "roles", "id": "389e37f0-a426-11ee-96a2-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}}],
+ "included": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005",
+ "attributes": {"name": "Datadog Admin Role", "created_at": "2023-12-19T18:05:48.353537+00:00",
+ "modified_at": "2023-12-22T18:58:25.532811+00:00"}, "relationships": {"permissions":
+ {"data": [{"type": "permissions", "id": "f1666372-d87d-11e8-acac-6be484ba794a"},
+ {"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": "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":
+ "72d1e2fe-1cd8-11ed-a26b-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": "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": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type":
+ "permissions", "id": "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions",
+ "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id":
+ "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}]}}},
+ {"type": "permissions", "id": "f1666372-d87d-11e8-acac-6be484ba794a", "attributes":
+ {"name": "standard", "display_name": "Standard Access", "description": "Deprecated.
+ Standard Access has been replaced by more specific permissions.", "created":
+ "2018-10-25T17:46:46.732810+00:00", "group_name": "General", "display_type":
+ "other", "restricted": false}}, {"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": "other", "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": "other", "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": "other", "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": "Dashboards Public Share", "description": "Generate public
+ and authenticated links to share dashboards or embeddable graphs externally.",
+ "created": "2019-09-10T14:41:53.150548+00:00", "group_name": "Dashboards",
+ "display_type": "other", "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 hosts. 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":
+ "other", "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": "other", "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": "other", "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": "other", "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 Data Scanner configurations.", "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 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": "other", "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": "Pipeline 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": "Pipeline
+ 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": "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": "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":
+ "Workflow Automation", "display_type": "other", "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":
+ "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": "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": "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 custom
+ reports from a dashboard. These reports will display any viewable data regardless
+ of any granular restrictions (restriction queries, scoped indexes) applied
+ to the report''s creator.", "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": "other", "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": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "attributes": {"name": "watchdog_insights_read",
+ "display_name": "Watchdog Insights Read", "description": "Deprecated. View
+ Watchdog Insights.", "created": "2022-08-15T20:25:48.321553+00:00", "group_name":
+ "Watchdog", "display_type": "read", "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": "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": "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":
+ "CI Visibility", "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": "CI Visibility", "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": "CI Visibility", "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": "CI Visibility",
+ "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":
+ "Enable or disable Intelligent Test Runner.", "created": "2022-12-13T16:02:28.826271+00:00",
+ "group_name": "CI Visibility", "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": "Edit Intelligent Test Runner
+ settings, such as modifying ITR excluded branch list.", "created": "2022-12-13T16:02:28.830112+00:00",
+ "group_name": "CI Visibility", "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 CSPM Findings.",
+ "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": "CI Visibility",
+ "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. This does not
+ restrict access to the cloud cost data source in dashboards and notebooks.",
+ "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.", "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": "CI Visibility",
+ "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": "CI
+ Visibility", "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": "CI
+ Visibility", "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": "Pipeline
+ 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": "Pipeline 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":
+ "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": "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": "CI Visibility", "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": "CI Visibility", "display_type": "read", "restricted": true}},
+ {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005", "attributes":
+ {"name": "appsec_vm_read", "display_name": "Vulnerability Management Read",
+ "description": "View 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":
+ "roles", "id": "389e37f0-a426-11ee-96a2-da7ad0900005", "attributes": {"name":
+ "Datadog Read Only Role", "created_at": "2023-12-26T19:37:36.066101+00:00",
+ "modified_at": "2023-12-26T19:37:36.109725+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": "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": "72d1e2fe-1cd8-11ed-a26b-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": "94783714-4e9b-11ee-959b-da7ad0900005"},
+ {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}],
+ "meta": {"page": {"total_count": 8, "total_filtered_count": 8, "max_page_size":
+ 1000}}}'
headers: {}
status:
code: 200
@@ -2820,11 +3889,168 @@ interactions:
- gzip, deflate
Content-Type:
- application/json
- method: DELETE
- uri: https://api.datadoghq.eu/api/v1/synthetics/variables/6cdca534-f659-4c91-bc15-804dbb6dab9a
+ method: GET
+ uri: https://api.datadoghq.eu/api/v2/roles?page%5Bnumber%5D=0&page%5Bsize%5D=100
response:
body:
- string: ''
+ string: '{"data": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005",
+ "attributes": {"name": "Datadog Admin Role", "created_at": "2023-12-19T18:05:48.353537+00:00",
+ "modified_at": "2023-12-22T18:58:25.532811+00:00", "user_count": 6}, "relationships":
+ {"permissions": {"data": [{"type": "permissions", "id": "f1666372-d87d-11e8-acac-6be484ba794a"},
+ {"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": "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":
+ "72d1e2fe-1cd8-11ed-a26b-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": "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": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type":
+ "permissions", "id": "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions",
+ "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id":
+ "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}]}}},
+ {"type": "roles", "id": "389e37f0-a426-11ee-96a2-da7ad0900005", "attributes":
+ {"name": "Datadog Read Only Role", "created_at": "2023-12-26T19:37:36.066101+00:00",
+ "modified_at": "2023-12-26T19:37:36.109725+00:00", "user_count": 0}, "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": "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": "72d1e2fe-1cd8-11ed-a26b-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": "94783714-4e9b-11ee-959b-da7ad0900005"},
+ {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}],
+ "meta": {"page": {"total_count": 2, "total_filtered_count": 2}}}'
headers: {}
status:
code: 200
@@ -2839,7 +4065,7 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/synthetics/variables/b2ddc900-615c-4d4e-94c0-3e3f7a5a8479
+ uri: https://api.datadoghq.eu/api/v1/synthetics/variables/06fdd901-505a-465a-822e-18f547e598cf
response:
body:
string: ''
@@ -2857,7 +4083,7 @@ interactions:
Content-Type:
- application/json
method: DELETE
- uri: https://api.datadoghq.eu/api/v1/synthetics/variables/2a480695-e0d5-4d02-84d7-1be4022d756c
+ uri: https://api.datadoghq.eu/api/v1/synthetics/variables/b994f767-c190-4dae-9924-0048a6a63336
response:
body:
string: ''
@@ -2865,42 +4091,6 @@ interactions:
status:
code: 200
message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: DELETE
- uri: https://api.datadoghq.eu/api/v2/users/5a322106-c891-11eb-873a-da7ad0900005
- response:
- body:
- string: ''
- headers: {}
- status:
- code: 204
- message: No Content
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: DELETE
- uri: https://api.datadoghq.eu/api/v2/users/e0c5d064-c7b0-11eb-944d-da7ad0900005
- response:
- body:
- string: ''
- headers: {}
- status:
- code: 204
- message: No Content
- request:
body: null
headers:
@@ -2911,13 +4101,77 @@ interactions:
Content-Type:
- application/json
method: GET
- uri: https://api.datadoghq.eu/api/v2/roles?page%5Bnumber%5D=0&page%5Bsize%5D=100
+ uri: https://api.datadoghq.eu/api/v2/users?page%5Bnumber%5D=0&page%5Bsize%5D=100
response:
body:
- string: '{"data": [{"type": "roles", "id": "138d5c0c-bfcc-11eb-8e11-da7ad0900005",
- "attributes": {"name": "Datadog Admin Role", "created_at": "2021-05-28T15:47:58.719345+00:00",
- "modified_at": "2023-05-03T14:57:19.540899+00:00", "user_count": 5}, "relationships":
- {"permissions": {"data": [{"type": "permissions", "id": "f1666372-d87d-11e8-acac-6be484ba794a"},
+ string: '{"data": [{"type": "users", "id": "dc00e597-9e99-11ee-aa09-5628ff9a83db",
+ "attributes": {"name": "Aldrick Castro", "handle": "aldrick.castro@datadoghq.com",
+ "created_at": "2023-12-19T18:10:15.329617+00:00", "modified_at": "2023-12-19T19:09:21.769743+00:00",
+ "email": "aldrick.castro@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/c4b2f071a7e83e98302afbc9889cfc18?s=48&d=retro",
+ "title": "", "verified": true, "service_account": false, "disabled": false,
+ "allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
+ {"roles": {"data": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}},
+ {"type": "users", "id": "dc007960-9e99-11ee-a2db-ca9976f8cdd6", "attributes":
+ {"name": "", "handle": "frog@datadoghq.com", "created_at": "2023-12-19T18:10:15.326776+00:00",
+ "modified_at": "2023-12-19T18:15:23.723082+00:00", "email": "frog@datadoghq.com",
+ "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro",
+ "title": "", "verified": true, "service_account": false, "disabled": false,
+ "allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
+ {"roles": {"data": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}},
+ {"type": "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "attributes":
+ {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "created_at":
+ "2023-12-19T18:16:46.899841+00:00", "modified_at": "2023-12-26T19:37:53.198907+00:00",
+ "email": "frog@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro",
+ "title": "", "verified": true, "service_account": true, "disabled": false,
+ "allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
+ {"roles": {"data": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}},
+ {"type": "users", "id": "29e24184-a0fc-11ee-8daf-aea76f621e57", "attributes":
+ {"name": "Kevin Zou", "handle": "kevin.zou@datadoghq.com", "created_at": "2023-12-22T18:58:58.996081+00:00",
+ "modified_at": "2023-12-26T19:37:53.670047+00:00", "email": "kevin.zou@datadoghq.com",
+ "icon": "https://secure.gravatar.com/avatar/927e28676d353bcee29248ed2ca7ad9c?s=48&d=retro",
+ "title": "", "verified": false, "service_account": false, "disabled": false,
+ "allowed_login_methods": [], "status": "Pending", "mfa_enabled": false}, "relationships":
+ {"roles": {"data": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}},
+ {"type": "users", "id": "16646c0f-a0fc-11ee-ac60-ced34c8fb548", "attributes":
+ {"name": "test-user", "handle": "new@example.com", "created_at": "2023-12-22T18:58:26.294705+00:00",
+ "modified_at": "2023-12-26T19:38:22.361465+00:00", "email": "new@example.com",
+ "icon": "https://secure.gravatar.com/avatar/b681d72feaf8bf6a93d9a8ab86679ec3?s=48&d=retro",
+ "title": "", "verified": false, "service_account": false, "disabled": true,
+ "allowed_login_methods": [], "status": "Disabled", "mfa_enabled": false},
+ "relationships": {"roles": {"data": []}, "org": {"data": {"type": "orgs",
+ "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}}, {"type": "users", "id":
+ "2a4ba4d1-a0fc-11ee-ac60-ced34c8fb548", "attributes": {"name": "Noueman Khalikine",
+ "handle": "noueman.khalikine@datadoghq.com", "created_at": "2023-12-22T18:58:59.686746+00:00",
+ "modified_at": "2023-12-26T19:37:54.169244+00:00", "email": "noueman.khalikine@datadoghq.com",
+ "icon": "https://secure.gravatar.com/avatar/92d6421ea95d9f7b8d60c8270c95d84a?s=48&d=retro",
+ "title": "", "verified": false, "service_account": false, "disabled": false,
+ "allowed_login_methods": [], "status": "Pending", "mfa_enabled": false}, "relationships":
+ {"roles": {"data": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}},
+ {"type": "users", "id": "3d1c4acf-9e99-11ee-aa8a-52121f0cd5ec", "attributes":
+ {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com", "created_at":
+ "2023-12-19T18:05:48.751349+00:00", "modified_at": "2023-12-19T18:10:34.281612+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": [], "status": "Active", "mfa_enabled": false}, "relationships":
+ {"roles": {"data": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}},
+ {"type": "users", "id": "2abdf182-a0fc-11ee-a6a8-065d78846176", "attributes":
+ {"name": "None+ updated", "handle": "test-user-example@datadoghq.com", "created_at":
+ "2023-12-22T18:59:00.435831+00:00", "modified_at": "2023-12-26T19:38:22.050533+00:00",
+ "email": "test-user-example@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/034ab28ed9a3b29bccdb4d7b94cd7e03?s=48&d=retro",
+ "title": "", "verified": false, "service_account": false, "disabled": true,
+ "allowed_login_methods": [], "status": "Disabled", "mfa_enabled": false},
+ "relationships": {"roles": {"data": [{"type": "roles", "id": "389e37f0-a426-11ee-96a2-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}}],
+ "included": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005",
+ "attributes": {"name": "Datadog Admin Role", "created_at": "2023-12-19T18:05:48.353537+00:00",
+ "modified_at": "2023-12-22T18:58:25.532811+00:00"}, "relationships": {"permissions":
+ {"data": [{"type": "permissions", "id": "f1666372-d87d-11e8-acac-6be484ba794a"},
{"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":
@@ -3038,246 +4292,6 @@ interactions:
"permissions", "id": "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions",
"id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id":
"2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}]}}},
- {"type": "roles", "id": "33844e56-9e88-11ee-97ed-da7ad0900005", "attributes":
- {"name": "Datadog Read Only Role", "created_at": "2023-12-19T16:03:51.210119+00:00",
- "modified_at": "2023-12-19T16:03:51.252287+00:00", "user_count": 0}, "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": "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": "72d1e2fe-1cd8-11ed-a26b-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": "94783714-4e9b-11ee-959b-da7ad0900005"},
- {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}],
- "meta": {"page": {"total_count": 2, "total_filtered_count": 2}}}'
- headers: {}
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: GET
- uri: https://api.datadoghq.eu/api/v2/users?page%5Bnumber%5D=0&page%5Bsize%5D=100
- response:
- body:
- string: '{"data": [{"type": "users", "id":
- "3af5af64-bfcd-11eb-b483-da7ad0900005", "attributes": {"name": "Frog", "handle":
- "frog@datadoghq.com", "created_at": "2021-05-28T15:56:14.326839+00:00", "modified_at":
- "2023-03-21T15:15:23.136706+00:00", "email": "frog@datadoghq.com", "icon":
- "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro",
- "title": "", "verified": true, "service_account": false, "disabled": false,
- "allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
- {"roles": {"data": [{"type": "roles", "id": "138d5c0c-bfcc-11eb-8e11-da7ad0900005"}]},
- "org": {"data": {"type": "orgs", "id": "13865f06-bfcc-11eb-8e11-da7ad0900005"}}}},
- {"type": "users", "id": "edd03150-c562-11eb-bf1f-da7ad0900005", "attributes":
- {"name": "", "handle": "karimovj@gmail.com", "created_at": "2021-06-04T18:30:25.220601+00:00",
- "modified_at": "2021-06-07T16:05:58.627697+00:00", "email": "karimovj@gmail.com",
- "icon": "https://secure.gravatar.com/avatar/4df2a0457aa2d2f4bff089e88d1ed8e4?s=48&d=retro",
- "title": "", "verified": false, "service_account": false, "disabled": true,
- "allowed_login_methods": [], "status": "Disabled", "mfa_enabled": false},
- "relationships": {"roles": {"data": []}, "org": {"data": {"type": "orgs",
- "id": "13865f06-bfcc-11eb-8e11-da7ad0900005"}}}}, {"type": "users", "id":
- "3f974eb6-e9ec-11ed-8dce-e61a9bb2f626", "attributes": {"name": "Kevin Zou",
- "handle": "kevin.zou@datadoghq.com", "created_at": "2023-05-03T19:54:00.680883+00:00",
- "modified_at": "2023-05-04T15:26:11.259395+00:00", "email": "kevin.zou@datadoghq.com",
- "icon": "https://secure.gravatar.com/avatar/927e28676d353bcee29248ed2ca7ad9c?s=48&d=retro",
- "title": "", "verified": true, "service_account": false, "disabled": false,
- "allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
- {"roles": {"data": [{"type": "roles", "id": "138d5c0c-bfcc-11eb-8e11-da7ad0900005"}]},
- "org": {"data": {"type": "orgs", "id": "13865f06-bfcc-11eb-8e11-da7ad0900005"}}}},
- {"type": "users", "id": "5a322106-c891-11eb-873a-da7ad0900005", "attributes":
- {"name": "test-user", "handle": "new@example.com", "created_at": "2021-06-08T19:40:17.395117+00:00",
- "modified_at": "2023-12-19T16:54:20.150018+00:00", "email": "new@example.com",
- "icon": "https://secure.gravatar.com/avatar/b681d72feaf8bf6a93d9a8ab86679ec3?s=48&d=retro",
- "title": "", "verified": false, "service_account": false, "disabled": true,
- "allowed_login_methods": [], "status": "Disabled", "mfa_enabled": false},
- "relationships": {"roles": {"data": []}, "org": {"data": {"type": "orgs",
- "id": "13865f06-bfcc-11eb-8e11-da7ad0900005"}}}}, {"type": "users", "id":
- "8538c2fe-c7cb-11eb-8f0a-da7ad0900005", "attributes": {"name": "Noueman Khalikine",
- "handle": "noueman.khalikine@datadoghq.com", "created_at": "2021-06-07T20:04:09.228318+00:00",
- "modified_at": "2023-03-21T18:18:05.876918+00:00", "email": "noueman.khalikine@datadoghq.com",
- "icon": "https://secure.gravatar.com/avatar/92d6421ea95d9f7b8d60c8270c95d84a?s=48&d=retro",
- "title": "", "verified": true, "service_account": false, "disabled": false,
- "allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
- {"roles": {"data": [{"type": "roles", "id": "138d5c0c-bfcc-11eb-8e11-da7ad0900005"}]},
- "org": {"data": {"type": "orgs", "id": "13865f06-bfcc-11eb-8e11-da7ad0900005"}}}},
- {"type": "users", "id": "1458158c-bfcc-11eb-8e11-da7ad0900005", "attributes":
- {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com", "created_at":
- "2021-05-28T15:48:00.045949+00:00", "modified_at": "2023-05-03T14:39:05.451362+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": [], "status": "Active", "mfa_enabled": false}, "relationships":
- {"roles": {"data": [{"type": "roles", "id": "138d5c0c-bfcc-11eb-8e11-da7ad0900005"}]},
- "org": {"data": {"type": "orgs", "id": "13865f06-bfcc-11eb-8e11-da7ad0900005"}}}},
- {"type": "users", "id": "e0c5d064-c7b0-11eb-944d-da7ad0900005", "attributes":
- {"name": "None+ updated", "handle": "test-user-example@datadoghq.com", "created_at":
- "2021-06-07T16:53:26.412706+00:00", "modified_at": "2023-12-19T16:54:20.592740+00:00",
- "email": "test-user-example@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/034ab28ed9a3b29bccdb4d7b94cd7e03?s=48&d=retro",
- "title": "", "verified": false, "service_account": false, "disabled": true,
- "allowed_login_methods": [], "status": "Disabled", "mfa_enabled": false},
- "relationships": {"roles": {"data": [{"type": "roles", "id": "33844e56-9e88-11ee-97ed-da7ad0900005"}]},
- "org": {"data": {"type": "orgs", "id": "13865f06-bfcc-11eb-8e11-da7ad0900005"}}}},
- {"type": "users", "id": "9ea447a8-ebdf-11eb-8ad5-da7ad0900005", "attributes":
- {"name": "Updated", "handle": "user_without_role@example.com", "created_at":
- "2021-07-23T17:58:43.669432+00:00", "modified_at": "2022-02-25T20:44:43.801729+00:00",
- "email": "user_without_role@example.com", "icon": "https://secure.gravatar.com/avatar/a0985e94ca4206b92a3504c0222b3f7e?s=48&d=retro",
- "title": "", "verified": false, "service_account": false, "disabled": true,
- "allowed_login_methods": [], "status": "Disabled", "mfa_enabled": false},
- "relationships": {"roles": {"data": []}, "org": {"data": {"type": "orgs",
- "id": "13865f06-bfcc-11eb-8e11-da7ad0900005"}}}}], "included": [{"type": "roles",
- "id": "138d5c0c-bfcc-11eb-8e11-da7ad0900005", "attributes": {"name": "Datadog
- Admin Role", "created_at": "2021-05-28T15:47:58.719345+00:00", "modified_at":
- "2023-05-03T14:57:19.540899+00:00"}, "relationships": {"permissions": {"data":
- [{"type": "permissions", "id": "f1666372-d87d-11e8-acac-6be484ba794a"}, {"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":
- "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": "72d1e2fe-1cd8-11ed-a26b-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": "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": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": "permissions",
- "id": "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions", "id":
- "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"},
- {"type": "permissions", "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}]}}},
{"type": "permissions", "id": "f1666372-d87d-11e8-acac-6be484ba794a", "attributes":
{"name": "standard", "display_name": "Standard Access", "description": "Deprecated.
Standard Access has been replaced by more specific permissions.", "created":
@@ -3973,9 +4987,9 @@ interactions:
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":
- "roles", "id": "33844e56-9e88-11ee-97ed-da7ad0900005", "attributes": {"name":
- "Datadog Read Only Role", "created_at": "2023-12-19T16:03:51.210119+00:00",
- "modified_at": "2023-12-19T16:03:51.252287+00:00"}, "relationships": {"permissions":
+ "roles", "id": "389e37f0-a426-11ee-96a2-da7ad0900005", "attributes": {"name":
+ "Datadog Read Only Role", "created_at": "2023-12-26T19:37:36.066101+00:00",
+ "modified_at": "2023-12-26T19:37:36.109725+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",
@@ -4006,10 +5020,185 @@ interactions:
"id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id":
"3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"},
{"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}],
- "meta": {"page": {"total_count": 77, "total_filtered_count": 77, "max_page_size":
+ "meta": {"page": {"total_count": 8, "total_filtered_count": 8, "max_page_size":
1000}}}'
headers: {}
status:
code: 200
message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ 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": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005",
+ "attributes": {"name": "Datadog Admin Role", "created_at": "2023-12-19T18:05:48.353537+00:00",
+ "modified_at": "2023-12-22T18:58:25.532811+00:00", "user_count": 6}, "relationships":
+ {"permissions": {"data": [{"type": "permissions", "id": "f1666372-d87d-11e8-acac-6be484ba794a"},
+ {"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": "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":
+ "72d1e2fe-1cd8-11ed-a26b-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": "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": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type":
+ "permissions", "id": "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions",
+ "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id":
+ "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}]}}},
+ {"type": "roles", "id": "389e37f0-a426-11ee-96a2-da7ad0900005", "attributes":
+ {"name": "Datadog Read Only Role", "created_at": "2023-12-26T19:37:36.066101+00:00",
+ "modified_at": "2023-12-26T19:37:36.109725+00:00", "user_count": 0}, "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": "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": "72d1e2fe-1cd8-11ed-a26b-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": "94783714-4e9b-11ee-959b-da7ad0900005"},
+ {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}],
+ "meta": {"page": {"total_count": 2, "total_filtered_count": 2}}}'
+ headers: {}
+ status:
+ code: 200
+ message: OK
version: 1
diff --git a/tests/integration/cassettes/test_cli/TestCli.test_import.frozen b/tests/integration/cassettes/test_cli/TestCli.test_import.frozen
index f43ec597..268b539a 100644
--- a/tests/integration/cassettes/test_cli/TestCli.test_import.frozen
+++ b/tests/integration/cassettes/test_cli/TestCli.test_import.frozen
@@ -1 +1 @@
-2023-12-19T16:53:18.864872+00:00
\ No newline at end of file
+2023-12-26T19:37:25.349221+00:00
\ No newline at end of file
diff --git a/tests/integration/cassettes/test_cli/TestCli.test_import.yaml b/tests/integration/cassettes/test_cli/TestCli.test_import.yaml
index 0e85a0e7..04b4ac3d 100644
--- a/tests/integration/cassettes/test_cli/TestCli.test_import.yaml
+++ b/tests/integration/cassettes/test_cli/TestCli.test_import.yaml
@@ -1,4 +1,201 @@
interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: GET
+ uri: https://api.datadoghq.com/api/v1/slo/correction
+ response:
+ body:
+ string: '{"data": [{"type": "correction", "id": "999b94e0-bf74-11ed-a4ee-da7ad0902002",
+ "attributes": {"slo_id": "ae04001ea55f52f6ae4b85d9b1023909", "start": 1678255200,
+ "end": 1678355280, "description": "", "category": "Other", "timezone": "UTC",
+ "created_at": 1678474303, "modified_at": 1678474303, "rrule": null, "duration":
+ null, "creator": {"data": {"type": "users", "id": "fa017a38-bfcb-11eb-a4d7-da7ad0900002",
+ "attributes": {"uuid": "fa017a38-bfcb-11eb-a4d7-da7ad0900002", "handle": "support-datadogsynccliustestorg",
+ "email": "support-user-prod@datadoghq.com", "name": "Datadog Support", "icon":
+ "https://secure.gravatar.com/avatar/e6952b5f29fe2d996cf4e63f40db9e71?s=48&d=retro"}}},
+ "modifier": null}}, {"type": "correction", "id": "381d1620-bf70-11ed-acb8-da7ad0902002",
+ "attributes": {"slo_id": "ba72d10835d75e0c8910597144f3733a", "start": 1678255200,
+ "end": 1678339140, "description": "", "category": "Other", "timezone": "UTC",
+ "created_at": 1678472421, "modified_at": 1678472421, "rrule": null, "duration":
+ null, "creator": {"data": {"type": "users", "id": "fa017a38-bfcb-11eb-a4d7-da7ad0900002",
+ "attributes": {"uuid": "fa017a38-bfcb-11eb-a4d7-da7ad0900002", "handle": "support-datadogsynccliustestorg",
+ "email": "support-user-prod@datadoghq.com", "name": "Datadog Support", "icon":
+ "https://secure.gravatar.com/avatar/e6952b5f29fe2d996cf4e63f40db9e71?s=48&d=retro"}}},
+ "modifier": null}}], "meta": {"page": {"total_count": 2, "total_filtered_count":
+ 2}}}'
+ headers:
+ Content-Type:
+ - application/json
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: GET
+ uri: https://api.datadoghq.com/api/v1/synthetics/locations
+ response:
+ body:
+ string: '{"locations": [{"id": "aws:af-south-1", "name": "Cape Town (AWS)"},
+ {"id": "aws:ap-east-1", "name": "Hong Kong (AWS)"}, {"id": "aws:ap-northeast-1",
+ "name": "Tokyo (AWS)"}, {"id": "aws:ap-northeast-2", "name": "Seoul (AWS)"},
+ {"id": "aws:ap-northeast-3", "name": "Osaka (AWS)"}, {"id": "aws:ap-south-1",
+ "name": "Mumbai (AWS)"}, {"id": "aws:ap-southeast-1", "name": "Singapore (AWS)"},
+ {"id": "aws:ap-southeast-2", "name": "Sydney (AWS)"}, {"id": "aws:ap-southeast-3",
+ "name": "Jakarta (AWS)"}, {"id": "aws:ca-central-1", "name": "Canada Central
+ (AWS)"}, {"id": "aws:eu-central-1", "name": "Frankfurt (AWS)"}, {"id": "aws:eu-north-1",
+ "name": "Stockholm (AWS)"}, {"id": "aws:eu-south-1", "name": "Milan (AWS)"},
+ {"id": "aws:eu-west-1", "name": "Ireland (AWS)"}, {"id": "aws:eu-west-2",
+ "name": "London (AWS)"}, {"id": "aws:eu-west-3", "name": "Paris (AWS)"}, {"id":
+ "aws:me-south-1", "name": "Bahrain (AWS)"}, {"id": "aws:sa-east-1", "name":
+ "S\u00e3o Paulo (AWS)"}, {"id": "aws:us-east-1", "name": "N. Virginia (AWS)"},
+ {"id": "aws:us-east-2", "name": "Ohio (AWS)"}, {"id": "aws:us-west-1", "name":
+ "N. California (AWS)"}, {"id": "aws:us-west-2", "name": "Oregon (AWS)"}, {"id":
+ "azure:eastus", "name": "Virginia (Azure)"}, {"id": "pl:test-create_a_private_location_returns_ok_response-1694441551-8a079ac8d9f1d1cc62e956686d743b73",
+ "name": "Test-Create_a_private_location_returns_OK_response-1694441551"},
+ {"id": "pl:test-create_a_private_location_returns_ok_response-1694441705-4c3d68fc0cefd323115b04b5e541797c",
+ "name": "Test-Create_a_private_location_returns_OK_response-1694441705"},
+ {"id": "pl:test-create_a_private_location_returns_ok_response-1694443516-aa1bf44d99b8f7016a301a19f892ff8a",
+ "name": "Test-Create_a_private_location_returns_OK_response-1694443516"},
+ {"id": "pl:test-private-variable-b66e383ccf2ec6911eb962a9c2577451", "name":
+ "Test Private Variable"}]}'
+ headers:
+ Content-Type:
+ - application/json
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: GET
+ uri: https://api.datadoghq.com/api/v1/synthetics/private-locations/pl:test-create_a_private_location_returns_ok_response-1694441551-8a079ac8d9f1d1cc62e956686d743b73
+ response:
+ body:
+ string: '{"createdAt": "2023-09-11T14:12:52.035553+00:00", "modifiedAt": "2023-09-11T14:12:52.035553+00:00",
+ "description": "Test Test-Create_a_private_location_returns_OK_response-1694441551
+ description", "tags": ["test:testcreateaprivatelocationreturnsokresponse1694441551"],
+ "name": "Test-Create_a_private_location_returns_OK_response-1694441551", "metadata":
+ {"restricted_roles": ["3f537d52-50ad-11ee-9fcf-da7ad0900002"]}, "id": "pl:test-create_a_private_location_returns_ok_response-1694441551-8a079ac8d9f1d1cc62e956686d743b73",
+ "createdBy": "frog@datadoghq.com"}'
+ headers:
+ Content-Type:
+ - application/json
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: GET
+ uri: https://api.datadoghq.com/api/v1/synthetics/private-locations/pl:test-create_a_private_location_returns_ok_response-1694441705-4c3d68fc0cefd323115b04b5e541797c
+ response:
+ body:
+ string: '{"createdAt": "2023-09-11T14:15:39.384868+00:00", "modifiedAt": "2023-09-11T14:15:39.384868+00:00",
+ "description": "Test Test-Create_a_private_location_returns_OK_response-1694441705
+ description", "tags": ["test:testcreateaprivatelocationreturnsokresponse1694441705"],
+ "name": "Test-Create_a_private_location_returns_OK_response-1694441705", "metadata":
+ {"restricted_roles": ["9b5496ea-50ad-11ee-b52d-da7ad0900002"]}, "id": "pl:test-create_a_private_location_returns_ok_response-1694441705-4c3d68fc0cefd323115b04b5e541797c",
+ "createdBy": "frog@datadoghq.com"}'
+ headers:
+ Content-Type:
+ - application/json
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: GET
+ uri: https://api.datadoghq.com/api/v1/synthetics/private-locations/pl:test-create_a_private_location_returns_ok_response-1694443516-aa1bf44d99b8f7016a301a19f892ff8a
+ response:
+ body:
+ string: '{"createdAt": "2023-09-11T14:45:42.834875+00:00", "modifiedAt": "2023-09-11T14:45:42.834875+00:00",
+ "description": "Test Test-Create_a_private_location_returns_OK_response-1694443516
+ description", "tags": ["test:testcreateaprivatelocationreturnsokresponse1694443516"],
+ "name": "Test-Create_a_private_location_returns_OK_response-1694443516", "metadata":
+ {"restricted_roles": ["d283f418-50b1-11ee-b302-da7ad0900002"]}, "id": "pl:test-create_a_private_location_returns_ok_response-1694443516-aa1bf44d99b8f7016a301a19f892ff8a",
+ "createdBy": "frog@datadoghq.com"}'
+ headers:
+ Content-Type:
+ - application/json
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: GET
+ uri: https://api.datadoghq.com/api/v1/synthetics/private-locations/pl:test-private-variable-b66e383ccf2ec6911eb962a9c2577451
+ response:
+ body:
+ string: '{"createdAt": "2021-06-30T12:27:21.433291+00:00", "modifiedAt": "2021-06-30T12:27:21.433291+00:00",
+ "description": "datadog-sync-cli test", "tags": ["key:value"], "name": "Test
+ Private Variable", "metadata": null, "id": "pl:test-private-variable-b66e383ccf2ec6911eb962a9c2577451",
+ "createdBy": "noueman.khalikine@datadoghq.com"}'
+ headers:
+ Content-Type:
+ - application/json
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: GET
+ uri: https://api.datadoghq.com/api/v1/downtime
+ response:
+ body:
+ string: '[]'
+ headers:
+ Content-Type:
+ - application/json
+ status:
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -174,1876 +371,354 @@ interactions:
Content-Type:
- application/json
method: GET
- uri: https://api.datadoghq.com/api/v1/monitor?page=0&page_size=100
+ uri: https://api.datadoghq.com/api/v2/roles?page%5Bnumber%5D=0&page%5Bsize%5D=100
response:
body:
- string: '[{"id": 36230659, "org_id": 569509, "type": "query alert", "name":
- "Composite monitor - Child 2", "message": "Test monitor ----------------",
- "tags": ["test:foo", "test_two:bar"], "query": "avg(last_5m):avg:datadog.estimated_usage.hosts{*}
- > 50", "options": {"thresholds": {"critical": 50.0}, "notify_audit": false,
- "require_full_window": true, "notify_no_data": false, "renotify_interval":
- 0, "timeout_h": 0, "include_tags": true, "no_data_timeframe": null, "escalation_message":
- "", "new_host_delay": 300, "silenced": {}}, "multi": false, "created_at":
- 1622364217000, "created": "2021-05-30T08:43:37.940520+00:00", "modified":
- "2023-08-10T20:39:26.357089+00:00", "deleted": null, "restricted_roles": null,
- "priority": null, "overall_state_modified": "2021-05-30T08:45:28+00:00", "overall_state":
- "OK", "creator": {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com",
- "email": "sherzod.karimov@datadoghq.com", "id": 2781275}, "matching_downtimes":
- []}, {"id": 36239262, "org_id": 569509, "type": "query alert", "name": "Composite
- monitor - child 1", "message": "Composite monitor - child 1", "tags": ["test:foo"],
- "query": "avg(last_5m):avg:dd.dialtone.historical.metrics{*} > 20", "options":
- {"thresholds": {"critical": 20.0, "warning": 10.0}, "notify_audit": false,
- "require_full_window": true, "notify_no_data": false, "renotify_interval":
- 1440, "timeout_h": 0, "include_tags": true, "no_data_timeframe": null, "escalation_message":
- "", "renotify_statuses": ["no data"], "new_host_delay": 300, "silenced": {}},
- "multi": false, "created_at": 1622404151000, "created": "2021-05-30T19:49:11.945913+00:00",
- "modified": "2023-08-10T20:39:47.053119+00:00", "deleted": null, "restricted_roles":
- null, "priority": null, "overall_state_modified": "2021-05-30T19:52:07+00:00",
- "overall_state": "OK", "creator": {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com",
- "email": "sherzod.karimov@datadoghq.com", "id": 2781275}, "matching_downtimes":
- []}, {"id": 36593201, "org_id": 569509, "type": "composite", "name": "Composite
- monitor", "message": "test", "tags": [], "query": "( 36239262 && 36230659
- ) || !36239262", "options": {"notify_audit": false, "locked": false, "include_tags":
- false, "new_host_delay": 300, "notify_no_data": false, "renotify_interval":
- 0, "escalation_message": "", "silenced": {}}, "multi": false, "created_at":
- 1622746548000, "created": "2021-06-03T18:55:48.515861+00:00", "modified":
- "2021-06-08T18:13:50.284433+00:00", "deleted": null, "restricted_roles": null,
- "priority": null, "overall_state_modified": "2021-06-03T18:56:43+00:00", "overall_state":
- "Alert", "creator": {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com",
- "email": "sherzod.karimov@datadoghq.com", "id": 2781275}, "matching_downtimes":
- []}, {"id": 37284891, "org_id": 569509, "type": "service check", "name": "Host
- monitor", "message": "Test host monitor", "tags": ["service:daimler-health-service"],
- "query": "\"datadog.agent.up\".over(\"*\").by(\"host\").last(2).count_by_status()",
- "options": {"thresholds": {"critical": 1, "warning": 1, "ok": 1}, "notify_audit":
- false, "notify_no_data": true, "no_data_timeframe": 2, "renotify_interval":
- 0, "timeout_h": 0, "include_tags": true, "new_group_delay": 300, "silenced":
- {}}, "multi": true, "created_at": 1623176221000, "created": "2021-06-08T18:17:01.656132+00:00",
- "modified": "2023-05-16T22:15:12.393592+00:00", "deleted": null, "restricted_roles":
- null, "priority": null, "overall_state_modified": "2023-05-05T17:14:51+00:00",
- "overall_state": "No Data", "creator": {"name": "Sherzod Karimov", "handle":
- "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com",
- "id": 2781275}, "matching_downtimes": []}, {"id": 37284965, "org_id": 569509,
- "type": "query alert", "name": "Anomaly monitor", "message": "Anomaly monitor",
- "tags": [], "query": "avg(last_4h):anomalies(avg:dd.dialtone.historical.metrics{*},
- ''basic'', 2, direction=''both'', alert_window=''last_15m'', interval=60,
- count_default_zero=''true'') >= 1", "options": {"notify_audit": false, "locked":
- false, "timeout_h": 0, "include_tags": true, "no_data_timeframe": null, "require_full_window":
- true, "new_host_delay": 300, "notify_no_data": false, "renotify_interval":
- 0, "escalation_message": "", "threshold_windows": {"recovery_window": "last_15m",
- "trigger_window": "last_15m"}, "thresholds": {"critical": 1.0, "critical_recovery":
- 0.0}, "silenced": {}}, "multi": false, "created_at": 1623176273000, "created":
- "2021-06-08T18:17:53.020925+00:00", "modified": "2021-06-08T18:17:53.020925+00:00",
- "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
- "2021-06-08T18:19:16+00:00", "overall_state": "OK", "creator": {"name": "Sherzod
- Karimov", "handle": "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com",
- "id": 2781275}, "matching_downtimes": []}, {"id": 52549314, "org_id": 569509,
- "type": "metric alert", "name": "[Synthetic Private Locations] {{location_id.name}}
- stopped reporting", "message": "Private location {{location_id.name}} stopped
- reporting to Datadog.", "tags": [], "query": "min(last_5m):avg:synthetics.pl.worker.running{*}
- by {location_id} < 1", "options": {"notify_audit": false, "locked": false,
- "include_tags": true, "thresholds": {"critical": 1.0}, "new_host_delay": 300,
- "notify_no_data": true, "silenced": {}}, "multi": true, "created_at": 1635860538000,
- "created": "2021-11-02T13:42:18.175788+00:00", "modified": "2021-11-02T13:42:18.175788+00:00",
- "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
- "2021-11-02T13:45:14+00:00", "overall_state": "No Data", "creator": {"name":
- "Noueman Khalikine", "handle": "noueman.khalikine@datadoghq.com", "email":
- "noueman.khalikine@datadoghq.com", "id": 2808025}, "matching_downtimes": []},
- {"id": 52549315, "org_id": 569509, "type": "metric alert", "name": "[Synthetic
- Private Locations] {{location_id.name}} uses an outdated image version", "message":
- "Private location {{location_id.name}} is running an outdated image version.
- Learn more about the current version in use on your [Private locations page](https://app.datadoghq.com/synthetics/settings/private-locations?id={{location_id.name}})
- and upgrade workers to the most recent version of the image by pulling the
- `datadog/synthetics-private-location-worker` image with the `latest` tag.",
- "tags": [], "query": "max(last_15m):sum:synthetics.pl.worker.outdated{*} by
- {location_id} > 0", "options": {"notify_audit": false, "locked": false, "include_tags":
- true, "thresholds": {"critical": 0.0}, "new_host_delay": 300, "notify_no_data":
- false, "silenced": {}}, "multi": true, "created_at": 1635860538000, "created":
- "2021-11-02T13:42:18.219169+00:00", "modified": "2021-11-02T13:42:18.219169+00:00",
- "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
- "2021-11-02T13:45:05+00:00", "overall_state": "No Data", "creator": {"name":
- "Noueman Khalikine", "handle": "noueman.khalikine@datadoghq.com", "email":
- "noueman.khalikine@datadoghq.com", "id": 2808025}, "matching_downtimes": []},
- {"id": 52549316, "org_id": 569509, "type": "metric alert", "name": "[Synthetic
- Private Locations] {{location_id.name}} is underprovisioned", "message": "Private
- location {{location_id.name}} is underprovisioned.\nVisit this [documentation
- page](https://docs.datadoghq.com/synthetics/private_locations/?tab=docker#dimension-your-private-location)
- to learn how to scale your private location.", "tags": [], "query": "avg(last_30m):avg:synthetics.pl.worker.remaining_slots{*}
- by {location_id} < 1.5", "options": {"notify_audit": false, "locked": false,
- "include_tags": true, "thresholds": {"critical": 1.5}, "new_host_delay": 300,
- "notify_no_data": false, "silenced": {}}, "multi": true, "created_at": 1635860538000,
- "created": "2021-11-02T13:42:18.259196+00:00", "modified": "2021-11-02T13:42:18.259196+00:00",
- "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
- "2021-11-02T13:45:07+00:00", "overall_state": "No Data", "creator": {"name":
- "Noueman Khalikine", "handle": "noueman.khalikine@datadoghq.com", "email":
- "noueman.khalikine@datadoghq.com", "id": 2808025}, "matching_downtimes": []},
- {"id": 66666697, "org_id": 569509, "type": "event-v2 alert", "name": "Test
- event monitor", "message": "Test event monitor", "tags": [], "query": "events(\"\").rollup(\"count\").last(\"5m\")
- > 100", "options": {"notify_audit": false, "locked": false, "timeout_h": 0,
- "include_tags": true, "restriction_query": null, "new_host_delay": 300, "notify_no_data":
- false, "renotify_interval": 0, "groupby_simple_monitor": true, "enable_logs_sample":
- false, "escalation_message": "", "thresholds": {"critical": 100.0}, "silenced":
- {}}, "multi": false, "created_at": 1647980371000, "created": "2022-03-22T20:19:31.437344+00:00",
- "modified": "2022-03-22T20:19:31.437344+00:00", "deleted": null, "restricted_roles":
- null, "priority": null, "overall_state_modified": "2023-11-15T14:04:08+00:00",
- "overall_state": "OK", "creator": {"name": "Datadog Support", "handle": "support-datadogsynccliustestorg-1137936",
- "email": "support-user-prod@datadoghq.com", "id": 3205966}, "matching_downtimes":
- []}, {"id": 103095757, "org_id": 569509, "type": "synthetics alert", "name":
- "[Synthetics] HTTP Test", "message": "Test synthetics", "tags": ["probe_dc:aws:ca-central-1",
- "check_type:api", "check_status:paused", "ci_execution_rule:blocking"], "query":
- "no_query", "options": {"notify_audit": false, "include_tags": true, "new_host_delay":
- 300, "on_missing_data": "show_no_data", "renotify_interval": 120, "silenced":
- {}}, "multi": false, "created_at": 1668546304000, "created": "2022-11-15T21:05:04.457904+00:00",
- "modified": "2022-11-15T21:05:04.457904+00:00", "deleted": null, "restricted_roles":
- null, "priority": 3, "overall_state_modified": "2022-11-15T21:05:38+00:00",
- "overall_state": "No Data", "creator": {"name": "Sherzod Karimov", "handle":
- "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com",
- "id": 2781275}, "matching_downtimes": []}, {"id": 103095758, "org_id": 569509,
- "type": "synthetics alert", "name": "[Synthetics] SSL Test", "message": "Notify
- @pagerduty", "tags": ["foo:bar", "foo", "env:test", "probe_dc:aws:eu-central-1",
- "check_type:api-ssl", "check_status:live", "ci_execution_rule:blocking"],
- "query": "no_query", "options": {"notify_audit": false, "include_tags": true,
- "new_host_delay": 300, "on_missing_data": "show_no_data", "renotify_interval":
- 0, "silenced": {}}, "multi": false, "created_at": 1668546304000, "created":
- "2022-11-15T21:05:04.460432+00:00", "modified": "2022-11-15T21:05:04.460432+00:00",
- "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
- "2023-09-22T18:19:38+00:00", "overall_state": "OK", "creator": {"name": "Sherzod
- Karimov", "handle": "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com",
- "id": 2781275}, "matching_downtimes": []}, {"id": 103095759, "org_id": 569509,
- "type": "synthetics alert", "name": "[Synthetics] TCP Test", "message": "Notify
- @pagerduty", "tags": ["foo:bar", "foo", "env:test", "probe_dc:aws:eu-central-1",
- "check_type:api-tcp", "check_status:live", "ci_execution_rule:blocking"],
- "query": "no_query", "options": {"notify_audit": false, "include_tags": true,
- "new_host_delay": 300, "on_missing_data": "show_no_data", "renotify_interval":
- 0, "silenced": {}}, "multi": false, "created_at": 1668546304000, "created":
- "2022-11-15T21:05:04.469143+00:00", "modified": "2022-11-15T21:05:04.469143+00:00",
- "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
- "2023-12-06T22:36:09+00:00", "overall_state": "OK", "creator": {"name": "Sherzod
- Karimov", "handle": "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com",
- "id": 2781275}, "matching_downtimes": []}, {"id": 103095760, "org_id": 569509,
- "type": "synthetics alert", "name": "[Synthetics] Browser Test (cloned)",
- "message": "", "tags": ["probe_dc:aws:us-west-1", "check_type:browser", "check_status:live",
- "ci_execution_rule:blocking"], "query": "no_query", "options": {"notify_audit":
- false, "include_tags": true, "new_host_delay": 300, "on_missing_data": "show_no_data",
- "renotify_interval": 0, "silenced": {}}, "multi": false, "created_at": 1668546304000,
- "created": "2022-11-15T21:05:04.469385+00:00", "modified": "2022-11-15T21:05:04.469385+00:00",
- "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
- "2022-11-15T21:06:40+00:00", "overall_state": "Alert", "creator": {"name":
- "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com",
- "id": 2781275}, "matching_downtimes": []}, {"id": 103095761, "org_id": 569509,
- "type": "synthetics alert", "name": "Test-Trigger_Synthetics_tests_returns_OK_response-1666783270",
- "message": "BDD test payload: synthetics_api_http_test_payload.json", "tags":
- ["testing:api", "probe_dc:aws:us-east-2", "check_type:api", "check_status:live",
- "ci_execution_rule:blocking"], "query": "no_query", "options": {"include_tags":
- true, "notify_audit": false, "new_host_delay": 300, "on_missing_data": "show_no_data",
- "silenced": {}}, "multi": false, "created_at": 1668546304000, "created": "2022-11-15T21:05:04.477484+00:00",
- "modified": "2022-11-15T21:05:04.477484+00:00", "deleted": null, "restricted_roles":
- null, "priority": 5, "overall_state_modified": "2022-11-15T21:05:42+00:00",
- "overall_state": "Alert", "creator": {"name": "Sherzod Karimov", "handle":
- "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com",
- "id": 2781275}, "matching_downtimes": []}, {"id": 103095762, "org_id": 569509,
- "type": "synthetics alert", "name": "[Synthetics] Multistep API Test", "message":
- "", "tags": ["check_type:api", "env:test", "test:update", "probe_dc:aws:sa-east-1",
- "check_type:api-multi", "check_status:live", "ci_execution_rule:blocking"],
- "query": "no_query", "options": {"notify_audit": false, "include_tags": true,
- "new_host_delay": 300, "on_missing_data": "show_no_data", "renotify_interval":
- 0, "silenced": {}}, "multi": false, "created_at": 1668546304000, "created":
- "2022-11-15T21:05:04.478167+00:00", "modified": "2022-11-15T21:05:04.478167+00:00",
- "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
- "2022-11-15T21:05:43+00:00", "overall_state": "OK", "creator": {"name": "Sherzod
- Karimov", "handle": "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com",
- "id": 2781275}, "matching_downtimes": []}, {"id": 103095763, "org_id": 569509,
- "type": "synthetics alert", "name": "[Synthetics] DNS Test", "message": "Notify
- @pagerduty", "tags": ["foo:bar", "foo", "env:test", "probe_dc:aws:eu-central-1",
- "check_type:api-dns", "check_status:live", "ci_execution_rule:blocking"],
- "query": "no_query", "options": {"notify_audit": false, "include_tags": true,
- "new_host_delay": 300, "on_missing_data": "show_no_data", "renotify_interval":
- 0, "silenced": {}}, "multi": false, "created_at": 1668546304000, "created":
- "2022-11-15T21:05:04.482560+00:00", "modified": "2022-11-15T21:05:04.482560+00:00",
- "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
- "2022-11-15T21:05:45+00:00", "overall_state": "Alert", "creator": {"name":
- "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com",
- "id": 2781275}, "matching_downtimes": []}, {"id": 121127083, "org_id": 569509,
- "type": "synthetics alert", "name": "[Synthetics] tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1686121345",
- "message": "Notify @datadog.user", "tags": ["multistep", "probe_dc:aws:eu-central-1",
- "check_type:api-multi", "check_status:paused", "ci_execution_rule:blocking"],
- "query": "no_query", "options": {"on_missing_data": "show_no_data", "notify_audit":
- false, "new_host_delay": 300, "include_tags": true, "silenced": {}}, "multi":
- false, "created_at": 1686121347000, "created": "2023-06-07T07:02:27.979214+00:00",
- "modified": "2023-06-07T07:02:27.979214+00:00", "deleted": null, "restricted_roles":
- null, "priority": null, "overall_state_modified": "2023-06-07T07:02:45+00:00",
- "overall_state": "No Data", "creator": {"name": "Frog", "handle": "frog@datadoghq.com",
- "email": "frog@datadoghq.com", "id": 2781302}, "matching_downtimes": []},
- {"id": 124728911, "org_id": 569509, "type": "slo alert", "name": "Test slo
- monitor", "message": "Random message", "tags": [], "query": "burn_rate(\"ba72d10835d75e0c8910597144f3733a\").over(\"7d\").long_window(\"1h\").short_window(\"5m\")
- > 1", "options": {"thresholds": {"critical": 1.0}, "notify_no_data": false,
- "notify_audit": false, "new_host_delay": 300, "include_tags": true, "silenced":
- {}}, "multi": false, "created_at": 1688999118000, "created": "2023-07-10T14:25:18.627726+00:00",
- "modified": "2023-09-19T16:02:35.079242+00:00", "deleted": null, "restricted_roles":
- null, "priority": null, "overall_state_modified": "2023-07-10T14:25:22+00:00",
- "overall_state": "No Data", "creator": {"name": "Sherzod Karimov", "handle":
- "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com",
- "id": 2781275}, "matching_downtimes": []}, {"id": 131664819, "org_id": 569509,
- "type": "slo alert", "name": "Check monitor slo", "message": "Message", "tags":
- [], "query": "error_budget(\"b02adcb3d95a5c3dbfebf7c94bf4e8c5\").over(\"7d\")
- > 90", "options": {"thresholds": {"critical": 90.0}, "notify_no_data": false,
- "notify_audit": false, "new_host_delay": 300, "include_tags": true, "silenced":
- {}}, "multi": false, "created_at": 1695138188000, "created": "2023-09-19T15:43:08.383274+00:00",
- "modified": "2023-09-19T15:43:08.383274+00:00", "deleted": null, "restricted_roles":
- null, "priority": null, "overall_state_modified": "2023-09-19T15:43:10+00:00",
- "overall_state": "OK", "creator": {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com",
- "email": "sherzod.karimov@datadoghq.com", "id": 2781275}, "matching_downtimes":
- []}]'
- headers:
- Content-Type:
- - application/json
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: GET
- uri: https://api.datadoghq.com/api/v1/downtime
- response:
- body:
- string: '[]'
- headers:
- Content-Type:
- - application/json
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: GET
- uri: https://api.datadoghq.com/api/v1/dashboard/lists/manual
- response:
- body:
- string: '{"dashboard_lists": [{"author": {"name": "Sherzod Karimov", "handle":
- "sherzod.karimov@datadoghq.com"}, "created": "2021-07-15T14:16:13.319119+00:00",
- "dashboards": null, "dashboard_count": 0, "id": 221363, "is_favorite": false,
- "modified": "2021-07-15T14:16:34.123734+00:00", "name": "Empty Test List",
- "type": "manual_dashboard_list"}, {"author": {"name": "Sherzod Karimov", "handle":
- "sherzod.karimov@datadoghq.com"}, "created": "2023-02-28T21:12:30.788938+00:00",
- "dashboards": null, "dashboard_count": 0, "id": 367313, "is_favorite": false,
- "modified": "2023-02-28T21:12:30.788947+00:00", "name": "Empty Test List",
- "type": "manual_dashboard_list"}, {"author": {"name": "Sherzod Karimov", "handle":
- "sherzod.karimov@datadoghq.com"}, "created": "2021-06-14T20:10:23.247584+00:00",
- "dashboards": null, "dashboard_count": 2, "id": 213585, "is_favorite": false,
- "modified": "2021-06-24T20:13:00.657023+00:00", "name": "Test list", "type":
- "manual_dashboard_list"}]}'
- headers:
- Content-Type:
- - application/json
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: GET
- uri: https://api.datadoghq.com/api/v2/dashboard/lists/manual/221363/dashboards
- response:
- body:
- string: '{"dashboards": [], "total": 0}'
- headers:
- Content-Type:
- - application/json
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: GET
- uri: https://api.datadoghq.com/api/v2/dashboard/lists/manual/367313/dashboards
- response:
- body:
- string: '{"dashboards": [], "total": 0}'
- headers:
- Content-Type:
- - application/json
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: GET
- uri: https://api.datadoghq.com/api/v2/dashboard/lists/manual/213585/dashboards
- response:
- body:
- string: '{"dashboards": [{"author": {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com"},
- "created": "2021-06-01T20:18:57.486260+00:00", "is_favorite": false, "is_shared":
- false, "modified": "2023-11-27T21:30:12.468262+00:00", "title": "raw-test",
- "type": "custom_timeboard", "id": "euw-cp8-hy6", "url": "/dashboard/euw-cp8-hy6/raw-test",
- "is_read_only": false, "tags": [], "icon": null, "integration_id": null, "popularity":
- 3}, {"author": {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com"},
- "created": "2021-06-08T18:26:23.515662+00:00", "is_favorite": false, "is_shared":
- false, "modified": "2021-06-22T19:35:38.981348+00:00", "title": "Test screenboard",
- "type": "custom_screenboard", "id": "dns-jst-h98", "url": "/dashboard/dns-jst-h98/test-screenboard",
- "is_read_only": false, "tags": null, "icon": null, "integration_id": null,
- "popularity": 0}], "total": 2}'
- headers:
- Content-Type:
- - application/json
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: GET
- uri: https://api.datadoghq.com/api/v2/roles?page%5Bnumber%5D=0&page%5Bsize%5D=100
- response:
- body:
- string: '{"data": [{"type": "roles", "id": "fa017a35-bfcb-11eb-a4d7-da7ad0900002",
- "attributes": {"name": "Datadog Admin Role", "created_at": "2021-05-28T15:47:15.884751+00:00",
- "modified_at": "2023-03-22T20:42:59.038042+00:00", "user_count": 5}, "relationships":
- {"permissions": {"data": [{"type": "permissions", "id": "984d2f00-d3b4-11e8-a200-bb47109e9987"},
- {"type": "permissions", "id": "5e605652-dd12-11e8-9e53-375565b8970e"}, {"type":
- "permissions", "id": "62cc036c-dd12-11e8-9e54-db9995643092"}, {"type": "permissions",
- "id": "6f66600e-dd12-11e8-9e55-7f30fbb45e73"}, {"type": "permissions", "id":
- "7d7c98ac-dd12-11e8-9e56-93700598622d"}, {"type": "permissions", "id": "811ac4ca-dd12-11e8-9e57-676a7f0beef9"},
- {"type": "permissions", "id": "84aa3ae4-dd12-11e8-9e58-a373a514ccd0"}, {"type":
- "permissions", "id": "87b00304-dd12-11e8-9e59-cbeb5f71f72f"}, {"type": "permissions",
- "id": "979df720-aed7-11e9-99c6-a7eb8373165a"}, {"type": "permissions", "id":
- "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id": "d90f6831-d3d8-11e9-a77a-4fd230ddbc6a"},
- {"type": "permissions", "id": "d90f6832-d3d8-11e9-a77a-bf8a2607f864"}, {"type":
- "permissions", "id": "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions",
- "id": "48ef71ea-d8b1-11e9-a77a-93f408470ad0"}, {"type": "permissions", "id":
- "4d87d5f8-d8b1-11e9-a77a-eb9c8350d04f"}, {"type": "permissions", "id": "1af86ce4-7823-11ea-93dc-d7cad1b1c6cb"},
- {"type": "permissions", "id": "b382b982-8535-11ea-93de-2bf1bdf20798"}, {"type":
- "permissions", "id": "7314eb20-aa58-11ea-95e2-6fb6e4a451d5"}, {"type": "permissions",
- "id": "7b516476-aa58-11ea-95e2-93718cd56369"}, {"type": "permissions", "id":
- "80de1ec0-aa58-11ea-95e2-aff381626d5d"}, {"type": "permissions", "id": "58b412cc-ff6d-11eb-bc9c-da7ad0900002"},
- {"type": "permissions", "id": "9ac1d8cc-e707-11ea-aa2d-73d37e989a9d"}, {"type":
- "permissions", "id": "9de604d8-e707-11ea-aa2d-93f1a783b3a3"}, {"type": "permissions",
- "id": "46a301da-ec5c-11ea-aa9f-73bedeab67ee"}, {"type": "permissions", "id":
- "46a301db-ec5c-11ea-aa9f-2fe72193d60e"}, {"type": "permissions", "id": "46a301dc-ec5c-11ea-aa9f-13b33f8f46ea"},
- {"type": "permissions", "id": "46a301dd-ec5c-11ea-aa9f-97edfb345bc9"}, {"type":
- "permissions", "id": "46a301de-ec5c-11ea-aa9f-a73252c24806"}, {"type": "permissions",
- "id": "46a301df-ec5c-11ea-aa9f-970a9ae645e5"}, {"type": "permissions", "id":
- "46a301e0-ec5c-11ea-aa9f-6ba6cc675d8c"}, {"type": "permissions", "id": "46a301e1-ec5c-11ea-aa9f-afa39f6f3e36"},
- {"type": "permissions", "id": "46a301e2-ec5c-11ea-aa9f-1f511b7305fd"}, {"type":
- "permissions", "id": "46a301e4-ec5c-11ea-aa9f-87282b3a50cc"}, {"type": "permissions",
- "id": "07c3c146-f7f8-11ea-acf6-0bd62b9ae60e"}, {"type": "permissions", "id":
- "2fbdac76-f923-11ea-adbc-07f3823e2b43"}, {"type": "permissions", "id": "372896c4-f923-11ea-adbc-4fecd107156d"},
- {"type": "permissions", "id": "3e4d4d28-f923-11ea-adbc-e3565938c12e"}, {"type":
- "permissions", "id": "4628ca54-f923-11ea-adbc-4b2b7f88c5e9"}, {"type": "permissions",
- "id": "4ada6e36-f923-11ea-adbc-0788e5c5e3cf"}, {"type": "permissions", "id":
- "5025ee24-f923-11ea-adbc-576ea241df8d"}, {"type": "permissions", "id": "55f4b5ec-f923-11ea-adbc-1bfa2334a755"},
- {"type": "permissions", "id": "5c6b88e2-f923-11ea-adbc-abf57d079420"}, {"type":
- "permissions", "id": "642eebe6-f923-11ea-adbc-eb617674ea04"}, {"type": "permissions",
- "id": "6ba32d22-0e1a-11eb-ba44-bf9a5aafaa39"}, {"type": "permissions", "id":
- "a42e94b2-1476-11eb-bd08-efda28c04248"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
- {"type": "permissions", "id": "43fa188e-2dce-11eb-84c0-835ad1fd6287"}, {"type":
- "permissions", "id": "465cfe66-2dce-11eb-84c0-6baa888239fa"}, {"type": "permissions",
- "id": "4916eebe-2dce-11eb-84c0-271cb2c672e8"}, {"type": "permissions", "id":
- "4e3f02b4-2dce-11eb-84c0-2fca946a6efc"}, {"type": "permissions", "id": "53950c54-2dce-11eb-84c0-a79ae108f6f8"},
- {"type": "permissions", "id": "5cbe5f9c-2dce-11eb-84c0-872d3e9f1076"}, {"type":
- "permissions", "id": "61765026-2dce-11eb-84c0-833e230d1b8f"}, {"type": "permissions",
- "id": "04bc1cf2-340a-11eb-873a-43b973c760dd"}, {"type": "permissions", "id":
- "8106300a-54f7-11eb-8cbc-7781a434a67b"}, {"type": "permissions", "id": "edfd5e74-801f-11eb-96d8-da7ad0900002"},
- {"type": "permissions", "id": "edfd5e75-801f-11eb-96d8-da7ad0900002"}, {"type":
- "permissions", "id": "bf0dcf7c-90af-11eb-9b82-da7ad0900002"}, {"type": "permissions",
- "id": "bf0dcf7d-90af-11eb-9b82-da7ad0900002"}, {"type": "permissions", "id":
- "7df222b6-a45c-11eb-a0af-da7ad0900002"}, {"type": "permissions", "id": "98b984f4-b16d-11eb-a2c6-da7ad0900002"},
- {"type": "permissions", "id": "98b984f5-b16d-11eb-a2c6-da7ad0900002"}, {"type":
- "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions",
- "id": "12efc211-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id":
- "12efc20f-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id": "12efc210-d36c-11eb-a9b8-da7ad0900002"},
- {"type": "permissions", "id": "97971c1c-e895-11eb-b13c-da7ad0900002"}, {"type":
- "permissions", "id": "97971c1d-e895-11eb-b13c-da7ad0900002"}, {"type": "permissions",
- "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions", "id":
- "7605ef25-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions", "id": "c95412b8-16c7-11ec-85c0-da7ad0900002"},
- {"type": "permissions", "id": "c95412b9-16c7-11ec-85c0-da7ad0900002"}, {"type":
- "permissions", "id": "26c79920-1703-11ec-85d2-da7ad0900002"}, {"type": "permissions",
- "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
- "f4473c61-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id": "020a563c-56a4-11ec-a982-da7ad0900002"},
- {"type": "permissions", "id": "8e4d6b6e-5750-11ec-a9f4-da7ad0900002"}, {"type":
- "permissions", "id": "945b3bb4-5884-11ec-aa6d-da7ad0900002"}, {"type": "permissions",
- "id": "945b3bb5-5884-11ec-aa6d-da7ad0900002"}, {"type": "permissions", "id":
- "f6e917a8-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions", "id": "f6e917aa-8502-11ec-bf20-da7ad0900002"},
- {"type": "permissions", "id": "f6e917a9-8502-11ec-bf20-da7ad0900002"}, {"type":
- "permissions", "id": "f6e917a6-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions",
- "id": "f6e917a7-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions", "id":
- "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "b6bf9ac7-9a59-11ec-8480-da7ad0900002"},
- {"type": "permissions", "id": "e35c06b0-966b-11ec-83c9-da7ad0900002"}, {"type":
- "permissions", "id": "2108215e-b9b4-11ec-958e-da7ad0900002"}, {"type": "permissions",
- "id": "7b1f5089-c59e-11ec-aa32-da7ad0900002"}, {"type": "permissions", "id":
- "1afff448-d5e9-11ec-ae37-da7ad0900002"}, {"type": "permissions", "id": "1afff449-d5e9-11ec-ae37-da7ad0900002"},
- {"type": "permissions", "id": "6c87d3da-e5c5-11ec-b1d6-da7ad0900002"}, {"type":
- "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions",
- "id": "f8e941d0-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id":
- "f8e941ce-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id": "4784b11c-f311-11ec-a5f5-da7ad0900002"},
- {"type": "permissions", "id": "ee68fba9-173a-11ed-b00b-da7ad0900002"}, {"type":
- "permissions", "id": "ee68fba8-173a-11ed-b00b-da7ad0900002"}, {"type": "permissions",
- "id": "5b2c3e28-1761-11ed-b018-da7ad0900002"}, {"type": "permissions", "id":
- "6be119a6-1cd8-11ed-b185-da7ad0900002"}, {"type": "permissions", "id": "36e2a22e-248a-11ed-b405-da7ad0900002"},
- {"type": "permissions", "id": "4ee674f6-55d9-11ed-b10d-da7ad0900002"}, {"type":
- "permissions", "id": "4ee7e46c-55d9-11ed-b10e-da7ad0900002"}, {"type": "permissions",
- "id": "4ee5731c-55d9-11ed-b10b-da7ad0900002"}, {"type": "permissions", "id":
- "4ee60688-55d9-11ed-b10c-da7ad0900002"}, {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"},
- {"type": "permissions", "id": "824851a6-7a4c-11ed-9590-da7ad0900002"}, {"type":
- "permissions", "id": "77d5f45e-7a5a-11ed-8abf-da7ad0900002"}, {"type": "permissions",
- "id": "77d55a44-7a5a-11ed-8abe-da7ad0900002"}, {"type": "permissions", "id":
- "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions", "id": "6c5c1090-7aff-11ed-a5cf-da7ad0900002"},
- {"type": "permissions", "id": "6c59ae72-7aff-11ed-a5cc-da7ad0900002"}, {"type":
- "permissions", "id": "6c5b7428-7aff-11ed-a5ce-da7ad0900002"}, {"type": "permissions",
- "id": "6c5d0892-7aff-11ed-a5d0-da7ad0900002"}, {"type": "permissions", "id":
- "6c5de654-7aff-11ed-a5d1-da7ad0900002"}, {"type": "permissions", "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"},
- {"type": "permissions", "id": "1d76ecfa-9771-11ed-9c2f-da7ad0900002"}, {"type":
- "permissions", "id": "ca6bfb3a-b44f-11ed-adb2-da7ad0900002"}, {"type": "permissions",
- "id": "4dc3eec6-b468-11ed-8539-da7ad0900002"}, {"type": "permissions", "id":
- "4dc4094c-b468-11ed-853a-da7ad0900002"}, {"type": "permissions", "id": "35dd33ea-ca2e-11ed-bca0-da7ad0900002"},
- {"type": "permissions", "id": "36bf3d0a-ccc0-11ed-9453-da7ad0900002"}, {"type":
- "permissions", "id": "f416f55e-db3f-11ed-8028-da7ad0900002"}, {"type": "permissions",
- "id": "f416b1ac-db3f-11ed-8027-da7ad0900002"}, {"type": "permissions", "id":
- "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "4e61ea18-de98-11ed-aa24-da7ad0900002"},
- {"type": "permissions", "id": "a4316eb8-f438-11ed-8af2-da7ad0900002"}, {"type":
- "permissions", "id": "a431bf12-f438-11ed-8af3-da7ad0900002"}, {"type": "permissions",
- "id": "8352cf04-f6ac-11ed-9ec7-da7ad0900002"}, {"type": "permissions", "id":
- "3a48350c-f9bc-11ed-b81c-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
- {"type": "permissions", "id": "a77452c8-fff2-11ed-965d-da7ad0900002"}, {"type":
- "permissions", "id": "a51b375a-ff73-11ed-8c18-da7ad0900002"}, {"type": "permissions",
- "id": "61f9891a-0070-11ee-9c3f-da7ad0900002"}, {"type": "permissions", "id":
- "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type": "permissions", "id": "1377ff28-0ec7-11ee-aebd-da7ad0900002"},
- {"type": "permissions", "id": "cc8cd958-11eb-11ee-ade2-da7ad0900002"}, {"type":
- "permissions", "id": "b1adb6e8-0949-11ee-b2c5-da7ad0900002"}, {"type": "permissions",
- "id": "b1ad77e6-0949-11ee-b2c3-da7ad0900002"}, {"type": "permissions", "id":
- "b1adb5da-0949-11ee-b2c4-da7ad0900002"}, {"type": "permissions", "id": "0efeff18-1cec-11ee-992d-da7ad0900002"},
- {"type": "permissions", "id": "6c5ce898-21a4-11ee-99ef-da7ad0900002"}, {"type":
- "permissions", "id": "6c5ce992-21a4-11ee-99f0-da7ad0900002"}, {"type": "permissions",
- "id": "785177a6-20da-11ee-bed7-da7ad0900002"}, {"type": "permissions", "id":
- "7850e390-20da-11ee-bed6-da7ad0900002"}, {"type": "permissions", "id": "6c5c79b2-21a4-11ee-99ee-da7ad0900002"},
- {"type": "permissions", "id": "1b8f54cc-2ca4-11ee-9e72-da7ad0900002"}, {"type":
- "permissions", "id": "5356dfd2-3dee-11ee-b07b-da7ad0900002"}, {"type": "permissions",
- "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions", "id":
- "50c270de-69ee-11ee-9151-da7ad0900002"}, {"type": "permissions", "id": "7c7836fc-6f6e-11ee-8cdd-da7ad0900002"}]}}},
- {"type": "roles", "id": "fa017a37-bfcb-11eb-a4d7-da7ad0900002", "attributes":
- {"name": "Datadog Read Only Role", "created_at": "2021-05-28T15:47:16.084615+00:00",
- "modified_at": "2021-05-28T15:47:16.084615+00:00", "user_count": 1}, "relationships":
- {"permissions": {"data": [{"type": "permissions", "id": "5e605652-dd12-11e8-9e53-375565b8970e"},
- {"type": "permissions", "id": "6f66600e-dd12-11e8-9e55-7f30fbb45e73"}, {"type":
- "permissions", "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions",
- "id": "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id":
- "1af86ce4-7823-11ea-93dc-d7cad1b1c6cb"}, {"type": "permissions", "id": "b382b982-8535-11ea-93de-2bf1bdf20798"},
- {"type": "permissions", "id": "7314eb20-aa58-11ea-95e2-6fb6e4a451d5"}, {"type":
- "permissions", "id": "80de1ec0-aa58-11ea-95e2-aff381626d5d"}, {"type": "permissions",
- "id": "5025ee24-f923-11ea-adbc-576ea241df8d"}, {"type": "permissions", "id":
- "417ba636-2dce-11eb-84c0-6bce5b0d9de0"}, {"type": "permissions", "id": "43fa188e-2dce-11eb-84c0-835ad1fd6287"},
- {"type": "permissions", "id": "4916eebe-2dce-11eb-84c0-271cb2c672e8"}, {"type":
- "permissions", "id": "edfd5e75-801f-11eb-96d8-da7ad0900002"}, {"type": "permissions",
- "id": "98b984f4-b16d-11eb-a2c6-da7ad0900002"}, {"type": "permissions", "id":
- "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id": "97971c1c-e895-11eb-b13c-da7ad0900002"},
- {"type": "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type":
- "permissions", "id": "7605ef25-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
- "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
- "8e4d6b6e-5750-11ec-a9f4-da7ad0900002"}, {"type": "permissions", "id": "945b3bb4-5884-11ec-aa6d-da7ad0900002"},
- {"type": "permissions", "id": "f6e917a8-8502-11ec-bf20-da7ad0900002"}, {"type":
- "permissions", "id": "f6e917a6-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions",
- "id": "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id":
- "f8e941cf-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id": "ee68fba8-173a-11ed-b00b-da7ad0900002"},
- {"type": "permissions", "id": "6be119a6-1cd8-11ed-b185-da7ad0900002"}, {"type":
- "permissions", "id": "4ee674f6-55d9-11ed-b10d-da7ad0900002"}, {"type": "permissions",
- "id": "4ee5731c-55d9-11ed-b10b-da7ad0900002"}, {"type": "permissions", "id":
- "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type": "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"},
- {"type": "permissions", "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type":
- "permissions", "id": "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions",
- "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"}, {"type": "permissions", "id":
- "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type": "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"},
- {"type": "permissions", "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}},
- {"type": "roles", "id": "fa017a36-bfcb-11eb-a4d7-da7ad0900002", "attributes":
- {"name": "Datadog Standard Role", "created_at": "2021-05-28T15:47:15.999885+00:00",
- "modified_at": "2021-05-28T15:47:15.999885+00:00", "user_count": 0}, "relationships":
- {"permissions": {"data": [{"type": "permissions", "id": "984d2f00-d3b4-11e8-a200-bb47109e9987"},
- {"type": "permissions", "id": "5e605652-dd12-11e8-9e53-375565b8970e"}, {"type":
- "permissions", "id": "62cc036c-dd12-11e8-9e54-db9995643092"}, {"type": "permissions",
- "id": "6f66600e-dd12-11e8-9e55-7f30fbb45e73"}, {"type": "permissions", "id":
- "7d7c98ac-dd12-11e8-9e56-93700598622d"}, {"type": "permissions", "id": "811ac4ca-dd12-11e8-9e57-676a7f0beef9"},
- {"type": "permissions", "id": "84aa3ae4-dd12-11e8-9e58-a373a514ccd0"}, {"type":
- "permissions", "id": "979df720-aed7-11e9-99c6-a7eb8373165a"}, {"type": "permissions",
- "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
- "d90f6831-d3d8-11e9-a77a-4fd230ddbc6a"}, {"type": "permissions", "id": "d90f6832-d3d8-11e9-a77a-bf8a2607f864"},
- {"type": "permissions", "id": "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type":
- "permissions", "id": "48ef71ea-d8b1-11e9-a77a-93f408470ad0"}, {"type": "permissions",
- "id": "4d87d5f8-d8b1-11e9-a77a-eb9c8350d04f"}, {"type": "permissions", "id":
- "1af86ce4-7823-11ea-93dc-d7cad1b1c6cb"}, {"type": "permissions", "id": "b382b982-8535-11ea-93de-2bf1bdf20798"},
- {"type": "permissions", "id": "7314eb20-aa58-11ea-95e2-6fb6e4a451d5"}, {"type":
- "permissions", "id": "7b516476-aa58-11ea-95e2-93718cd56369"}, {"type": "permissions",
- "id": "80de1ec0-aa58-11ea-95e2-aff381626d5d"}, {"type": "permissions", "id":
- "58b412cc-ff6d-11eb-bc9c-da7ad0900002"}, {"type": "permissions", "id": "9ac1d8cc-e707-11ea-aa2d-73d37e989a9d"},
- {"type": "permissions", "id": "46a301da-ec5c-11ea-aa9f-73bedeab67ee"}, {"type":
- "permissions", "id": "46a301db-ec5c-11ea-aa9f-2fe72193d60e"}, {"type": "permissions",
- "id": "46a301dd-ec5c-11ea-aa9f-97edfb345bc9"}, {"type": "permissions", "id":
- "46a301e4-ec5c-11ea-aa9f-87282b3a50cc"}, {"type": "permissions", "id": "07c3c146-f7f8-11ea-acf6-0bd62b9ae60e"},
- {"type": "permissions", "id": "372896c4-f923-11ea-adbc-4fecd107156d"}, {"type":
- "permissions", "id": "4628ca54-f923-11ea-adbc-4b2b7f88c5e9"}, {"type": "permissions",
- "id": "4ada6e36-f923-11ea-adbc-0788e5c5e3cf"}, {"type": "permissions", "id":
- "5025ee24-f923-11ea-adbc-576ea241df8d"}, {"type": "permissions", "id": "55f4b5ec-f923-11ea-adbc-1bfa2334a755"},
- {"type": "permissions", "id": "5c6b88e2-f923-11ea-adbc-abf57d079420"}, {"type":
- "permissions", "id": "642eebe6-f923-11ea-adbc-eb617674ea04"}, {"type": "permissions",
- "id": "6ba32d22-0e1a-11eb-ba44-bf9a5aafaa39"}, {"type": "permissions", "id":
- "fcac2ad8-2843-11eb-8315-0fe47949d625"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
- {"type": "permissions", "id": "43fa188e-2dce-11eb-84c0-835ad1fd6287"}, {"type":
- "permissions", "id": "4916eebe-2dce-11eb-84c0-271cb2c672e8"}, {"type": "permissions",
- "id": "5cbe5f9c-2dce-11eb-84c0-872d3e9f1076"}, {"type": "permissions", "id":
- "61765026-2dce-11eb-84c0-833e230d1b8f"}, {"type": "permissions", "id": "8106300a-54f7-11eb-8cbc-7781a434a67b"},
- {"type": "permissions", "id": "edfd5e75-801f-11eb-96d8-da7ad0900002"}, {"type":
- "permissions", "id": "98b984f4-b16d-11eb-a2c6-da7ad0900002"}, {"type": "permissions",
- "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id":
- "12efc211-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id": "12efc20f-d36c-11eb-a9b8-da7ad0900002"},
- {"type": "permissions", "id": "12efc210-d36c-11eb-a9b8-da7ad0900002"}, {"type":
- "permissions", "id": "97971c1c-e895-11eb-b13c-da7ad0900002"}, {"type": "permissions",
- "id": "97971c1d-e895-11eb-b13c-da7ad0900002"}, {"type": "permissions", "id":
- "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions", "id": "7605ef25-f376-11eb-b90b-da7ad0900002"},
- {"type": "permissions", "id": "c95412b8-16c7-11ec-85c0-da7ad0900002"}, {"type":
- "permissions", "id": "c95412b9-16c7-11ec-85c0-da7ad0900002"}, {"type": "permissions",
- "id": "26c79920-1703-11ec-85d2-da7ad0900002"}, {"type": "permissions", "id":
- "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id": "f4473c61-4792-11ec-a27b-da7ad0900002"},
- {"type": "permissions", "id": "8e4d6b6e-5750-11ec-a9f4-da7ad0900002"}, {"type":
- "permissions", "id": "945b3bb4-5884-11ec-aa6d-da7ad0900002"}, {"type": "permissions",
- "id": "f6e917a8-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions", "id":
- "f6e917aa-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions", "id": "f6e917a9-8502-11ec-bf20-da7ad0900002"},
- {"type": "permissions", "id": "f6e917a6-8502-11ec-bf20-da7ad0900002"}, {"type":
- "permissions", "id": "f6e917a7-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions",
- "id": "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id":
- "b6bf9ac7-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "2108215e-b9b4-11ec-958e-da7ad0900002"},
- {"type": "permissions", "id": "7b1f5089-c59e-11ec-aa32-da7ad0900002"}, {"type":
- "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions",
- "id": "f8e941d0-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id":
- "f8e941ce-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id": "ee68fba9-173a-11ed-b00b-da7ad0900002"},
- {"type": "permissions", "id": "ee68fba8-173a-11ed-b00b-da7ad0900002"}, {"type":
- "permissions", "id": "6be119a6-1cd8-11ed-b185-da7ad0900002"}, {"type": "permissions",
- "id": "36e2a22e-248a-11ed-b405-da7ad0900002"}, {"type": "permissions", "id":
- "4ee674f6-55d9-11ed-b10d-da7ad0900002"}, {"type": "permissions", "id": "4ee7e46c-55d9-11ed-b10e-da7ad0900002"},
- {"type": "permissions", "id": "4ee5731c-55d9-11ed-b10b-da7ad0900002"}, {"type":
- "permissions", "id": "4ee60688-55d9-11ed-b10c-da7ad0900002"}, {"type": "permissions",
- "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type": "permissions", "id":
- "824851a6-7a4c-11ed-9590-da7ad0900002"}, {"type": "permissions", "id": "77d55a44-7a5a-11ed-8abe-da7ad0900002"},
- {"type": "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type":
- "permissions", "id": "6c5c1090-7aff-11ed-a5cf-da7ad0900002"}, {"type": "permissions",
- "id": "6c5b7428-7aff-11ed-a5ce-da7ad0900002"}, {"type": "permissions", "id":
- "6c5de654-7aff-11ed-a5d1-da7ad0900002"}, {"type": "permissions", "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"},
- {"type": "permissions", "id": "ca6bfb3a-b44f-11ed-adb2-da7ad0900002"}, {"type":
- "permissions", "id": "4dc3eec6-b468-11ed-8539-da7ad0900002"}, {"type": "permissions",
- "id": "4dc4094c-b468-11ed-853a-da7ad0900002"}, {"type": "permissions", "id":
- "36bf3d0a-ccc0-11ed-9453-da7ad0900002"}, {"type": "permissions", "id": "f416f55e-db3f-11ed-8028-da7ad0900002"},
- {"type": "permissions", "id": "f416b1ac-db3f-11ed-8027-da7ad0900002"}, {"type":
- "permissions", "id": "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions",
- "id": "4e61ea18-de98-11ed-aa24-da7ad0900002"}, {"type": "permissions", "id":
- "a4316eb8-f438-11ed-8af2-da7ad0900002"}, {"type": "permissions", "id": "a431bf12-f438-11ed-8af3-da7ad0900002"},
- {"type": "permissions", "id": "8352cf04-f6ac-11ed-9ec7-da7ad0900002"}, {"type":
- "permissions", "id": "3a48350c-f9bc-11ed-b81c-da7ad0900002"}, {"type": "permissions",
- "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"}, {"type": "permissions", "id":
- "a77452c8-fff2-11ed-965d-da7ad0900002"}, {"type": "permissions", "id": "a51b375a-ff73-11ed-8c18-da7ad0900002"},
- {"type": "permissions", "id": "61f9891a-0070-11ee-9c3f-da7ad0900002"}, {"type":
- "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type": "permissions",
- "id": "cc8cd958-11eb-11ee-ade2-da7ad0900002"}, {"type": "permissions", "id":
- "b1ad77e6-0949-11ee-b2c3-da7ad0900002"}, {"type": "permissions", "id": "b1adb5da-0949-11ee-b2c4-da7ad0900002"},
- {"type": "permissions", "id": "0efeff18-1cec-11ee-992d-da7ad0900002"}, {"type":
- "permissions", "id": "785177a6-20da-11ee-bed7-da7ad0900002"}, {"type": "permissions",
- "id": "6c5c79b2-21a4-11ee-99ee-da7ad0900002"}, {"type": "permissions", "id":
- "1b8f54cc-2ca4-11ee-9e72-da7ad0900002"}, {"type": "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"},
- {"type": "permissions", "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}},
- {"type": "roles", "id": "e8406dae-760f-11ed-b571-da7ad0900002", "attributes":
- {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670404619",
- "created_at": "2022-12-07T09:17:01.147039+00:00", "modified_at": "2022-12-07T09:17:01.261261+00:00",
- "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
- "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
- "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
- {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
- "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
- "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
- "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"},
- {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type":
- "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions",
- "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type": "permissions", "id":
- "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
- {"type": "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type":
- "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions",
- "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}, {"type": "roles", "id":
- "fe9dd0a0-760f-11ed-b4a5-da7ad0900002", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670404656",
- "created_at": "2022-12-07T09:17:38.668879+00:00", "modified_at": "2022-12-07T09:17:38.767135+00:00",
- "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
- "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
- "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
- {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
- "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
- "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
- "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"},
- {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type":
- "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions",
- "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type": "permissions", "id":
- "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
- {"type": "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type":
- "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions",
- "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}, {"type": "roles", "id":
- "cf8c10f0-7610-11ed-8608-da7ad0900002", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405007",
- "created_at": "2022-12-07T09:23:29.196890+00:00", "modified_at": "2022-12-07T09:23:29.281877+00:00",
- "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
- "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
- "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
- {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
- "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
- "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
- "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"},
- {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type":
- "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions",
- "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type": "permissions", "id":
- "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
- {"type": "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type":
- "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions",
- "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}, {"type": "roles", "id":
- "ea30031a-7612-11ed-abf9-da7ad0900002", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405911",
- "created_at": "2022-12-07T09:38:32.884937+00:00", "modified_at": "2022-12-07T09:38:32.985618+00:00",
- "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
- "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
- "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
- {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
- "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
- "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
- "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"},
- {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type":
- "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions",
- "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type": "permissions", "id":
- "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
- {"type": "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type":
- "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions",
- "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}, {"type": "roles", "id":
- "f1e67558-7612-11ed-9fc8-da7ad0900002", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405924",
- "created_at": "2022-12-07T09:38:45.824787+00:00", "modified_at": "2022-12-07T09:38:45.921838+00:00",
- "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
- "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
- "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
- {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
- "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
- "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
- "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"},
- {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type":
- "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions",
- "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type": "permissions", "id":
- "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
- {"type": "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type":
- "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions",
- "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}, {"type": "roles", "id":
- "430aea7c-0501-11ee-9f44-da7ad0900002", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1686121345",
- "created_at": "2023-06-07T07:02:27.295218+00:00", "modified_at": "2023-06-07T07:02:27.326358+00:00",
- "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
- "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
- "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
- {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
- "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
- "id": "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id":
- "f8e941cf-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"},
- {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"}, {"type":
- "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type": "permissions",
- "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions", "id":
- "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}], "meta": {"page": {"total_count":
- 9, "total_filtered_count": 9}}}'
- headers:
- Content-Type:
- - application/json
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: GET
- uri: https://api.datadoghq.com/api/v2/permissions
- response:
- body:
- string: '{"data": [{"type": "permissions", "id": "984a2bd4-d3b4-11e8-a1ff-a7f660d43029",
- "attributes": {"name": "admin", "display_name": "Privileged Access", "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.", "created": "2018-10-19T15:35:23.734317+00:00", "group_name":
- "General", "display_type": "other", "restricted": false}}, {"type": "permissions",
- "id": "984d2f00-d3b4-11e8-a200-bb47109e9987", "attributes": {"name": "standard",
- "display_name": "Standard Access", "description": "Deprecated. Standard Access
- has been replaced by more specific permissions.", "created": "2018-10-19T15:35:23.756736+00:00",
- "group_name": "General", "display_type": "other", "restricted": false}}, {"type":
- "permissions", "id": "5e605652-dd12-11e8-9e53-375565b8970e", "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-31T13:39:19.727450+00:00", "group_name": "Log Management", "display_type":
- "read", "restricted": false}}, {"type": "permissions", "id": "62cc036c-dd12-11e8-9e54-db9995643092",
- "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-31T13:39:27.148615+00:00",
- "group_name": "Log Management", "display_type": "other", "restricted": false}},
- {"type": "permissions", "id": "6f66600e-dd12-11e8-9e55-7f30fbb45e73", "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-31T13:39:48.292879+00:00", "group_name":
- "Log Management", "display_type": "read", "restricted": false}}, {"type":
- "permissions", "id": "7d7c98ac-dd12-11e8-9e56-93700598622d", "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-31T13:40:11.926613+00:00",
- "group_name": "Log Management", "display_type": "write", "restricted": false}},
- {"type": "permissions", "id": "811ac4ca-dd12-11e8-9e57-676a7f0beef9", "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-31T13:40:17.996379+00:00", "group_name": "Log Management",
- "display_type": "other", "restricted": false}}, {"type": "permissions", "id":
- "84aa3ae4-dd12-11e8-9e58-a373a514ccd0", "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-31T13:40:23.969725+00:00",
- "group_name": "Log Management", "display_type": "write", "restricted": false}},
- {"type": "permissions", "id": "87b00304-dd12-11e8-9e59-cbeb5f71f72f", "attributes":
- {"name": "logs_write_archives", "display_name": "Logs Write Archives", "description":
- "Add and edit Log Archives.", "created": "2018-10-31T13:40:29.040786+00:00",
- "group_name": "Log Management", "display_type": "write", "restricted": false}},
- {"type": "permissions", "id": "979df720-aed7-11e9-99c6-a7eb8373165a", "attributes":
- {"name": "logs_generate_metrics", "display_name": "Logs Generate Metrics",
- "description": "Create custom metrics from logs.", "created": "2019-07-25T12:27:39.640758+00:00",
- "group_name": "Log Management", "display_type": "other", "restricted": false}},
- {"type": "permissions", "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2", "attributes":
- {"name": "dashboards_read", "display_name": "Dashboards Read", "description":
- "View dashboards.", "created": "2019-09-10T14:39:51.955175+00:00", "group_name":
- "Dashboards", "display_type": "read", "restricted": true}}, {"type": "permissions",
- "id": "d90f6831-d3d8-11e9-a77a-4fd230ddbc6a", "attributes": {"name": "dashboards_write",
- "display_name": "Dashboards Write", "description": "Create and change dashboards.",
- "created": "2019-09-10T14:39:51.962944+00:00", "group_name": "Dashboards",
- "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
- "d90f6832-d3d8-11e9-a77a-bf8a2607f864", "attributes": {"name": "dashboards_public_share",
- "display_name": "Dashboards Public Share", "description": "Generate public
- and authenticated links to share dashboards or embeddable graphs externally.",
- "created": "2019-09-10T14:39:51.967094+00:00", "group_name": "Dashboards",
- "display_type": "other", "restricted": false}}, {"type": "permissions", "id":
- "4441648c-d8b1-11e9-a77a-1b899a04b304", "attributes": {"name": "monitors_read",
- "display_name": "Monitors Read", "description": "View monitors.", "created":
- "2019-09-16T18:39:07.744297+00:00", "group_name": "Monitors", "display_type":
- "read", "restricted": true}}, {"type": "permissions", "id": "48ef71ea-d8b1-11e9-a77a-93f408470ad0",
- "attributes": {"name": "monitors_write", "display_name": "Monitors Write",
- "description": "Edit and delete individual monitors.", "created": "2019-09-16T18:39:15.597109+00:00",
- "group_name": "Monitors", "display_type": "write", "restricted": false}},
- {"type": "permissions", "id": "4d87d5f8-d8b1-11e9-a77a-eb9c8350d04f", "attributes":
- {"name": "monitors_downtime", "display_name": "Manage Downtimes", "description":
- "Set downtimes to suppress alerts from any monitor in an organization. Mute
- and unmute hosts. The ability to write monitors is not required to set downtimes.",
- "created": "2019-09-16T18:39:23.306702+00:00", "group_name": "Monitors", "display_type":
- "other", "restricted": false}}, {"type": "permissions", "id": "1af86ce4-7823-11ea-93dc-d7cad1b1c6cb",
- "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:24:35.989108+00:00", "group_name": "Log Management",
- "display_type": "read", "restricted": false}}, {"type": "permissions", "id":
- "b382b982-8535-11ea-93de-2bf1bdf20798", "attributes": {"name": "logs_read_archives",
- "display_name": "Logs Read Archives", "description": "Read Log Archives location
- and use it for rehydration.", "created": "2020-04-23T07:40:27.966133+00:00",
- "group_name": "Log Management", "display_type": "read", "restricted": false}},
- {"type": "permissions", "id": "7314eb20-aa58-11ea-95e2-6fb6e4a451d5", "attributes":
- {"name": "security_monitoring_rules_read", "display_name": "Security Rules
- Read", "description": "Read Detection Rules.", "created": "2020-06-09T13:52:25.279909+00:00",
- "group_name": "Cloud Security Platform", "display_type": "read", "restricted":
- false}}, {"type": "permissions", "id": "7b516476-aa58-11ea-95e2-93718cd56369",
- "attributes": {"name": "security_monitoring_rules_write", "display_name":
- "Security Rules Write", "description": "Create and edit Detection Rules.",
- "created": "2020-06-09T13:52:39.099413+00:00", "group_name": "Cloud Security
- Platform", "display_type": "write", "restricted": false}}, {"type": "permissions",
- "id": "80de1ec0-aa58-11ea-95e2-aff381626d5d", "attributes": {"name": "security_monitoring_signals_read",
- "display_name": "Security Signals Read", "description": "View Security Signals.",
- "created": "2020-06-09T13:52:48.410398+00:00", "group_name": "Cloud Security
- Platform", "display_type": "read", "restricted": false}}, {"type": "permissions",
- "id": "58b412cc-ff6d-11eb-bc9c-da7ad0900002", "attributes": {"name": "security_monitoring_signals_write",
- "display_name": "Security Signals Write", "description": "Modify Security
- Signals.", "created": "2021-08-17T15:11:06.963503+00:00", "group_name": "Cloud
- Security Platform", "display_type": "write", "restricted": false}}, {"type":
- "permissions", "id": "9ac1d8cc-e707-11ea-aa2d-73d37e989a9d", "attributes":
- {"name": "user_access_invite", "display_name": "User Access Invite", "description":
- "Invite other users to your organization.", "created": "2020-08-25T19:17:23.539701+00:00",
- "group_name": "Access Management", "display_type": "other", "restricted":
- false}}, {"type": "permissions", "id": "9de604d8-e707-11ea-aa2d-93f1a783b3a3",
- "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:17:28.810412+00:00",
- "group_name": "Access Management", "display_type": "other", "restricted":
- false}}, {"type": "permissions", "id": "46a301da-ec5c-11ea-aa9f-73bedeab67ee",
- "attributes": {"name": "user_app_keys", "display_name": "User App Keys", "description":
- "View and manage Application Keys owned by the user.", "created": "2020-09-01T14:06:05.444705+00:00",
- "group_name": "API and Application Keys", "display_type": "other", "restricted":
- false}}, {"type": "permissions", "id": "46a301db-ec5c-11ea-aa9f-2fe72193d60e",
- "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:06:05.444705+00:00", "group_name": "API and Application
- Keys", "display_type": "read", "restricted": false}}, {"type": "permissions",
- "id": "46a301dc-ec5c-11ea-aa9f-13b33f8f46ea", "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:06:05.444705+00:00",
- "group_name": "API and Application Keys", "display_type": "write", "restricted":
- false}}, {"type": "permissions", "id": "46a301dd-ec5c-11ea-aa9f-97edfb345bc9",
- "attributes": {"name": "synthetics_private_location_read", "display_name":
- "Synthetics Private Locations Read", "description": "View, search, and use
- Synthetics private locations.", "created": "2020-09-01T14:06:05.444705+00:00",
- "group_name": "Synthetic Monitoring", "display_type": "read", "restricted":
- false}}, {"type": "permissions", "id": "46a301de-ec5c-11ea-aa9f-a73252c24806",
- "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:06:05.444705+00:00", "group_name": "Synthetic Monitoring",
- "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
- "46a301df-ec5c-11ea-aa9f-970a9ae645e5", "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:06:05.444705+00:00",
- "group_name": "Billing and Usage", "display_type": "read", "restricted": false}},
- {"type": "permissions", "id": "46a301e0-ec5c-11ea-aa9f-6ba6cc675d8c", "attributes":
- {"name": "billing_edit", "display_name": "Billing Edit", "description": "Manage
- your organization''s subscription and payment method.", "created": "2020-09-01T14:06:05.444705+00:00",
- "group_name": "Billing and Usage", "display_type": "write", "restricted":
- false}}, {"type": "permissions", "id": "46a301e1-ec5c-11ea-aa9f-afa39f6f3e36",
- "attributes": {"name": "usage_read", "display_name": "Usage Read", "description":
- "View your organization''s usage and usage attribution.", "created": "2020-09-01T14:06:05.444705+00:00",
- "group_name": "Billing and Usage", "display_type": "read", "restricted": false}},
- {"type": "permissions", "id": "46a301e2-ec5c-11ea-aa9f-1f511b7305fd", "attributes":
- {"name": "usage_edit", "display_name": "Usage Edit", "description": "Manage
- your organization''s usage attribution set-up.", "created": "2020-09-01T14:06:05.444705+00:00",
- "group_name": "Billing and Usage", "display_type": "write", "restricted":
- false}}, {"type": "permissions", "id": "46a301e4-ec5c-11ea-aa9f-87282b3a50cc",
- "attributes": {"name": "metric_tags_write", "display_name": "Metric Tags Write",
- "description": "Edit and save tag configurations for custom metrics.", "created":
- "2020-09-01T14:06:05.444705+00:00", "group_name": "Metrics", "display_type":
- "write", "restricted": false}}, {"type": "permissions", "id": "07c3c146-f7f8-11ea-acf6-0bd62b9ae60e",
- "attributes": {"name": "logs_write_historical_view", "display_name": "Logs
- Write Historical Views", "description": "Rehydrate logs from Archives.", "created":
- "2020-09-16T08:38:44.242076+00:00", "group_name": "Log Management", "display_type":
- "write", "restricted": false}}, {"type": "permissions", "id": "2fbdac76-f923-11ea-adbc-07f3823e2b43",
- "attributes": {"name": "audit_logs_read", "display_name": "Audit Trail Read",
- "description": "View Audit Trail in your organization.", "created": "2020-09-17T20:20:10.834252+00:00",
- "group_name": "Compliance", "display_type": "read", "restricted": false}},
- {"type": "permissions", "id": "372896c4-f923-11ea-adbc-4fecd107156d", "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:20:23.279769+00:00", "group_name": "API and Application
- Keys", "display_type": "read", "restricted": false}}, {"type": "permissions",
- "id": "3e4d4d28-f923-11ea-adbc-e3565938c12e", "attributes": {"name": "api_keys_write",
- "display_name": "API Keys Write", "description": "Create and rename API Keys
- for your organization.", "created": "2020-09-17T20:20:35.264430+00:00", "group_name":
- "API and Application Keys", "display_type": "write", "restricted": false}},
- {"type": "permissions", "id": "4628ca54-f923-11ea-adbc-4b2b7f88c5e9", "attributes":
- {"name": "synthetics_global_variable_read", "display_name": "Synthetics Global
- Variable Read", "description": "View, search, and use Synthetics global variables.",
- "created": "2020-09-17T20:20:48.446916+00:00", "group_name": "Synthetic Monitoring",
- "display_type": "read", "restricted": false}}, {"type": "permissions", "id":
- "4ada6e36-f923-11ea-adbc-0788e5c5e3cf", "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:20:56.322003+00:00",
- "group_name": "Synthetic Monitoring", "display_type": "write", "restricted":
- false}}, {"type": "permissions", "id": "5025ee24-f923-11ea-adbc-576ea241df8d",
- "attributes": {"name": "synthetics_read", "display_name": "Synthetics Read",
- "description": "List and view configured Synthetic tests and test results.",
- "created": "2020-09-17T20:21:05.205361+00:00", "group_name": "Synthetic Monitoring",
- "display_type": "read", "restricted": false}}, {"type": "permissions", "id":
- "55f4b5ec-f923-11ea-adbc-1bfa2334a755", "attributes": {"name": "synthetics_write",
- "display_name": "Synthetics Write", "description": "Create, edit, and delete
- Synthetic tests.", "created": "2020-09-17T20:21:14.949140+00:00", "group_name":
- "Synthetic Monitoring", "display_type": "write", "restricted": false}}, {"type":
- "permissions", "id": "5c6b88e2-f923-11ea-adbc-abf57d079420", "attributes":
- {"name": "synthetics_default_settings_read", "display_name": "Synthetics Default
- Settings Read", "description": "View the default settings for Synthetic Monitoring.",
- "created": "2020-09-17T20:21:25.794160+00:00", "group_name": "Synthetic Monitoring",
- "display_type": "read", "restricted": false}}, {"type": "permissions", "id":
- "642eebe6-f923-11ea-adbc-eb617674ea04", "attributes": {"name": "synthetics_default_settings_write",
- "display_name": "Synthetics Default Settings Write", "description": "Edit
- the default settings for Synthetic Monitoring.", "created": "2020-09-17T20:21:38.818771+00:00",
- "group_name": "Synthetic Monitoring", "display_type": "write", "restricted":
- false}}, {"type": "permissions", "id": "6ba32d22-0e1a-11eb-ba44-bf9a5aafaa39",
- "attributes": {"name": "logs_write_facets", "display_name": "Logs Write Facets",
- "description": "Create or edit Log Facets.", "created": "2020-10-14T12:40:20.271908+00:00",
- "group_name": "Log Management", "display_type": "write", "restricted": false}},
- {"type": "permissions", "id": "a42e94b2-1476-11eb-bd08-efda28c04248", "attributes":
- {"name": "service_account_write", "display_name": "Service Account Write",
- "description": "Create, disable, and use Service Accounts in your organization.",
- "created": "2020-10-22T14:55:35.814239+00:00", "group_name": "Access Management",
- "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
- "fcac2ad8-2843-11eb-8315-0fe47949d625", "attributes": {"name": "integrations_api",
- "display_name": "Integrations API", "description": "Deprecated. Use the Integrations
- APIs to configure integrations. In order to configure integrations from the
- UI, a user must also have Standard Access.", "created": "2020-11-16T19:43:23.198568+00:00",
- "group_name": "Integrations", "display_type": "other", "restricted": false}},
- {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0", "attributes":
- {"name": "apm_read", "display_name": "APM Read", "description": "Read and
- query APM and Trace Analytics.", "created": "2020-11-23T20:55:45.006110+00:00",
- "group_name": "APM", "display_type": "read", "restricted": true}}, {"type":
- "permissions", "id": "43fa188e-2dce-11eb-84c0-835ad1fd6287", "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:55:49.190595+00:00", "group_name":
- "APM", "display_type": "read", "restricted": false}}, {"type": "permissions",
- "id": "465cfe66-2dce-11eb-84c0-6baa888239fa", "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:55:53.194236+00:00", "group_name": "APM", "display_type":
- "write", "restricted": false}}, {"type": "permissions", "id": "4916eebe-2dce-11eb-84c0-271cb2c672e8",
- "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:55:57.768261+00:00",
- "group_name": "APM", "display_type": "read", "restricted": false}}, {"type":
- "permissions", "id": "4e3f02b4-2dce-11eb-84c0-2fca946a6efc", "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:56:06.419518+00:00",
- "group_name": "APM", "display_type": "write", "restricted": false}}, {"type":
- "permissions", "id": "53950c54-2dce-11eb-84c0-a79ae108f6f8", "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:56:15.371926+00:00", "group_name": "APM", "display_type": "write",
- "restricted": false}}, {"type": "permissions", "id": "5cbe5f9c-2dce-11eb-84c0-872d3e9f1076",
- "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-23T20:56:30.742299+00:00", "group_name":
- "APM", "display_type": "write", "restricted": false}}, {"type": "permissions",
- "id": "61765026-2dce-11eb-84c0-833e230d1b8f", "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-23T20:56:38.658649+00:00", "group_name":
- "APM", "display_type": "write", "restricted": false}}, {"type": "permissions",
- "id": "04bc1cf2-340a-11eb-873a-43b973c760dd", "attributes": {"name": "audit_logs_write",
- "display_name": "Audit Trail Write", "description": "Configure Audit Trail
- in your organization.", "created": "2020-12-01T19:18:39.866516+00:00", "group_name":
- "Compliance", "display_type": "write", "restricted": false}}, {"type": "permissions",
- "id": "8106300a-54f7-11eb-8cbc-7781a434a67b", "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-12T16:59:16.324480+00:00",
- "group_name": "Real User Monitoring", "display_type": "write", "restricted":
- false}}, {"type": "permissions", "id": "edfd5e74-801f-11eb-96d8-da7ad0900002",
- "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:06:59.006815+00:00", "group_name": "APM", "display_type":
- "write", "restricted": false}}, {"type": "permissions", "id": "edfd5e75-801f-11eb-96d8-da7ad0900002",
- "attributes": {"name": "debugger_read", "display_name": "Dynamic Instrumentation
- Read", "description": "View Dynamic Instrumentation configuration.", "created":
- "2021-03-08T15:06:59.010517+00:00", "group_name": "APM", "display_type": "read",
- "restricted": false}}, {"type": "permissions", "id": "bf0dcf7c-90af-11eb-9b82-da7ad0900002",
- "attributes": {"name": "data_scanner_read", "display_name": "Data Scanner
- Read", "description": "View Data Scanner configurations.", "created": "2021-03-29T16:56:46.394971+00:00",
- "group_name": "Compliance", "display_type": "read", "restricted": false}},
- {"type": "permissions", "id": "bf0dcf7d-90af-11eb-9b82-da7ad0900002", "attributes":
- {"name": "data_scanner_write", "display_name": "Data Scanner Write", "description":
- "Edit Data Scanner configurations.", "created": "2021-03-29T16:56:46.398584+00:00",
- "group_name": "Compliance", "display_type": "write", "restricted": false}},
- {"type": "permissions", "id": "7df222b6-a45c-11eb-a0af-da7ad0900002", "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:12.187340+00:00", "group_name": "Access Management",
- "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
- "98b984f4-b16d-11eb-a2c6-da7ad0900002", "attributes": {"name": "security_monitoring_filters_read",
- "display_name": "Security Filters Read", "description": "Read Security Filters.",
- "created": "2021-05-10T08:56:23.676833+00:00", "group_name": "Cloud Security
- Platform", "display_type": "read", "restricted": false}}, {"type": "permissions",
- "id": "98b984f5-b16d-11eb-a2c6-da7ad0900002", "attributes": {"name": "security_monitoring_filters_write",
- "display_name": "Security Filters Write", "description": "Create, edit, and
- delete Security Filters.", "created": "2021-05-10T08:56:23.680551+00:00",
- "group_name": "Cloud Security Platform", "display_type": "write", "restricted":
- false}}, {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002",
- "attributes": {"name": "incident_read", "display_name": "Incidents Read",
- "description": "View incidents in Datadog.", "created": "2021-06-22T15:11:09.255499+00:00",
- "group_name": "Case and Incident Management", "display_type": "read", "restricted":
- true}}, {"type": "permissions", "id": "12efc211-d36c-11eb-a9b8-da7ad0900002",
- "attributes": {"name": "incident_write", "display_name": "Incidents Write",
- "description": "Create, view, and manage incidents in Datadog.", "created":
- "2021-06-22T15:11:09.264369+00:00", "group_name": "Case and Incident Management",
- "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
- "12efc20f-d36c-11eb-a9b8-da7ad0900002", "attributes": {"name": "incident_settings_read",
- "display_name": "Incident Settings Read", "description": "View Incident Settings.",
- "created": "2021-06-22T15:11:09.259568+00:00", "group_name": "Case and Incident
- Management", "display_type": "read", "restricted": false}}, {"type": "permissions",
- "id": "12efc210-d36c-11eb-a9b8-da7ad0900002", "attributes": {"name": "incident_settings_write",
- "display_name": "Incident Settings Write", "description": "Configure Incident
- Settings.", "created": "2021-06-22T15:11:09.261986+00:00", "group_name": "Case
- and Incident Management", "display_type": "write", "restricted": false}},
- {"type": "permissions", "id": "97971c1c-e895-11eb-b13c-da7ad0900002", "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:31:15.595771+00:00", "group_name": "Cloud
- Security Platform", "display_type": "read", "restricted": false}}, {"type":
- "permissions", "id": "97971c1d-e895-11eb-b13c-da7ad0900002", "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:31:15.598808+00:00", "group_name":
- "Cloud Security Platform", "display_type": "write", "restricted": false}},
- {"type": "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002", "attributes":
- {"name": "rum_apps_read", "display_name": "RUM Apps Read", "description":
- "View RUM Applications data.", "created": "2021-08-02T09:46:07.671535+00:00",
- "group_name": "Real User Monitoring", "display_type": "read", "restricted":
- true}}, {"type": "permissions", "id": "7605ef25-f376-11eb-b90b-da7ad0900002",
- "attributes": {"name": "rum_session_replay_read", "display_name": "RUM Session
- Replay Read", "description": "View Session Replays.", "created": "2021-08-02T09:46:07.674640+00:00",
- "group_name": "Real User Monitoring", "display_type": "read", "restricted":
- false}}, {"type": "permissions", "id": "c95412b8-16c7-11ec-85c0-da7ad0900002",
- "attributes": {"name": "security_monitoring_notification_profiles_read", "display_name":
- "Security Notification Rules Read", "description": "Read Notification Rules.",
- "created": "2021-09-16T08:26:27.366789+00:00", "group_name": "Cloud Security
- Platform", "display_type": "read", "restricted": false}}, {"type": "permissions",
- "id": "c95412b9-16c7-11ec-85c0-da7ad0900002", "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.369359+00:00",
- "group_name": "Cloud Security Platform", "display_type": "write", "restricted":
- false}}, {"type": "permissions", "id": "26c79920-1703-11ec-85d2-da7ad0900002",
- "attributes": {"name": "apm_generate_metrics", "display_name": "APM Generate
- Metrics", "description": "Create custom metrics from spans.", "created": "2021-09-16T15:31:24.458963+00:00",
- "group_name": "APM", "display_type": "other", "restricted": false}}, {"type":
- "permissions", "id": "f4473c60-4792-11ec-a27b-da7ad0900002", "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:43.074031+00:00", "group_name":
- "Cloud Security Platform", "display_type": "read", "restricted": false}},
- {"type": "permissions", "id": "f4473c61-4792-11ec-a27b-da7ad0900002", "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:43.077905+00:00",
- "group_name": "Cloud Security Platform", "display_type": "write", "restricted":
- false}}, {"type": "permissions", "id": "020a563c-56a4-11ec-a982-da7ad0900002",
- "attributes": {"name": "apm_pipelines_write", "display_name": "APM Pipelines
- Write", "description": "Add and change APM pipeline configurations.", "created":
- "2021-12-06T14:51:35.049129+00:00", "group_name": "APM", "display_type": "write",
- "restricted": false}}, {"type": "permissions", "id": "8e4d6b6e-5750-11ec-a9f4-da7ad0900002",
- "attributes": {"name": "apm_pipelines_read", "display_name": "APM Pipelines
- Read", "description": "View APM pipeline configurations.", "created": "2021-12-07T11:26:43.807269+00:00",
- "group_name": "APM", "display_type": "read", "restricted": false}}, {"type":
- "permissions", "id": "945b3bb4-5884-11ec-aa6d-da7ad0900002", "attributes":
- {"name": "observability_pipelines_read", "display_name": "Pipeline Read",
- "description": "View pipelines in your organization.", "created": "2021-12-09T00:11:38.956827+00:00",
- "group_name": "Observability Pipelines", "display_type": "read", "restricted":
- false}}, {"type": "permissions", "id": "945b3bb5-5884-11ec-aa6d-da7ad0900002",
- "attributes": {"name": "observability_pipelines_write", "display_name": "Pipeline
- Write", "description": "Edit pipelines in your organization.", "created":
- "2021-12-09T00:11:38.960833+00:00", "group_name": "Observability Pipelines",
- "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
- "f6e917a8-8502-11ec-bf20-da7ad0900002", "attributes": {"name": "workflows_read",
- "display_name": "Workflows Read", "description": "View workflows.", "created":
- "2022-02-03T15:07:12.058412+00:00", "group_name": "Workflow Automation", "display_type":
- "read", "restricted": false}}, {"type": "permissions", "id": "f6e917aa-8502-11ec-bf20-da7ad0900002",
- "attributes": {"name": "workflows_write", "display_name": "Workflows Write",
- "description": "Create, edit, and delete workflows.", "created": "2022-02-03T15:07:12.061765+00:00",
- "group_name": "Workflow Automation", "display_type": "write", "restricted":
- false}}, {"type": "permissions", "id": "f6e917a9-8502-11ec-bf20-da7ad0900002",
- "attributes": {"name": "workflows_run", "display_name": "Workflows Run", "description":
- "Run workflows.", "created": "2022-02-03T15:07:12.060079+00:00", "group_name":
- "Workflow Automation", "display_type": "other", "restricted": false}}, {"type":
- "permissions", "id": "f6e917a6-8502-11ec-bf20-da7ad0900002", "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:07:12.053432+00:00", "group_name":
- "Workflow Automation", "display_type": "read", "restricted": false}}, {"type":
- "permissions", "id": "f6e917a7-8502-11ec-bf20-da7ad0900002", "attributes":
- {"name": "connections_write", "display_name": "Connections Write", "description":
- "Create and delete connections.", "created": "2022-02-03T15:07:12.056590+00:00",
- "group_name": "Workflow Automation", "display_type": "write", "restricted":
- false}}, {"type": "permissions", "id": "7a89ec40-8b69-11ec-812d-da7ad0900002",
- "attributes": {"name": "incidents_private_global_access", "display_name":
- "Private Incidents Global Access", "description": "Access all private incidents
- in Datadog, even when not added as a responder.", "created": "2022-02-11T18:36:08.531989+00:00",
- "group_name": "Case and Incident Management", "display_type": "other", "restricted":
- false}}, {"type": "permissions", "id": "b6bf9ac6-9a59-11ec-8480-da7ad0900002",
- "attributes": {"name": "notebooks_read", "display_name": "Notebooks Read",
- "description": "View notebooks.", "created": "2022-03-02T18:51:05.040950+00:00",
- "group_name": "Notebooks", "display_type": "read", "restricted": true}}, {"type":
- "permissions", "id": "b6bf9ac7-9a59-11ec-8480-da7ad0900002", "attributes":
- {"name": "notebooks_write", "display_name": "Notebooks Write", "description":
- "Create and change notebooks.", "created": "2022-03-02T18:51:05.044683+00:00",
- "group_name": "Notebooks", "display_type": "write", "restricted": false}},
- {"type": "permissions", "id": "e35c06b0-966b-11ec-83c9-da7ad0900002", "attributes":
- {"name": "logs_delete_data", "display_name": "Logs Delete Data", "description":
- "Delete data from your Logs, including entire indexes.", "created": "2022-02-25T18:51:06.176019+00:00",
- "group_name": "Log Management", "display_type": "write", "restricted": false}},
- {"type": "permissions", "id": "2108215e-b9b4-11ec-958e-da7ad0900002", "attributes":
- {"name": "rum_generate_metrics", "display_name": "RUM Generate Metrics", "description":
- "Create custom metrics from RUM events.", "created": "2022-04-11T16:26:24.106645+00:00",
- "group_name": "Real User Monitoring", "display_type": "write", "restricted":
- false}}, {"type": "permissions", "id": "7b1f5089-c59e-11ec-aa32-da7ad0900002",
- "attributes": {"name": "manage_integrations", "display_name": "Integrations
- Manage", "description": "Install, uninstall, and configure integrations.",
- "created": "2022-04-26T20:21:40.285834+00:00", "group_name": "Integrations",
- "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
- "1afff448-d5e9-11ec-ae37-da7ad0900002", "attributes": {"name": "usage_notifications_read",
- "display_name": "Usage Notifications Read", "description": "Receive notifications
- and view currently configured notification settings.", "created": "2022-05-17T13:56:09.870985+00:00",
- "group_name": "Billing and Usage", "display_type": "read", "restricted": false}},
- {"type": "permissions", "id": "1afff449-d5e9-11ec-ae37-da7ad0900002", "attributes":
- {"name": "usage_notifications_write", "display_name": "Usage Notifications
- Write", "description": "Receive notifications and configure notification settings.",
- "created": "2022-05-17T13:56:09.876124+00:00", "group_name": "Billing and
- Usage", "display_type": "write", "restricted": false}}, {"type": "permissions",
- "id": "6c87d3da-e5c5-11ec-b1d6-da7ad0900002", "attributes": {"name": "generate_dashboard_reports",
- "display_name": "Dashboards Report Write", "description": "Schedule custom
- reports from a dashboard. These reports will display any viewable data regardless
- of any granular restrictions (restriction queries, scoped indexes) applied
- to the report''s creator.", "created": "2022-06-06T18:21:03.378896+00:00",
- "group_name": "Dashboards", "display_type": "write", "restricted": false}},
- {"type": "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002", "attributes":
- {"name": "slos_read", "display_name": "SLOs Read", "description": "View SLOs
- and status corrections.", "created": "2022-06-08T16:20:55.142591+00:00", "group_name":
- "Service Level Objectives", "display_type": "read", "restricted": true}},
- {"type": "permissions", "id": "f8e941d0-e746-11ec-b22d-da7ad0900002", "attributes":
- {"name": "slos_write", "display_name": "SLOs Write", "description": "Create,
- edit, and delete SLOs.", "created": "2022-06-08T16:20:55.143869+00:00", "group_name":
- "Service Level Objectives", "display_type": "write", "restricted": false}},
- {"type": "permissions", "id": "f8e941ce-e746-11ec-b22d-da7ad0900002", "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:55.139410+00:00", "group_name": "Service
- Level Objectives", "display_type": "other", "restricted": false}}, {"type":
- "permissions", "id": "4784b11c-f311-11ec-a5f5-da7ad0900002", "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:48.150556+00:00", "group_name": "Monitors",
- "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
- "ee68fba9-173a-11ed-b00b-da7ad0900002", "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:39.377188+00:00", "group_name": "APM",
- "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
- "ee68fba8-173a-11ed-b00b-da7ad0900002", "attributes": {"name": "apm_service_catalog_read",
- "display_name": "Service Catalog Read", "description": "View service catalog
- and service definitions.", "created": "2022-08-08T16:55:39.374377+00:00",
- "group_name": "APM", "display_type": "read", "restricted": false}}, {"type":
- "permissions", "id": "5b2c3e28-1761-11ed-b018-da7ad0900002", "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:42.723663+00:00", "group_name": "Log
- Management", "display_type": "write", "restricted": false}}, {"type": "permissions",
- "id": "6be119a6-1cd8-11ed-b185-da7ad0900002", "attributes": {"name": "watchdog_insights_read",
- "display_name": "Watchdog Insights Read", "description": "Deprecated. View
- Watchdog Insights.", "created": "2022-08-15T20:25:36.677197+00:00", "group_name":
- "Watchdog", "display_type": "read", "restricted": false}}, {"type": "permissions",
- "id": "36e2a22e-248a-11ed-b405-da7ad0900002", "attributes": {"name": "connections_resolve",
- "display_name": "Connections Resolve", "description": "Resolve connections.",
- "created": "2022-08-25T15:25:56.325170+00:00", "group_name": "Workflow Automation",
- "display_type": "read", "restricted": false}}, {"type": "permissions", "id":
- "4ee674f6-55d9-11ed-b10d-da7ad0900002", "attributes": {"name": "appsec_protect_read",
- "display_name": "Application Security Management Protect Read", "description":
- "View blocked attackers.", "created": "2022-10-27T09:25:33.834253+00:00",
- "group_name": "Cloud Security Platform", "display_type": "read", "restricted":
- false}}, {"type": "permissions", "id": "4ee7e46c-55d9-11ed-b10e-da7ad0900002",
- "attributes": {"name": "appsec_protect_write", "display_name": "Application
- Security Management Protect Write", "description": "Manage blocked attackers.",
- "created": "2022-10-27T09:25:33.843656+00:00", "group_name": "Cloud Security
- Platform", "display_type": "write", "restricted": false}}, {"type": "permissions",
- "id": "4ee5731c-55d9-11ed-b10b-da7ad0900002", "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:33.827076+00:00", "group_name": "Cloud Security
- Platform", "display_type": "read", "restricted": false}}, {"type": "permissions",
- "id": "4ee60688-55d9-11ed-b10c-da7ad0900002", "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:33.831383+00:00", "group_name":
- "Cloud Security Platform", "display_type": "write", "restricted": false}},
- {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002", "attributes":
- {"name": "cases_read", "display_name": "Cases Read", "description": "View
- Cases.", "created": "2022-12-12T18:40:54.018521+00:00", "group_name": "Case
- and Incident Management", "display_type": "read", "restricted": false}}, {"type":
- "permissions", "id": "824851a6-7a4c-11ed-9590-da7ad0900002", "attributes":
- {"name": "cases_write", "display_name": "Cases Write", "description": "Create
- and update cases.", "created": "2022-12-12T18:40:54.023280+00:00", "group_name":
- "Case and Incident Management", "display_type": "write", "restricted": false}},
- {"type": "permissions", "id": "77d5f45e-7a5a-11ed-8abf-da7ad0900002", "attributes":
- {"name": "apm_remote_configuration_write", "display_name": "APM Remote Configuration
- Write", "description": "Edit APM Remote Configuration.", "created": "2022-12-12T20:20:49.450768+00:00",
- "group_name": "APM", "display_type": "write", "restricted": false}}, {"type":
- "permissions", "id": "77d55a44-7a5a-11ed-8abe-da7ad0900002", "attributes":
- {"name": "apm_remote_configuration_read", "display_name": "APM Remote Configuration
- Read", "description": "View APM Remote Configuration.", "created": "2022-12-12T20:20:49.446298+00:00",
- "group_name": "APM", "display_type": "read", "restricted": false}}, {"type":
- "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002", "attributes":
- {"name": "ci_visibility_read", "display_name": "CI Visibility Read", "description":
- "View CI Visibility.", "created": "2022-12-13T16:01:37.149406+00:00", "group_name":
- "CI Visibility", "display_type": "read", "restricted": true}}, {"type": "permissions",
- "id": "6c5c1090-7aff-11ed-a5cf-da7ad0900002", "attributes": {"name": "ci_visibility_write",
- "display_name": "CI Visibility Tests Write", "description": "Edit flaky tests
- and delete Test Services.", "created": "2022-12-13T16:01:37.157428+00:00",
- "group_name": "CI Visibility", "display_type": "write", "restricted": false}},
- {"type": "permissions", "id": "6c59ae72-7aff-11ed-a5cc-da7ad0900002", "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:01:37.141217+00:00", "group_name": "CI Visibility", "display_type":
- "write", "restricted": false}}, {"type": "permissions", "id": "6c5b7428-7aff-11ed-a5ce-da7ad0900002",
- "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:01:37.153418+00:00", "group_name": "CI Visibility",
- "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
- "6c5d0892-7aff-11ed-a5d0-da7ad0900002", "attributes": {"name": "intelligent_test_runner_activation_write",
- "display_name": "Intelligent Test Runner Activation Write", "description":
- "Enable or disable Intelligent Test Runner.", "created": "2022-12-13T16:01:37.163771+00:00",
- "group_name": "CI Visibility", "display_type": "write", "restricted": false}},
- {"type": "permissions", "id": "6c5de654-7aff-11ed-a5d1-da7ad0900002", "attributes":
- {"name": "intelligent_test_runner_settings_write", "display_name": "Intelligent
- Test Runner Settings Write", "description": "Edit Intelligent Test Runner
- settings, such as modifying ITR excluded branch list.", "created": "2022-12-13T16:01:37.169430+00:00",
- "group_name": "CI Visibility", "display_type": "write", "restricted": false}},
- {"type": "permissions", "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002", "attributes":
- {"name": "continuous_profiler_read", "display_name": "Continuous Profiler
- Read", "description": "View data in Continuous Profiler.", "created": "2022-12-16T16:50:32.545882+00:00",
- "group_name": "APM", "display_type": "read", "restricted": false}}, {"type":
- "permissions", "id": "1d76ecfa-9771-11ed-9c2f-da7ad0900002", "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:59.977837+00:00", "group_name": "Teams", "display_type":
- "write", "restricted": false}}, {"type": "permissions", "id": "ca6bfb3a-b44f-11ed-adb2-da7ad0900002",
- "attributes": {"name": "security_monitoring_findings_read", "display_name":
- "Security Monitoring Findings Read", "description": "View CSPM Findings.",
- "created": "2023-02-24T14:30:30.983679+00:00", "group_name": "Cloud Security
- Platform", "display_type": "read", "restricted": false}}, {"type": "permissions",
- "id": "4dc3eec6-b468-11ed-8539-da7ad0900002", "attributes": {"name": "incident_notification_settings_read",
- "display_name": "Incident Notification Settings Read", "description": "View
- Incidents Notification settings.", "created": "2023-02-24T17:25:59.263037+00:00",
- "group_name": "Case and Incident Management", "display_type": "read", "restricted":
- false}}, {"type": "permissions", "id": "4dc4094c-b468-11ed-853a-da7ad0900002",
- "attributes": {"name": "incident_notification_settings_write", "display_name":
- "Incident Notification Settings Write", "description": "Configure Incidents
- Notification settings.", "created": "2023-02-24T17:25:59.263037+00:00", "group_name":
- "Case and Incident Management", "display_type": "write", "restricted": false}},
- {"type": "permissions", "id": "35dd33ea-ca2e-11ed-bca0-da7ad0900002", "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:33.934187+00:00", "group_name": "CI Visibility",
- "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
- "36bf3d0a-ccc0-11ed-9453-da7ad0900002", "attributes": {"name": "error_tracking_write",
- "display_name": "Error Tracking Issue Write", "description": "Edit Error Tracking
- issues.", "created": "2023-03-27T16:55:44.263627+00:00", "group_name": "Error
- Tracking", "display_type": "write", "restricted": false}}, {"type": "permissions",
- "id": "f416f55e-db3f-11ed-8028-da7ad0900002", "attributes": {"name": "watchdog_alerts_write",
- "display_name": "Watchdog Alerts Write", "description": "Manage Watchdog Alerts.",
- "created": "2023-04-15T03:45:24.289668+00:00", "group_name": "Watchdog", "display_type":
- "write", "restricted": false}}, {"type": "permissions", "id": "f416b1ac-db3f-11ed-8027-da7ad0900002",
- "attributes": {"name": "saved_views_write", "display_name": "Saved Views Write",
- "description": "Modify Saved Views across all Datadog products.", "created":
- "2023-04-15T03:45:24.289668+00:00", "group_name": "Cross-Product Features",
- "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
- "4e61a95e-de98-11ed-aa23-da7ad0900002", "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-19T09:55:24.976379+00:00",
- "group_name": "API and Application Keys", "display_type": "read", "restricted":
- false}}, {"type": "permissions", "id": "4e61ea18-de98-11ed-aa24-da7ad0900002",
- "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-19T09:55:24.976379+00:00",
- "group_name": "API and Application Keys", "display_type": "write", "restricted":
- false}}, {"type": "permissions", "id": "a4316eb8-f438-11ed-8af2-da7ad0900002",
- "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-16T22:26:02.839419+00:00",
- "group_name": "Events", "display_type": "read", "restricted": false}}, {"type":
- "permissions", "id": "a431bf12-f438-11ed-8af3-da7ad0900002", "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-16T22:26:02.839419+00:00",
- "group_name": "Events", "display_type": "write", "restricted": false}}, {"type":
- "permissions", "id": "8352cf04-f6ac-11ed-9ec7-da7ad0900002", "attributes":
- {"name": "event_config_write", "display_name": "Event Config Write", "description":
- "Manage general event configuration such as API Emails.", "created": "2023-05-20T01:20:31.639587+00:00",
- "group_name": "Events", "display_type": "write", "restricted": false}}, {"type":
- "permissions", "id": "3a48350c-f9bc-11ed-b81c-da7ad0900002", "attributes":
- {"name": "security_monitoring_findings_write", "display_name": "Security Monitoring
- Findings Write", "description": "Mute CSPM Findings.", "created": "2023-05-23T22:50:34.532448+00:00",
- "group_name": "Cloud Security Platform", "display_type": "write", "restricted":
- false}}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002",
- "attributes": {"name": "cloud_cost_management_read", "display_name": "Cloud
- Cost Management Read", "description": "View Cloud Cost pages. This does not
- restrict access to the cloud cost data source in dashboards and notebooks.",
- "created": "2023-05-31T20:35:17.490437+00:00", "group_name": "Cloud Cost Management",
- "display_type": "read", "restricted": false}}, {"type": "permissions", "id":
- "a77452c8-fff2-11ed-965d-da7ad0900002", "attributes": {"name": "cloud_cost_management_write",
- "display_name": "Cloud Cost Management Write", "description": "Configure cloud
- cost accounts and global customizations.", "created": "2023-05-31T20:35:17.490437+00:00",
- "group_name": "Cloud Cost Management", "display_type": "write", "restricted":
- false}}, {"type": "permissions", "id": "a51b375a-ff73-11ed-8c18-da7ad0900002",
- "attributes": {"name": "host_tags_write", "display_name": "Host Tags Write",
- "description": "Add and change tags on hosts.", "created": "2023-05-31T05:26:07.469293+00:00",
- "group_name": "Metrics", "display_type": "write", "restricted": false}}, {"type":
- "permissions", "id": "61f9891a-0070-11ee-9c3f-da7ad0900002", "attributes":
- {"name": "ci_visibility_pipelines_write", "display_name": "CI Visibility Pipelines
- Write", "description": "Create CI Visibility pipeline spans using the API.",
- "created": "2023-06-01T11:35:17.513706+00:00", "group_name": "CI Visibility",
- "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
- "1377d9e4-0ec7-11ee-aebc-da7ad0900002", "attributes": {"name": "quality_gate_rules_read",
- "display_name": "Quality Gate Rules Read", "description": "View Quality Gate
- Rules.", "created": "2023-06-19T17:31:08.295856+00:00", "group_name": "CI
- Visibility", "display_type": "read", "restricted": false}}, {"type": "permissions",
- "id": "1377ff28-0ec7-11ee-aebd-da7ad0900002", "attributes": {"name": "quality_gate_rules_write",
- "display_name": "Quality Gate Rules Write", "description": "Edit Quality Gate
- Rules.", "created": "2023-06-19T17:31:08.295856+00:00", "group_name": "CI
- Visibility", "display_type": "write", "restricted": false}}, {"type": "permissions",
- "id": "cc8cd958-11eb-11ee-ade2-da7ad0900002", "attributes": {"name": "metrics_metadata_write",
- "display_name": "Metrics Metadata Write", "description": "Edit metadata on
- metrics.", "created": "2023-06-23T17:31:34.182629+00:00", "group_name": "Metrics",
- "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
- "b1adb6e8-0949-11ee-b2c5-da7ad0900002", "attributes": {"name": "rum_delete_data",
- "display_name": "RUM Delete Data", "description": "Delete data from RUM.",
- "created": "2023-06-12T17:51:01.325450+00:00", "group_name": "Real User Monitoring",
- "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
- "b1ad77e6-0949-11ee-b2c3-da7ad0900002", "attributes": {"name": "appsec_vm_write",
- "display_name": "Vulnerability Management Write", "description": "Update status
- or assignee of vulnerabilities.", "created": "2023-06-12T17:51:01.325450+00:00",
- "group_name": "Cloud Security Platform", "display_type": "write", "restricted":
- false}}, {"type": "permissions", "id": "b1adb5da-0949-11ee-b2c4-da7ad0900002",
- "attributes": {"name": "reference_tables_write", "display_name": "Reference
- Tables Write", "description": "Create or modify Reference Tables.", "created":
- "2023-06-12T17:51:01.325450+00:00", "group_name": "Reference Tables", "display_type":
- "write", "restricted": false}}, {"type": "permissions", "id": "0efeff18-1cec-11ee-992d-da7ad0900002",
- "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-07T17:31:08.450865+00:00",
- "group_name": "Real User Monitoring", "display_type": "write", "restricted":
- false}}, {"type": "permissions", "id": "6c5ce898-21a4-11ee-99ef-da7ad0900002",
- "attributes": {"name": "observability_pipelines_delete", "display_name": "Pipeline
- Delete", "description": "Delete pipelines from your organization.", "created":
- "2023-07-13T17:40:57.140947+00:00", "group_name": "Observability Pipelines",
- "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
- "6c5ce992-21a4-11ee-99f0-da7ad0900002", "attributes": {"name": "observability_pipelines_deploy",
- "display_name": "Pipeline Deploy", "description": "Deploy pipelines in your
- organization.", "created": "2023-07-13T17:40:57.140947+00:00", "group_name":
- "Observability Pipelines", "display_type": "write", "restricted": false}},
- {"type": "permissions", "id": "785177a6-20da-11ee-bed7-da7ad0900002", "attributes":
- {"name": "processes_generate_metrics", "display_name": "Processes Generate
- Metrics", "description": "Create custom metrics from processes.", "created":
- "2023-07-12T17:35:18.858294+00:00", "group_name": "Processes", "display_type":
- "write", "restricted": false}}, {"type": "permissions", "id": "7850e390-20da-11ee-bed6-da7ad0900002",
- "attributes": {"name": "api_keys_delete", "display_name": "API Keys Delete",
- "description": "Delete API Keys for your organization.", "created": "2023-07-12T17:35:18.858294+00:00",
- "group_name": "API and Application Keys", "display_type": "write", "restricted":
- false}}, {"type": "permissions", "id": "6c5c79b2-21a4-11ee-99ee-da7ad0900002",
- "attributes": {"name": "agent_flare_collection", "display_name": "Agent Flare
- Collection", "description": "Collect an Agent flare with Fleet Automation.",
- "created": "2023-07-13T17:40:57.140947+00:00", "group_name": "Fleet Automation",
- "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
- "1b8f54cc-2ca4-11ee-9e72-da7ad0900002", "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-27T17:36:24.369352+00:00", "group_name":
- "Cross-Product Features", "display_type": "write", "restricted": false}},
- {"type": "permissions", "id": "5356dfd2-3dee-11ee-b07b-da7ad0900002", "attributes":
- {"name": "static_analysis_settings_write", "display_name": "Static Analysis
- Settings Write", "description": "Edit Static Analysis settings.", "created":
- "2023-08-18T17:40:30.474557+00:00", "group_name": "CI Visibility", "display_type":
- "write", "restricted": false}}, {"type": "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002",
- "attributes": {"name": "cd_visibility_read", "display_name": "CD Visibility
- Read", "description": "View CD Visibility.", "created": "2023-09-09T00:06:00.708335+00:00",
- "group_name": "CI Visibility", "display_type": "read", "restricted": true}},
- {"type": "permissions", "id": "50c270de-69ee-11ee-9151-da7ad0900002", "attributes":
- {"name": "appsec_vm_read", "display_name": "Vulnerability Management Read",
- "description": "View vulnerabilities. This does not restrict access to the
- vulnerability data source through the API or inventory SQL.", "created": "2023-10-13T17:31:17.311029+00:00",
- "group_name": "Cloud Security Platform", "display_type": "read", "restricted":
- true}}, {"type": "permissions", "id": "7c7836fc-6f6e-11ee-8cdd-da7ad0900002",
- "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-20T17:31:22.039614+00:00",
- "group_name": "APM", "display_type": "write", "restricted": false}}]}'
- headers:
- Content-Type:
- - application/json
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: GET
- uri: https://api.datadoghq.com/api/v1/synthetics/locations
- response:
- body:
- string: '{"locations": [{"id": "aws:af-south-1", "name": "Cape Town (AWS)"},
- {"id": "aws:ap-east-1", "name": "Hong Kong (AWS)"}, {"id": "aws:ap-northeast-1",
- "name": "Tokyo (AWS)"}, {"id": "aws:ap-northeast-2", "name": "Seoul (AWS)"},
- {"id": "aws:ap-northeast-3", "name": "Osaka (AWS)"}, {"id": "aws:ap-south-1",
- "name": "Mumbai (AWS)"}, {"id": "aws:ap-southeast-1", "name": "Singapore (AWS)"},
- {"id": "aws:ap-southeast-2", "name": "Sydney (AWS)"}, {"id": "aws:ap-southeast-3",
- "name": "Jakarta (AWS)"}, {"id": "aws:ca-central-1", "name": "Canada Central
- (AWS)"}, {"id": "aws:eu-central-1", "name": "Frankfurt (AWS)"}, {"id": "aws:eu-north-1",
- "name": "Stockholm (AWS)"}, {"id": "aws:eu-south-1", "name": "Milan (AWS)"},
- {"id": "aws:eu-west-1", "name": "Ireland (AWS)"}, {"id": "aws:eu-west-2",
- "name": "London (AWS)"}, {"id": "aws:eu-west-3", "name": "Paris (AWS)"}, {"id":
- "aws:me-south-1", "name": "Bahrain (AWS)"}, {"id": "aws:sa-east-1", "name":
- "S\u00e3o Paulo (AWS)"}, {"id": "aws:us-east-1", "name": "N. Virginia (AWS)"},
- {"id": "aws:us-east-2", "name": "Ohio (AWS)"}, {"id": "aws:us-west-1", "name":
- "N. California (AWS)"}, {"id": "aws:us-west-2", "name": "Oregon (AWS)"}, {"id":
- "azure:eastus", "name": "Virginia (Azure)"}, {"id": "pl:test-create_a_private_location_returns_ok_response-1694441551-8a079ac8d9f1d1cc62e956686d743b73",
- "name": "Test-Create_a_private_location_returns_OK_response-1694441551"},
- {"id": "pl:test-create_a_private_location_returns_ok_response-1694441705-4c3d68fc0cefd323115b04b5e541797c",
- "name": "Test-Create_a_private_location_returns_OK_response-1694441705"},
- {"id": "pl:test-create_a_private_location_returns_ok_response-1694443516-aa1bf44d99b8f7016a301a19f892ff8a",
- "name": "Test-Create_a_private_location_returns_OK_response-1694443516"},
- {"id": "pl:test-private-variable-b66e383ccf2ec6911eb962a9c2577451", "name":
- "Test Private Variable"}]}'
- headers:
- Content-Type:
- - application/json
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: GET
- uri: https://api.datadoghq.com/api/v1/synthetics/private-locations/pl:test-create_a_private_location_returns_ok_response-1694441551-8a079ac8d9f1d1cc62e956686d743b73
- response:
- body:
- string: '{"createdAt": "2023-09-11T14:12:52.035553+00:00", "modifiedAt": "2023-09-11T14:12:52.035553+00:00",
- "description": "Test Test-Create_a_private_location_returns_OK_response-1694441551
- description", "tags": ["test:testcreateaprivatelocationreturnsokresponse1694441551"],
- "name": "Test-Create_a_private_location_returns_OK_response-1694441551", "metadata":
- {"restricted_roles": ["3f537d52-50ad-11ee-9fcf-da7ad0900002"]}, "id": "pl:test-create_a_private_location_returns_ok_response-1694441551-8a079ac8d9f1d1cc62e956686d743b73",
- "createdBy": "frog@datadoghq.com"}'
- headers:
- Content-Type:
- - application/json
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: GET
- uri: https://api.datadoghq.com/api/v1/synthetics/private-locations/pl:test-create_a_private_location_returns_ok_response-1694441705-4c3d68fc0cefd323115b04b5e541797c
- response:
- body:
- string: '{"createdAt": "2023-09-11T14:15:39.384868+00:00", "modifiedAt": "2023-09-11T14:15:39.384868+00:00",
- "description": "Test Test-Create_a_private_location_returns_OK_response-1694441705
- description", "tags": ["test:testcreateaprivatelocationreturnsokresponse1694441705"],
- "name": "Test-Create_a_private_location_returns_OK_response-1694441705", "metadata":
- {"restricted_roles": ["9b5496ea-50ad-11ee-b52d-da7ad0900002"]}, "id": "pl:test-create_a_private_location_returns_ok_response-1694441705-4c3d68fc0cefd323115b04b5e541797c",
- "createdBy": "frog@datadoghq.com"}'
- headers:
- Content-Type:
- - application/json
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: GET
- uri: https://api.datadoghq.com/api/v1/synthetics/private-locations/pl:test-create_a_private_location_returns_ok_response-1694443516-aa1bf44d99b8f7016a301a19f892ff8a
- response:
- body:
- string: '{"createdAt": "2023-09-11T14:45:42.834875+00:00", "modifiedAt": "2023-09-11T14:45:42.834875+00:00",
- "description": "Test Test-Create_a_private_location_returns_OK_response-1694443516
- description", "tags": ["test:testcreateaprivatelocationreturnsokresponse1694443516"],
- "name": "Test-Create_a_private_location_returns_OK_response-1694443516", "metadata":
- {"restricted_roles": ["d283f418-50b1-11ee-b302-da7ad0900002"]}, "id": "pl:test-create_a_private_location_returns_ok_response-1694443516-aa1bf44d99b8f7016a301a19f892ff8a",
- "createdBy": "frog@datadoghq.com"}'
- headers:
- Content-Type:
- - application/json
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: GET
- uri: https://api.datadoghq.com/api/v1/synthetics/private-locations/pl:test-private-variable-b66e383ccf2ec6911eb962a9c2577451
- response:
- body:
- string: '{"createdAt": "2021-06-30T12:27:21.433291+00:00", "modifiedAt": "2021-06-30T12:27:21.433291+00:00",
- "description": "datadog-sync-cli test", "tags": ["key:value"], "name": "Test
- Private Variable", "metadata": null, "id": "pl:test-private-variable-b66e383ccf2ec6911eb962a9c2577451",
- "createdBy": "noueman.khalikine@datadoghq.com"}'
- headers:
- Content-Type:
- - application/json
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: GET
- uri: https://api.datadoghq.com/api/v1/slo
- response:
- body:
- string: '{"data": [{"id": "ae04001ea55f52f6ae4b85d9b1023909", "name": "Composite
- monitor - Child 2", "tags": [], "monitor_tags": [], "thresholds": [{"timeframe":
- "7d", "target": 99.0, "target_display": "99."}], "type": "monitor", "type_id":
- 0, "description": "Updated Description Test", "timeframe": "7d", "target_threshold":
- 99.0, "monitor_ids": [37284891, 36239262], "creator": {"name": "Sherzod Karimov",
- "handle": "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"},
- "created_at": 1623260678, "modified_at": 1668546720}, {"id": "ba72d10835d75e0c8910597144f3733a",
- "name": "SLO test", "tags": [], "monitor_tags": [], "thresholds": [{"timeframe":
- "7d", "target": 99.0, "target_display": "99."}], "type": "metric", "type_id":
- 1, "description": "Test update creation", "timeframe": "7d", "target_threshold":
- 99.0, "query": {"denominator": "sum:api.requests{*}.as_count()", "numerator":
- "sum:api.requests.status_ok{*}.as_count()"}, "creator": {"name": "Noueman
- Khalikine", "handle": "noueman.khalikine@datadoghq.com", "email": "noueman.khalikine@datadoghq.com"},
- "created_at": 1623658372, "modified_at": 1626358963}, {"id": "b02adcb3d95a5c3dbfebf7c94bf4e8c5",
- "name": "Random monitor slo", "tags": [], "monitor_tags": [], "thresholds":
- [{"timeframe": "7d", "target": 99.9, "target_display": "99.9"}], "type": "monitor",
- "type_id": 0, "description": "", "timeframe": "7d", "target_threshold": 99.9,
- "monitor_ids": [36239262], "creator": {"name": "Sherzod Karimov", "handle":
- "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"},
- "created_at": 1695138080, "modified_at": 1695138180}], "error": null, "metadata":
- {"page": {"total_count": 3, "total_filtered_count": 3}}}'
- headers:
- Content-Type:
- - application/json
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: GET
- uri: https://api.datadoghq.com/api/v1/synthetics/tests
- response:
- body:
- string: '{"tests": [{"public_id": "9kt-p3e-he4", "name": "HTTP Test", "status":
- "paused", "type": "api", "tags": [], "created_at": "2022-11-15T21:05:04.474438+00:00",
- "modified_at": "2022-11-15T21:05:04.474438+00:00", "config": {"request": {"url":
- "https://google.com", "method": "GET"}, "assertions": [{"operator": "lessThan",
- "type": "responseTime", "target": 1000}, {"operator": "is", "type": "statusCode",
- "target": 301}, {"operator": "is", "property": "content-type", "type": "header",
- "target": "text/html; charset=UTF-8"}]}, "message": "Test synthetics ", "options":
- {"retry": {"count": 1, "interval": 300}, "tick_every": 604800, "monitor_options":
- {"include_tags": true, "notify_audit": false, "new_host_delay": 300, "on_missing_data":
- "show_no_data", "renotify_interval": 120}, "monitor_priority": 3, "min_location_failed":
- 1, "min_failure_duration": 120}, "locations": ["aws:ca-central-1"], "subtype":
- "http", "monitor_id": 103095757, "creator": {"name": "Sherzod Karimov", "handle":
- "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"}},
- {"public_id": "e6x-9uf-7vc", "name": "Test-Trigger_Synthetics_tests_returns_OK_response-1666783270",
- "status": "live", "type": "api", "tags": ["testing:api"], "created_at": "2022-11-15T21:05:04.493127+00:00",
- "modified_at": "2022-11-15T21:05:04.493127+00:00", "config": {"request": {"certificate":
- {"cert": {"updatedAt": "2020-10-16T09:23:24.857Z", "filename": "cert-filename"},
- "key": {"updatedAt": "2020-10-16T09:23:24.857Z", "filename": "key-filename"}},
- "url": "https://datadoghq.com", "headers": {"unique": "testtriggersyntheticstestsreturnsokresponse1666783270"},
- "proxy": {"url": "https://datadoghq.com", "headers": {}}, "timeout": 10, "method":
- "GET"}, "assertions": [{"operator": "is", "property": "{{ PROPERTY }}", "type":
- "header", "target": "text/html"}, {"operator": "lessThan", "type": "responseTime",
- "target": 2000}, {"operator": "validatesJSONPath", "type": "body", "target":
- {"operator": "isNot", "targetValue": "0", "jsonPath": "topKey"}}], "configVariables":
- [{"pattern": "content-type", "type": "text", "example": "content-type", "name":
- "PROPERTY"}]}, "message": "BDD test payload: synthetics_api_http_test_payload.json",
- "options": {"accept_self_signed": false, "retry": {"count": 3, "interval":
- 10}, "min_location_failed": 1, "allow_insecure": true, "follow_redirects":
- true, "min_failure_duration": 10, "monitor_priority": 5, "monitor_name": "Test-Trigger_Synthetics_tests_returns_OK_response-1666783270",
- "tick_every": 60}, "locations": ["aws:us-east-2"], "subtype": "http", "monitor_id":
- 103095761, "creator": {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com",
- "email": "sherzod.karimov@datadoghq.com"}}, {"public_id": "shp-p4u-z5t", "name":
- "TCP Test", "status": "live", "type": "api", "tags": ["foo:bar", "foo", "env:test"],
- "created_at": "2022-11-15T21:05:04.516477+00:00", "modified_at": "2022-11-15T21:05:04.516477+00:00",
- "config": {"request": {"host": "example.org", "port": 443}, "assertions":
- [{"operator": "lessThan", "type": "responseTime", "target": 2000}]}, "message":
- "Notify @pagerduty", "options": {"monitor_options": {"notify_audit": false,
- "include_tags": true, "new_host_delay": 300, "on_missing_data": "show_no_data",
- "renotify_interval": 0}, "tick_every": 900, "min_location_failed": 1}, "locations":
- ["aws:eu-central-1"], "subtype": "tcp", "monitor_id": 103095759, "creator":
- {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com", "email":
- "sherzod.karimov@datadoghq.com"}}, {"public_id": "sac-hdw-2vm", "name": "SSL
- Test", "status": "live", "type": "api", "tags": ["foo:bar", "foo", "env:test"],
- "created_at": "2022-11-15T21:05:04.539022+00:00", "modified_at": "2022-11-15T21:05:04.539022+00:00",
- "config": {"request": {"host": "example.org", "port": 443}, "assertions":
- [{"operator": "isInMoreThan", "type": "certificate", "target": 30}]}, "message":
- "Notify @pagerduty", "options": {"accept_self_signed": true, "monitor_options":
- {"notify_audit": false, "include_tags": true, "new_host_delay": 300, "on_missing_data":
- "show_no_data", "renotify_interval": 0}, "min_location_failed": 1, "tick_every":
- 900}, "locations": ["aws:eu-central-1"], "subtype": "ssl", "monitor_id": 103095758,
- "creator": {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com",
- "email": "sherzod.karimov@datadoghq.com"}}, {"public_id": "4mg-pxb-ze4", "name":
- "Browser Test (cloned)", "status": "live", "type": "browser", "tags": [],
- "created_at": "2022-11-15T21:05:04.564415+00:00", "modified_at": "2022-11-15T21:05:04.564415+00:00",
- "config": {"variables": [], "setCookie": "", "request": {"url": "https://docs.datadoghq.com",
- "headers": {"test": "{{ TEST_VARIABLE }}", "test_two": "{{ TEST_VAR_LOCAL
- }}"}, "method": "GET"}, "assertions": [], "configVariables": [{"pattern":
- "TEST_VAR_LOCAL", "type": "text", "name": "TEST_VAR_LOCAL", "example": "TEST_VAR_LOCAL"},
- {"type": "global", "id": "7478e601-cbe3-4a7d-babf-d48702b6b833", "name": "TEST_VARIABLE"}]},
- "message": "", "options": {"enableSecurityTesting": false, "retry": {"count":
- 0, "interval": 300}, "min_location_failed": 1, "min_failure_duration": 0,
- "noScreenshot": false, "tick_every": 604800, "disableCsp": false, "disableCors":
- false, "enableProfiling": false, "rumSettings": {"isEnabled": false}, "device_ids":
- ["chrome.laptop_large", "firefox.laptop_large", "chrome.tablet", "chrome.mobile_small",
- "firefox.mobile_small", "firefox.tablet"], "monitor_options": {"notify_audit":
- false, "include_tags": true, "new_host_delay": 300, "on_missing_data": "show_no_data",
- "renotify_interval": 0}, "ignoreServerCertificateError": false}, "locations":
- ["aws:us-west-1"], "monitor_id": 103095760, "creator": {"name": "Sherzod Karimov",
- "handle": "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"}},
- {"public_id": "n65-rw3-5ta", "name": "DNS Test", "status": "live", "type":
- "api", "tags": ["foo:bar", "foo", "env:test"], "created_at": "2022-11-15T21:05:04.640424+00:00",
- "modified_at": "2022-11-15T21:05:04.640424+00:00", "config": {"request": {"host":
- "example.org"}, "assertions": [{"operator": "is", "property": "A", "type":
- "recordSome", "target": "0.0.0.0"}]}, "message": "Notify @pagerduty", "options":
- {"monitor_options": {"notify_audit": false, "include_tags": true, "new_host_delay":
- 300, "on_missing_data": "show_no_data", "renotify_interval": 0}, "tick_every":
- 900, "min_location_failed": 1}, "locations": ["aws:eu-central-1"], "subtype":
- "dns", "monitor_id": 103095763, "creator": {"name": "Sherzod Karimov", "handle":
- "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"}},
- {"public_id": "ct9-df9-7cy", "name": "Multistep API Test", "status": "live",
- "type": "api", "tags": ["check_type:api", "env:test", "test:update"], "created_at":
- "2022-11-15T21:05:04.669579+00:00", "modified_at": "2022-11-15T21:05:04.669579+00:00",
- "config": {"steps": [{"retry": {"count": 0, "interval": 300}, "name": "Test
- on datadoghq.com", "request": {"url": "https://datadoghq.com", "headers":
- {"content-type": "text/html"}, "method": "GET"}, "subtype": "http", "allowFailure":
- false, "extractedValues": [], "isCritical": true, "id": "vek-567-n38", "assertions":
- [{"operator": "lessThan", "type": "responseTime", "target": 1000}, {"operator":
- "is", "type": "statusCode", "target": 301}]}], "configVariables": []}, "message":
- "", "options": {"monitor_options": {"notify_audit": false, "include_tags":
- true, "new_host_delay": 300, "on_missing_data": "show_no_data", "renotify_interval":
- 0}, "retry": {"count": 0, "interval": 300}, "min_location_failed": 1, "min_failure_duration":
- 0, "tick_every": 604800}, "locations": ["aws:sa-east-1"], "subtype": "multi",
- "monitor_id": 103095762, "creator": {"name": "Sherzod Karimov", "handle":
- "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"}},
- {"public_id": "xv9-vri-fqh", "name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1686121345",
- "status": "paused", "type": "api", "tags": ["multistep"], "created_at": "2023-06-07T07:02:28.009429+00:00",
- "modified_at": "2023-06-07T07:02:28.009429+00:00", "config": {"assertions":
- [], "configVariables": [{"id": "24a74917-d729-4729-a809-0d05cf159e25", "name":
- "VARIABLE_NAME", "type": "global"}], "steps": [{"allowFailure": true, "assertions":
- [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
- [{"field": "content-length", "name": "VAR_EXTRACT", "parser": {"type": "regex",
- "value": ".*"}, "secure": true, "type": "http_header"}], "isCritical": false,
- "name": "First api step", "request": {"allow_insecure": true, "basicAuth":
- {"accessKey": "sigv4-access-key", "region": "sigv4-region", "secretKey": "sigv4-secret-key",
- "serviceName": "sigv4-service-name", "sessionToken": "sigv4-session-token",
- "type": "sigv4"}, "body": "this is a body", "certificate": {"cert": {"filename":
- "Provided in Terraform config"}, "key": {"filename": "key"}}, "follow_redirects":
- true, "headers": {"Accept": "application/json", "X-Datadog-Trace-ID": "123456789"},
- "method": "GET", "proxy": {"headers": {"Accept": "application/json", "X-Datadog-Trace-ID":
- "123456789"}, "url": "https://proxy.url"}, "query": {"foo": "bar"}, "timeout":
- 30, "url": "https://www.datadoghq.com"}, "retry": {"count": 5, "interval":
- 1000}, "subtype": "http", "id": "3xr-p38-qba"}, {"allowFailure": false, "assertions":
- [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
- [], "isCritical": false, "name": "Second api step", "request": {"allow_insecure":
- true, "basicAuth": {"accessTokenUrl": "https://token.datadoghq.com", "audience":
- "audience", "clientId": "client-id", "clientSecret": "client-secret", "scope":
- "scope", "tokenApiAuthentication": "header", "type": "oauth-client"}, "body":
- "", "follow_redirects": true, "method": "GET", "timeout": 30, "url": "https://docs.datadoghq.com"},
- "subtype": "http", "id": "3ij-dfg-6tw"}, {"allowFailure": false, "assertions":
- [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
- [], "isCritical": false, "name": "Third api step", "request": {"allow_insecure":
- true, "basicAuth": {"accessTokenUrl": "https://token.datadoghq.com", "audience":
- "audience", "clientId": "client-id", "clientSecret": "client-secret", "password":
- "password", "resource": "resource", "scope": "scope", "tokenApiAuthentication":
- "body", "type": "oauth-rop", "username": "username"}, "body": "", "follow_redirects":
- true, "method": "GET", "timeout": 30, "url": "https://docs.datadoghq.com"},
- "subtype": "http", "id": "it3-n6p-xnp"}, {"allowFailure": false, "assertions":
- [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
- [], "isCritical": false, "name": "Fourth api step", "request": {"allow_insecure":
- true, "basicAuth": {"password": "password", "type": "digest", "username":
- "username"}, "body": "", "follow_redirects": true, "method": "GET", "timeout":
- 30, "url": "https://docs.datadoghq.com"}, "subtype": "http", "id": "vid-d39-qgr"}]},
- "message": "Notify @datadog.user", "options": {"min_location_failed": 1, "restricted_roles":
- ["430aea7c-0501-11ee-9f44-da7ad0900002"], "tick_every": 900}, "locations":
- ["aws:eu-central-1"], "subtype": "multi", "monitor_id": 121127083, "creator":
- {"name": "Frog", "handle": "frog@datadoghq.com", "email": "frog@datadoghq.com"}}],
- "total": 8}'
- headers:
- Content-Type:
- - application/json
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: GET
- uri: https://api.datadoghq.com/api/v1/synthetics/tests/api/9kt-p3e-he4
- response:
- body:
- string: '{"public_id": "9kt-p3e-he4", "name": "HTTP Test", "status": "paused",
- "type": "api", "tags": [], "created_at": "2022-11-15T21:05:04.474438+00:00",
- "modified_at": "2022-11-15T21:05:04.474438+00:00", "config": {"request": {"url":
- "https://google.com", "method": "GET"}, "assertions": [{"operator": "lessThan",
- "type": "responseTime", "target": 1000}, {"operator": "is", "type": "statusCode",
- "target": 301}, {"operator": "is", "property": "content-type", "type": "header",
- "target": "text/html; charset=UTF-8"}]}, "message": "Test synthetics ", "options":
- {"retry": {"count": 1, "interval": 300}, "tick_every": 604800, "monitor_options":
- {"include_tags": true, "notify_audit": false, "new_host_delay": 300, "on_missing_data":
- "show_no_data", "renotify_interval": 120}, "monitor_priority": 3, "min_location_failed":
- 1, "min_failure_duration": 120}, "locations": ["aws:ca-central-1"], "subtype":
- "http", "monitor_id": 103095757, "creator": {"name": "Sherzod Karimov", "handle":
- "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"}}'
- headers:
- Content-Type:
- - application/json
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: GET
- uri: https://api.datadoghq.com/api/v1/synthetics/tests/api/e6x-9uf-7vc
- response:
- body:
- string: '{"public_id": "e6x-9uf-7vc", "name": "Test-Trigger_Synthetics_tests_returns_OK_response-1666783270",
- "status": "live", "type": "api", "tags": ["testing:api"], "created_at": "2022-11-15T21:05:04.493127+00:00",
- "modified_at": "2022-11-15T21:05:04.493127+00:00", "config": {"request": {"certificate":
- {"cert": {"updatedAt": "2020-10-16T09:23:24.857Z", "filename": "cert-filename"},
- "key": {"updatedAt": "2020-10-16T09:23:24.857Z", "filename": "key-filename"}},
- "url": "https://datadoghq.com", "headers": {"unique": "testtriggersyntheticstestsreturnsokresponse1666783270"},
- "proxy": {"url": "https://datadoghq.com", "headers": {}}, "timeout": 10, "method":
- "GET"}, "assertions": [{"operator": "is", "property": "{{ PROPERTY }}", "type":
- "header", "target": "text/html"}, {"operator": "lessThan", "type": "responseTime",
- "target": 2000}, {"operator": "validatesJSONPath", "type": "body", "target":
- {"operator": "isNot", "targetValue": "0", "jsonPath": "topKey"}}], "configVariables":
- [{"pattern": "content-type", "type": "text", "example": "content-type", "name":
- "PROPERTY"}]}, "message": "BDD test payload: synthetics_api_http_test_payload.json",
- "options": {"accept_self_signed": false, "retry": {"count": 3, "interval":
- 10}, "min_location_failed": 1, "allow_insecure": true, "follow_redirects":
- true, "min_failure_duration": 10, "monitor_priority": 5, "monitor_name": "Test-Trigger_Synthetics_tests_returns_OK_response-1666783270",
- "tick_every": 60}, "locations": ["aws:us-east-2"], "subtype": "http", "monitor_id":
- 103095761, "creator": {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com",
- "email": "sherzod.karimov@datadoghq.com"}}'
- headers:
- Content-Type:
- - application/json
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: GET
- uri: https://api.datadoghq.com/api/v1/synthetics/tests/api/shp-p4u-z5t
- response:
- body:
- string: '{"public_id": "shp-p4u-z5t", "name": "TCP Test", "status": "live",
- "type": "api", "tags": ["foo:bar", "foo", "env:test"], "created_at": "2022-11-15T21:05:04.516477+00:00",
- "modified_at": "2022-11-15T21:05:04.516477+00:00", "config": {"request": {"host":
- "example.org", "port": 443}, "assertions": [{"operator": "lessThan", "type":
- "responseTime", "target": 2000}]}, "message": "Notify @pagerduty", "options":
- {"monitor_options": {"notify_audit": false, "include_tags": true, "new_host_delay":
- 300, "on_missing_data": "show_no_data", "renotify_interval": 0}, "tick_every":
- 900, "min_location_failed": 1}, "locations": ["aws:eu-central-1"], "subtype":
- "tcp", "monitor_id": 103095759, "creator": {"name": "Sherzod Karimov", "handle":
- "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"}}'
+ string: '{"data": [{"type": "roles", "id": "fa017a35-bfcb-11eb-a4d7-da7ad0900002",
+ "attributes": {"name": "Datadog Admin Role", "created_at": "2021-05-28T15:47:15.884751+00:00",
+ "modified_at": "2023-03-22T20:42:59.038042+00:00", "user_count": 6}, "relationships":
+ {"permissions": {"data": [{"type": "permissions", "id": "984d2f00-d3b4-11e8-a200-bb47109e9987"},
+ {"type": "permissions", "id": "5e605652-dd12-11e8-9e53-375565b8970e"}, {"type":
+ "permissions", "id": "62cc036c-dd12-11e8-9e54-db9995643092"}, {"type": "permissions",
+ "id": "6f66600e-dd12-11e8-9e55-7f30fbb45e73"}, {"type": "permissions", "id":
+ "7d7c98ac-dd12-11e8-9e56-93700598622d"}, {"type": "permissions", "id": "811ac4ca-dd12-11e8-9e57-676a7f0beef9"},
+ {"type": "permissions", "id": "84aa3ae4-dd12-11e8-9e58-a373a514ccd0"}, {"type":
+ "permissions", "id": "87b00304-dd12-11e8-9e59-cbeb5f71f72f"}, {"type": "permissions",
+ "id": "979df720-aed7-11e9-99c6-a7eb8373165a"}, {"type": "permissions", "id":
+ "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id": "d90f6831-d3d8-11e9-a77a-4fd230ddbc6a"},
+ {"type": "permissions", "id": "d90f6832-d3d8-11e9-a77a-bf8a2607f864"}, {"type":
+ "permissions", "id": "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions",
+ "id": "48ef71ea-d8b1-11e9-a77a-93f408470ad0"}, {"type": "permissions", "id":
+ "4d87d5f8-d8b1-11e9-a77a-eb9c8350d04f"}, {"type": "permissions", "id": "1af86ce4-7823-11ea-93dc-d7cad1b1c6cb"},
+ {"type": "permissions", "id": "b382b982-8535-11ea-93de-2bf1bdf20798"}, {"type":
+ "permissions", "id": "7314eb20-aa58-11ea-95e2-6fb6e4a451d5"}, {"type": "permissions",
+ "id": "7b516476-aa58-11ea-95e2-93718cd56369"}, {"type": "permissions", "id":
+ "80de1ec0-aa58-11ea-95e2-aff381626d5d"}, {"type": "permissions", "id": "58b412cc-ff6d-11eb-bc9c-da7ad0900002"},
+ {"type": "permissions", "id": "9ac1d8cc-e707-11ea-aa2d-73d37e989a9d"}, {"type":
+ "permissions", "id": "9de604d8-e707-11ea-aa2d-93f1a783b3a3"}, {"type": "permissions",
+ "id": "46a301da-ec5c-11ea-aa9f-73bedeab67ee"}, {"type": "permissions", "id":
+ "46a301db-ec5c-11ea-aa9f-2fe72193d60e"}, {"type": "permissions", "id": "46a301dc-ec5c-11ea-aa9f-13b33f8f46ea"},
+ {"type": "permissions", "id": "46a301dd-ec5c-11ea-aa9f-97edfb345bc9"}, {"type":
+ "permissions", "id": "46a301de-ec5c-11ea-aa9f-a73252c24806"}, {"type": "permissions",
+ "id": "46a301df-ec5c-11ea-aa9f-970a9ae645e5"}, {"type": "permissions", "id":
+ "46a301e0-ec5c-11ea-aa9f-6ba6cc675d8c"}, {"type": "permissions", "id": "46a301e1-ec5c-11ea-aa9f-afa39f6f3e36"},
+ {"type": "permissions", "id": "46a301e2-ec5c-11ea-aa9f-1f511b7305fd"}, {"type":
+ "permissions", "id": "46a301e4-ec5c-11ea-aa9f-87282b3a50cc"}, {"type": "permissions",
+ "id": "07c3c146-f7f8-11ea-acf6-0bd62b9ae60e"}, {"type": "permissions", "id":
+ "2fbdac76-f923-11ea-adbc-07f3823e2b43"}, {"type": "permissions", "id": "372896c4-f923-11ea-adbc-4fecd107156d"},
+ {"type": "permissions", "id": "3e4d4d28-f923-11ea-adbc-e3565938c12e"}, {"type":
+ "permissions", "id": "4628ca54-f923-11ea-adbc-4b2b7f88c5e9"}, {"type": "permissions",
+ "id": "4ada6e36-f923-11ea-adbc-0788e5c5e3cf"}, {"type": "permissions", "id":
+ "5025ee24-f923-11ea-adbc-576ea241df8d"}, {"type": "permissions", "id": "55f4b5ec-f923-11ea-adbc-1bfa2334a755"},
+ {"type": "permissions", "id": "5c6b88e2-f923-11ea-adbc-abf57d079420"}, {"type":
+ "permissions", "id": "642eebe6-f923-11ea-adbc-eb617674ea04"}, {"type": "permissions",
+ "id": "6ba32d22-0e1a-11eb-ba44-bf9a5aafaa39"}, {"type": "permissions", "id":
+ "a42e94b2-1476-11eb-bd08-efda28c04248"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
+ {"type": "permissions", "id": "43fa188e-2dce-11eb-84c0-835ad1fd6287"}, {"type":
+ "permissions", "id": "465cfe66-2dce-11eb-84c0-6baa888239fa"}, {"type": "permissions",
+ "id": "4916eebe-2dce-11eb-84c0-271cb2c672e8"}, {"type": "permissions", "id":
+ "4e3f02b4-2dce-11eb-84c0-2fca946a6efc"}, {"type": "permissions", "id": "53950c54-2dce-11eb-84c0-a79ae108f6f8"},
+ {"type": "permissions", "id": "5cbe5f9c-2dce-11eb-84c0-872d3e9f1076"}, {"type":
+ "permissions", "id": "61765026-2dce-11eb-84c0-833e230d1b8f"}, {"type": "permissions",
+ "id": "04bc1cf2-340a-11eb-873a-43b973c760dd"}, {"type": "permissions", "id":
+ "8106300a-54f7-11eb-8cbc-7781a434a67b"}, {"type": "permissions", "id": "edfd5e74-801f-11eb-96d8-da7ad0900002"},
+ {"type": "permissions", "id": "edfd5e75-801f-11eb-96d8-da7ad0900002"}, {"type":
+ "permissions", "id": "bf0dcf7c-90af-11eb-9b82-da7ad0900002"}, {"type": "permissions",
+ "id": "bf0dcf7d-90af-11eb-9b82-da7ad0900002"}, {"type": "permissions", "id":
+ "7df222b6-a45c-11eb-a0af-da7ad0900002"}, {"type": "permissions", "id": "98b984f4-b16d-11eb-a2c6-da7ad0900002"},
+ {"type": "permissions", "id": "98b984f5-b16d-11eb-a2c6-da7ad0900002"}, {"type":
+ "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions",
+ "id": "12efc211-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id":
+ "12efc20f-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id": "12efc210-d36c-11eb-a9b8-da7ad0900002"},
+ {"type": "permissions", "id": "97971c1c-e895-11eb-b13c-da7ad0900002"}, {"type":
+ "permissions", "id": "97971c1d-e895-11eb-b13c-da7ad0900002"}, {"type": "permissions",
+ "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions", "id":
+ "7605ef25-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions", "id": "c95412b8-16c7-11ec-85c0-da7ad0900002"},
+ {"type": "permissions", "id": "c95412b9-16c7-11ec-85c0-da7ad0900002"}, {"type":
+ "permissions", "id": "26c79920-1703-11ec-85d2-da7ad0900002"}, {"type": "permissions",
+ "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
+ "f4473c61-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id": "020a563c-56a4-11ec-a982-da7ad0900002"},
+ {"type": "permissions", "id": "8e4d6b6e-5750-11ec-a9f4-da7ad0900002"}, {"type":
+ "permissions", "id": "945b3bb4-5884-11ec-aa6d-da7ad0900002"}, {"type": "permissions",
+ "id": "945b3bb5-5884-11ec-aa6d-da7ad0900002"}, {"type": "permissions", "id":
+ "f6e917a8-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions", "id": "f6e917aa-8502-11ec-bf20-da7ad0900002"},
+ {"type": "permissions", "id": "f6e917a9-8502-11ec-bf20-da7ad0900002"}, {"type":
+ "permissions", "id": "f6e917a6-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions",
+ "id": "f6e917a7-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions", "id":
+ "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "b6bf9ac7-9a59-11ec-8480-da7ad0900002"},
+ {"type": "permissions", "id": "e35c06b0-966b-11ec-83c9-da7ad0900002"}, {"type":
+ "permissions", "id": "2108215e-b9b4-11ec-958e-da7ad0900002"}, {"type": "permissions",
+ "id": "7b1f5089-c59e-11ec-aa32-da7ad0900002"}, {"type": "permissions", "id":
+ "1afff448-d5e9-11ec-ae37-da7ad0900002"}, {"type": "permissions", "id": "1afff449-d5e9-11ec-ae37-da7ad0900002"},
+ {"type": "permissions", "id": "6c87d3da-e5c5-11ec-b1d6-da7ad0900002"}, {"type":
+ "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions",
+ "id": "f8e941d0-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id":
+ "f8e941ce-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id": "4784b11c-f311-11ec-a5f5-da7ad0900002"},
+ {"type": "permissions", "id": "ee68fba9-173a-11ed-b00b-da7ad0900002"}, {"type":
+ "permissions", "id": "ee68fba8-173a-11ed-b00b-da7ad0900002"}, {"type": "permissions",
+ "id": "5b2c3e28-1761-11ed-b018-da7ad0900002"}, {"type": "permissions", "id":
+ "6be119a6-1cd8-11ed-b185-da7ad0900002"}, {"type": "permissions", "id": "36e2a22e-248a-11ed-b405-da7ad0900002"},
+ {"type": "permissions", "id": "4ee674f6-55d9-11ed-b10d-da7ad0900002"}, {"type":
+ "permissions", "id": "4ee7e46c-55d9-11ed-b10e-da7ad0900002"}, {"type": "permissions",
+ "id": "4ee5731c-55d9-11ed-b10b-da7ad0900002"}, {"type": "permissions", "id":
+ "4ee60688-55d9-11ed-b10c-da7ad0900002"}, {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"},
+ {"type": "permissions", "id": "824851a6-7a4c-11ed-9590-da7ad0900002"}, {"type":
+ "permissions", "id": "77d5f45e-7a5a-11ed-8abf-da7ad0900002"}, {"type": "permissions",
+ "id": "77d55a44-7a5a-11ed-8abe-da7ad0900002"}, {"type": "permissions", "id":
+ "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions", "id": "6c5c1090-7aff-11ed-a5cf-da7ad0900002"},
+ {"type": "permissions", "id": "6c59ae72-7aff-11ed-a5cc-da7ad0900002"}, {"type":
+ "permissions", "id": "6c5b7428-7aff-11ed-a5ce-da7ad0900002"}, {"type": "permissions",
+ "id": "6c5d0892-7aff-11ed-a5d0-da7ad0900002"}, {"type": "permissions", "id":
+ "6c5de654-7aff-11ed-a5d1-da7ad0900002"}, {"type": "permissions", "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"},
+ {"type": "permissions", "id": "1d76ecfa-9771-11ed-9c2f-da7ad0900002"}, {"type":
+ "permissions", "id": "ca6bfb3a-b44f-11ed-adb2-da7ad0900002"}, {"type": "permissions",
+ "id": "4dc3eec6-b468-11ed-8539-da7ad0900002"}, {"type": "permissions", "id":
+ "4dc4094c-b468-11ed-853a-da7ad0900002"}, {"type": "permissions", "id": "35dd33ea-ca2e-11ed-bca0-da7ad0900002"},
+ {"type": "permissions", "id": "36bf3d0a-ccc0-11ed-9453-da7ad0900002"}, {"type":
+ "permissions", "id": "f416f55e-db3f-11ed-8028-da7ad0900002"}, {"type": "permissions",
+ "id": "f416b1ac-db3f-11ed-8027-da7ad0900002"}, {"type": "permissions", "id":
+ "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "4e61ea18-de98-11ed-aa24-da7ad0900002"},
+ {"type": "permissions", "id": "a4316eb8-f438-11ed-8af2-da7ad0900002"}, {"type":
+ "permissions", "id": "a431bf12-f438-11ed-8af3-da7ad0900002"}, {"type": "permissions",
+ "id": "8352cf04-f6ac-11ed-9ec7-da7ad0900002"}, {"type": "permissions", "id":
+ "3a48350c-f9bc-11ed-b81c-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
+ {"type": "permissions", "id": "a77452c8-fff2-11ed-965d-da7ad0900002"}, {"type":
+ "permissions", "id": "a51b375a-ff73-11ed-8c18-da7ad0900002"}, {"type": "permissions",
+ "id": "61f9891a-0070-11ee-9c3f-da7ad0900002"}, {"type": "permissions", "id":
+ "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type": "permissions", "id": "1377ff28-0ec7-11ee-aebd-da7ad0900002"},
+ {"type": "permissions", "id": "cc8cd958-11eb-11ee-ade2-da7ad0900002"}, {"type":
+ "permissions", "id": "b1adb6e8-0949-11ee-b2c5-da7ad0900002"}, {"type": "permissions",
+ "id": "b1ad77e6-0949-11ee-b2c3-da7ad0900002"}, {"type": "permissions", "id":
+ "b1adb5da-0949-11ee-b2c4-da7ad0900002"}, {"type": "permissions", "id": "0efeff18-1cec-11ee-992d-da7ad0900002"},
+ {"type": "permissions", "id": "6c5ce898-21a4-11ee-99ef-da7ad0900002"}, {"type":
+ "permissions", "id": "6c5ce992-21a4-11ee-99f0-da7ad0900002"}, {"type": "permissions",
+ "id": "785177a6-20da-11ee-bed7-da7ad0900002"}, {"type": "permissions", "id":
+ "7850e390-20da-11ee-bed6-da7ad0900002"}, {"type": "permissions", "id": "6c5c79b2-21a4-11ee-99ee-da7ad0900002"},
+ {"type": "permissions", "id": "1b8f54cc-2ca4-11ee-9e72-da7ad0900002"}, {"type":
+ "permissions", "id": "5356dfd2-3dee-11ee-b07b-da7ad0900002"}, {"type": "permissions",
+ "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions", "id":
+ "50c270de-69ee-11ee-9151-da7ad0900002"}, {"type": "permissions", "id": "7c7836fc-6f6e-11ee-8cdd-da7ad0900002"}]}}},
+ {"type": "roles", "id": "fa017a37-bfcb-11eb-a4d7-da7ad0900002", "attributes":
+ {"name": "Datadog Read Only Role", "created_at": "2021-05-28T15:47:16.084615+00:00",
+ "modified_at": "2021-05-28T15:47:16.084615+00:00", "user_count": 1}, "relationships":
+ {"permissions": {"data": [{"type": "permissions", "id": "5e605652-dd12-11e8-9e53-375565b8970e"},
+ {"type": "permissions", "id": "6f66600e-dd12-11e8-9e55-7f30fbb45e73"}, {"type":
+ "permissions", "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions",
+ "id": "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id":
+ "1af86ce4-7823-11ea-93dc-d7cad1b1c6cb"}, {"type": "permissions", "id": "b382b982-8535-11ea-93de-2bf1bdf20798"},
+ {"type": "permissions", "id": "7314eb20-aa58-11ea-95e2-6fb6e4a451d5"}, {"type":
+ "permissions", "id": "80de1ec0-aa58-11ea-95e2-aff381626d5d"}, {"type": "permissions",
+ "id": "5025ee24-f923-11ea-adbc-576ea241df8d"}, {"type": "permissions", "id":
+ "417ba636-2dce-11eb-84c0-6bce5b0d9de0"}, {"type": "permissions", "id": "43fa188e-2dce-11eb-84c0-835ad1fd6287"},
+ {"type": "permissions", "id": "4916eebe-2dce-11eb-84c0-271cb2c672e8"}, {"type":
+ "permissions", "id": "edfd5e75-801f-11eb-96d8-da7ad0900002"}, {"type": "permissions",
+ "id": "98b984f4-b16d-11eb-a2c6-da7ad0900002"}, {"type": "permissions", "id":
+ "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id": "97971c1c-e895-11eb-b13c-da7ad0900002"},
+ {"type": "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type":
+ "permissions", "id": "7605ef25-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
+ "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
+ "8e4d6b6e-5750-11ec-a9f4-da7ad0900002"}, {"type": "permissions", "id": "945b3bb4-5884-11ec-aa6d-da7ad0900002"},
+ {"type": "permissions", "id": "f6e917a8-8502-11ec-bf20-da7ad0900002"}, {"type":
+ "permissions", "id": "f6e917a6-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions",
+ "id": "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id":
+ "f8e941cf-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id": "ee68fba8-173a-11ed-b00b-da7ad0900002"},
+ {"type": "permissions", "id": "6be119a6-1cd8-11ed-b185-da7ad0900002"}, {"type":
+ "permissions", "id": "4ee674f6-55d9-11ed-b10d-da7ad0900002"}, {"type": "permissions",
+ "id": "4ee5731c-55d9-11ed-b10b-da7ad0900002"}, {"type": "permissions", "id":
+ "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type": "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"},
+ {"type": "permissions", "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type":
+ "permissions", "id": "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions",
+ "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"}, {"type": "permissions", "id":
+ "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type": "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"},
+ {"type": "permissions", "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}},
+ {"type": "roles", "id": "fa017a36-bfcb-11eb-a4d7-da7ad0900002", "attributes":
+ {"name": "Datadog Standard Role", "created_at": "2021-05-28T15:47:15.999885+00:00",
+ "modified_at": "2021-05-28T15:47:15.999885+00:00", "user_count": 0}, "relationships":
+ {"permissions": {"data": [{"type": "permissions", "id": "984d2f00-d3b4-11e8-a200-bb47109e9987"},
+ {"type": "permissions", "id": "5e605652-dd12-11e8-9e53-375565b8970e"}, {"type":
+ "permissions", "id": "62cc036c-dd12-11e8-9e54-db9995643092"}, {"type": "permissions",
+ "id": "6f66600e-dd12-11e8-9e55-7f30fbb45e73"}, {"type": "permissions", "id":
+ "7d7c98ac-dd12-11e8-9e56-93700598622d"}, {"type": "permissions", "id": "811ac4ca-dd12-11e8-9e57-676a7f0beef9"},
+ {"type": "permissions", "id": "84aa3ae4-dd12-11e8-9e58-a373a514ccd0"}, {"type":
+ "permissions", "id": "979df720-aed7-11e9-99c6-a7eb8373165a"}, {"type": "permissions",
+ "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
+ "d90f6831-d3d8-11e9-a77a-4fd230ddbc6a"}, {"type": "permissions", "id": "d90f6832-d3d8-11e9-a77a-bf8a2607f864"},
+ {"type": "permissions", "id": "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type":
+ "permissions", "id": "48ef71ea-d8b1-11e9-a77a-93f408470ad0"}, {"type": "permissions",
+ "id": "4d87d5f8-d8b1-11e9-a77a-eb9c8350d04f"}, {"type": "permissions", "id":
+ "1af86ce4-7823-11ea-93dc-d7cad1b1c6cb"}, {"type": "permissions", "id": "b382b982-8535-11ea-93de-2bf1bdf20798"},
+ {"type": "permissions", "id": "7314eb20-aa58-11ea-95e2-6fb6e4a451d5"}, {"type":
+ "permissions", "id": "7b516476-aa58-11ea-95e2-93718cd56369"}, {"type": "permissions",
+ "id": "80de1ec0-aa58-11ea-95e2-aff381626d5d"}, {"type": "permissions", "id":
+ "58b412cc-ff6d-11eb-bc9c-da7ad0900002"}, {"type": "permissions", "id": "9ac1d8cc-e707-11ea-aa2d-73d37e989a9d"},
+ {"type": "permissions", "id": "46a301da-ec5c-11ea-aa9f-73bedeab67ee"}, {"type":
+ "permissions", "id": "46a301db-ec5c-11ea-aa9f-2fe72193d60e"}, {"type": "permissions",
+ "id": "46a301dd-ec5c-11ea-aa9f-97edfb345bc9"}, {"type": "permissions", "id":
+ "46a301e4-ec5c-11ea-aa9f-87282b3a50cc"}, {"type": "permissions", "id": "07c3c146-f7f8-11ea-acf6-0bd62b9ae60e"},
+ {"type": "permissions", "id": "372896c4-f923-11ea-adbc-4fecd107156d"}, {"type":
+ "permissions", "id": "4628ca54-f923-11ea-adbc-4b2b7f88c5e9"}, {"type": "permissions",
+ "id": "4ada6e36-f923-11ea-adbc-0788e5c5e3cf"}, {"type": "permissions", "id":
+ "5025ee24-f923-11ea-adbc-576ea241df8d"}, {"type": "permissions", "id": "55f4b5ec-f923-11ea-adbc-1bfa2334a755"},
+ {"type": "permissions", "id": "5c6b88e2-f923-11ea-adbc-abf57d079420"}, {"type":
+ "permissions", "id": "642eebe6-f923-11ea-adbc-eb617674ea04"}, {"type": "permissions",
+ "id": "6ba32d22-0e1a-11eb-ba44-bf9a5aafaa39"}, {"type": "permissions", "id":
+ "fcac2ad8-2843-11eb-8315-0fe47949d625"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
+ {"type": "permissions", "id": "43fa188e-2dce-11eb-84c0-835ad1fd6287"}, {"type":
+ "permissions", "id": "4916eebe-2dce-11eb-84c0-271cb2c672e8"}, {"type": "permissions",
+ "id": "5cbe5f9c-2dce-11eb-84c0-872d3e9f1076"}, {"type": "permissions", "id":
+ "61765026-2dce-11eb-84c0-833e230d1b8f"}, {"type": "permissions", "id": "8106300a-54f7-11eb-8cbc-7781a434a67b"},
+ {"type": "permissions", "id": "edfd5e75-801f-11eb-96d8-da7ad0900002"}, {"type":
+ "permissions", "id": "98b984f4-b16d-11eb-a2c6-da7ad0900002"}, {"type": "permissions",
+ "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id":
+ "12efc211-d36c-11eb-a9b8-da7ad0900002"}, {"type": "permissions", "id": "12efc20f-d36c-11eb-a9b8-da7ad0900002"},
+ {"type": "permissions", "id": "12efc210-d36c-11eb-a9b8-da7ad0900002"}, {"type":
+ "permissions", "id": "97971c1c-e895-11eb-b13c-da7ad0900002"}, {"type": "permissions",
+ "id": "97971c1d-e895-11eb-b13c-da7ad0900002"}, {"type": "permissions", "id":
+ "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions", "id": "7605ef25-f376-11eb-b90b-da7ad0900002"},
+ {"type": "permissions", "id": "c95412b8-16c7-11ec-85c0-da7ad0900002"}, {"type":
+ "permissions", "id": "c95412b9-16c7-11ec-85c0-da7ad0900002"}, {"type": "permissions",
+ "id": "26c79920-1703-11ec-85d2-da7ad0900002"}, {"type": "permissions", "id":
+ "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id": "f4473c61-4792-11ec-a27b-da7ad0900002"},
+ {"type": "permissions", "id": "8e4d6b6e-5750-11ec-a9f4-da7ad0900002"}, {"type":
+ "permissions", "id": "945b3bb4-5884-11ec-aa6d-da7ad0900002"}, {"type": "permissions",
+ "id": "f6e917a8-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions", "id":
+ "f6e917aa-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions", "id": "f6e917a9-8502-11ec-bf20-da7ad0900002"},
+ {"type": "permissions", "id": "f6e917a6-8502-11ec-bf20-da7ad0900002"}, {"type":
+ "permissions", "id": "f6e917a7-8502-11ec-bf20-da7ad0900002"}, {"type": "permissions",
+ "id": "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id":
+ "b6bf9ac7-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "2108215e-b9b4-11ec-958e-da7ad0900002"},
+ {"type": "permissions", "id": "7b1f5089-c59e-11ec-aa32-da7ad0900002"}, {"type":
+ "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions",
+ "id": "f8e941d0-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id":
+ "f8e941ce-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id": "ee68fba9-173a-11ed-b00b-da7ad0900002"},
+ {"type": "permissions", "id": "ee68fba8-173a-11ed-b00b-da7ad0900002"}, {"type":
+ "permissions", "id": "6be119a6-1cd8-11ed-b185-da7ad0900002"}, {"type": "permissions",
+ "id": "36e2a22e-248a-11ed-b405-da7ad0900002"}, {"type": "permissions", "id":
+ "4ee674f6-55d9-11ed-b10d-da7ad0900002"}, {"type": "permissions", "id": "4ee7e46c-55d9-11ed-b10e-da7ad0900002"},
+ {"type": "permissions", "id": "4ee5731c-55d9-11ed-b10b-da7ad0900002"}, {"type":
+ "permissions", "id": "4ee60688-55d9-11ed-b10c-da7ad0900002"}, {"type": "permissions",
+ "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type": "permissions", "id":
+ "824851a6-7a4c-11ed-9590-da7ad0900002"}, {"type": "permissions", "id": "77d55a44-7a5a-11ed-8abe-da7ad0900002"},
+ {"type": "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type":
+ "permissions", "id": "6c5c1090-7aff-11ed-a5cf-da7ad0900002"}, {"type": "permissions",
+ "id": "6c5b7428-7aff-11ed-a5ce-da7ad0900002"}, {"type": "permissions", "id":
+ "6c5de654-7aff-11ed-a5d1-da7ad0900002"}, {"type": "permissions", "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"},
+ {"type": "permissions", "id": "ca6bfb3a-b44f-11ed-adb2-da7ad0900002"}, {"type":
+ "permissions", "id": "4dc3eec6-b468-11ed-8539-da7ad0900002"}, {"type": "permissions",
+ "id": "4dc4094c-b468-11ed-853a-da7ad0900002"}, {"type": "permissions", "id":
+ "36bf3d0a-ccc0-11ed-9453-da7ad0900002"}, {"type": "permissions", "id": "f416f55e-db3f-11ed-8028-da7ad0900002"},
+ {"type": "permissions", "id": "f416b1ac-db3f-11ed-8027-da7ad0900002"}, {"type":
+ "permissions", "id": "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions",
+ "id": "4e61ea18-de98-11ed-aa24-da7ad0900002"}, {"type": "permissions", "id":
+ "a4316eb8-f438-11ed-8af2-da7ad0900002"}, {"type": "permissions", "id": "a431bf12-f438-11ed-8af3-da7ad0900002"},
+ {"type": "permissions", "id": "8352cf04-f6ac-11ed-9ec7-da7ad0900002"}, {"type":
+ "permissions", "id": "3a48350c-f9bc-11ed-b81c-da7ad0900002"}, {"type": "permissions",
+ "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"}, {"type": "permissions", "id":
+ "a77452c8-fff2-11ed-965d-da7ad0900002"}, {"type": "permissions", "id": "a51b375a-ff73-11ed-8c18-da7ad0900002"},
+ {"type": "permissions", "id": "61f9891a-0070-11ee-9c3f-da7ad0900002"}, {"type":
+ "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type": "permissions",
+ "id": "cc8cd958-11eb-11ee-ade2-da7ad0900002"}, {"type": "permissions", "id":
+ "b1ad77e6-0949-11ee-b2c3-da7ad0900002"}, {"type": "permissions", "id": "b1adb5da-0949-11ee-b2c4-da7ad0900002"},
+ {"type": "permissions", "id": "0efeff18-1cec-11ee-992d-da7ad0900002"}, {"type":
+ "permissions", "id": "785177a6-20da-11ee-bed7-da7ad0900002"}, {"type": "permissions",
+ "id": "6c5c79b2-21a4-11ee-99ee-da7ad0900002"}, {"type": "permissions", "id":
+ "1b8f54cc-2ca4-11ee-9e72-da7ad0900002"}, {"type": "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"},
+ {"type": "permissions", "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}},
+ {"type": "roles", "id": "e8406dae-760f-11ed-b571-da7ad0900002", "attributes":
+ {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670404619",
+ "created_at": "2022-12-07T09:17:01.147039+00:00", "modified_at": "2022-12-07T09:17:01.261261+00:00",
+ "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
+ "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
+ "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
+ {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
+ "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
+ "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
+ "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"},
+ {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type":
+ "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions",
+ "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type": "permissions", "id":
+ "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
+ {"type": "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type":
+ "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions",
+ "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}, {"type": "roles", "id":
+ "fe9dd0a0-760f-11ed-b4a5-da7ad0900002", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670404656",
+ "created_at": "2022-12-07T09:17:38.668879+00:00", "modified_at": "2022-12-07T09:17:38.767135+00:00",
+ "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
+ "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
+ "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
+ {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
+ "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
+ "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
+ "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"},
+ {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type":
+ "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions",
+ "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type": "permissions", "id":
+ "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
+ {"type": "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type":
+ "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions",
+ "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}, {"type": "roles", "id":
+ "cf8c10f0-7610-11ed-8608-da7ad0900002", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405007",
+ "created_at": "2022-12-07T09:23:29.196890+00:00", "modified_at": "2022-12-07T09:23:29.281877+00:00",
+ "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
+ "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
+ "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
+ {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
+ "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
+ "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
+ "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"},
+ {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type":
+ "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions",
+ "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type": "permissions", "id":
+ "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
+ {"type": "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type":
+ "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions",
+ "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}, {"type": "roles", "id":
+ "ea30031a-7612-11ed-abf9-da7ad0900002", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405911",
+ "created_at": "2022-12-07T09:38:32.884937+00:00", "modified_at": "2022-12-07T09:38:32.985618+00:00",
+ "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
+ "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
+ "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
+ {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
+ "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
+ "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
+ "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"},
+ {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type":
+ "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions",
+ "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type": "permissions", "id":
+ "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
+ {"type": "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type":
+ "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions",
+ "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}, {"type": "roles", "id":
+ "f1e67558-7612-11ed-9fc8-da7ad0900002", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405924",
+ "created_at": "2022-12-07T09:38:45.824787+00:00", "modified_at": "2022-12-07T09:38:45.921838+00:00",
+ "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
+ "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
+ "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
+ {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
+ "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
+ "id": "f4473c60-4792-11ec-a27b-da7ad0900002"}, {"type": "permissions", "id":
+ "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002"},
+ {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002"}, {"type":
+ "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"}, {"type": "permissions",
+ "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002"}, {"type": "permissions", "id":
+ "4e61a95e-de98-11ed-aa23-da7ad0900002"}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"},
+ {"type": "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type":
+ "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions",
+ "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}, {"type": "roles", "id":
+ "430aea7c-0501-11ee-9f44-da7ad0900002", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1686121345",
+ "created_at": "2023-06-07T07:02:27.295218+00:00", "modified_at": "2023-06-07T07:02:27.326358+00:00",
+ "user_count": 0}, "relationships": {"permissions": {"data": [{"type": "permissions",
+ "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"}, {"type": "permissions", "id":
+ "4441648c-d8b1-11e9-a77a-1b899a04b304"}, {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0"},
+ {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002"}, {"type":
+ "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002"}, {"type": "permissions",
+ "id": "b6bf9ac6-9a59-11ec-8480-da7ad0900002"}, {"type": "permissions", "id":
+ "f8e941cf-e746-11ec-b22d-da7ad0900002"}, {"type": "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002"},
+ {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002"}, {"type":
+ "permissions", "id": "1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type": "permissions",
+ "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": "permissions", "id":
+ "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}], "meta": {"page": {"total_count":
+ 9, "total_filtered_count": 9}}}'
headers:
Content-Type:
- application/json
@@ -2060,19 +735,720 @@ interactions:
Content-Type:
- application/json
method: GET
- uri: https://api.datadoghq.com/api/v1/synthetics/tests/api/sac-hdw-2vm
+ uri: https://api.datadoghq.com/api/v2/permissions
response:
body:
- string: '{"public_id": "sac-hdw-2vm", "name": "SSL Test", "status": "live",
- "type": "api", "tags": ["foo:bar", "foo", "env:test"], "created_at": "2022-11-15T21:05:04.539022+00:00",
- "modified_at": "2022-11-15T21:05:04.539022+00:00", "config": {"request": {"host":
- "example.org", "port": 443}, "assertions": [{"operator": "isInMoreThan", "type":
- "certificate", "target": 30}]}, "message": "Notify @pagerduty", "options":
- {"accept_self_signed": true, "monitor_options": {"notify_audit": false, "include_tags":
- true, "new_host_delay": 300, "on_missing_data": "show_no_data", "renotify_interval":
- 0}, "min_location_failed": 1, "tick_every": 900}, "locations": ["aws:eu-central-1"],
- "subtype": "ssl", "monitor_id": 103095758, "creator": {"name": "Sherzod Karimov",
- "handle": "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"}}'
+ string: '{"data": [{"type": "permissions", "id": "984a2bd4-d3b4-11e8-a1ff-a7f660d43029",
+ "attributes": {"name": "admin", "display_name": "Privileged Access", "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.", "created": "2018-10-19T15:35:23.734317+00:00", "group_name":
+ "General", "display_type": "other", "restricted": false}}, {"type": "permissions",
+ "id": "984d2f00-d3b4-11e8-a200-bb47109e9987", "attributes": {"name": "standard",
+ "display_name": "Standard Access", "description": "Deprecated. Standard Access
+ has been replaced by more specific permissions.", "created": "2018-10-19T15:35:23.756736+00:00",
+ "group_name": "General", "display_type": "other", "restricted": false}}, {"type":
+ "permissions", "id": "5e605652-dd12-11e8-9e53-375565b8970e", "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-31T13:39:19.727450+00:00", "group_name": "Log Management", "display_type":
+ "read", "restricted": false}}, {"type": "permissions", "id": "62cc036c-dd12-11e8-9e54-db9995643092",
+ "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-31T13:39:27.148615+00:00",
+ "group_name": "Log Management", "display_type": "other", "restricted": false}},
+ {"type": "permissions", "id": "6f66600e-dd12-11e8-9e55-7f30fbb45e73", "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-31T13:39:48.292879+00:00", "group_name":
+ "Log Management", "display_type": "read", "restricted": false}}, {"type":
+ "permissions", "id": "7d7c98ac-dd12-11e8-9e56-93700598622d", "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-31T13:40:11.926613+00:00",
+ "group_name": "Log Management", "display_type": "write", "restricted": false}},
+ {"type": "permissions", "id": "811ac4ca-dd12-11e8-9e57-676a7f0beef9", "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-31T13:40:17.996379+00:00", "group_name": "Log Management",
+ "display_type": "other", "restricted": false}}, {"type": "permissions", "id":
+ "84aa3ae4-dd12-11e8-9e58-a373a514ccd0", "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-31T13:40:23.969725+00:00",
+ "group_name": "Log Management", "display_type": "write", "restricted": false}},
+ {"type": "permissions", "id": "87b00304-dd12-11e8-9e59-cbeb5f71f72f", "attributes":
+ {"name": "logs_write_archives", "display_name": "Logs Write Archives", "description":
+ "Add and edit Log Archives.", "created": "2018-10-31T13:40:29.040786+00:00",
+ "group_name": "Log Management", "display_type": "write", "restricted": false}},
+ {"type": "permissions", "id": "979df720-aed7-11e9-99c6-a7eb8373165a", "attributes":
+ {"name": "logs_generate_metrics", "display_name": "Logs Generate Metrics",
+ "description": "Create custom metrics from logs.", "created": "2019-07-25T12:27:39.640758+00:00",
+ "group_name": "Log Management", "display_type": "other", "restricted": false}},
+ {"type": "permissions", "id": "d90f6830-d3d8-11e9-a77a-b3404e5e9ee2", "attributes":
+ {"name": "dashboards_read", "display_name": "Dashboards Read", "description":
+ "View dashboards.", "created": "2019-09-10T14:39:51.955175+00:00", "group_name":
+ "Dashboards", "display_type": "read", "restricted": true}}, {"type": "permissions",
+ "id": "d90f6831-d3d8-11e9-a77a-4fd230ddbc6a", "attributes": {"name": "dashboards_write",
+ "display_name": "Dashboards Write", "description": "Create and change dashboards.",
+ "created": "2019-09-10T14:39:51.962944+00:00", "group_name": "Dashboards",
+ "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
+ "d90f6832-d3d8-11e9-a77a-bf8a2607f864", "attributes": {"name": "dashboards_public_share",
+ "display_name": "Dashboards Public Share", "description": "Generate public
+ and authenticated links to share dashboards or embeddable graphs externally.",
+ "created": "2019-09-10T14:39:51.967094+00:00", "group_name": "Dashboards",
+ "display_type": "other", "restricted": false}}, {"type": "permissions", "id":
+ "4441648c-d8b1-11e9-a77a-1b899a04b304", "attributes": {"name": "monitors_read",
+ "display_name": "Monitors Read", "description": "View monitors.", "created":
+ "2019-09-16T18:39:07.744297+00:00", "group_name": "Monitors", "display_type":
+ "read", "restricted": true}}, {"type": "permissions", "id": "48ef71ea-d8b1-11e9-a77a-93f408470ad0",
+ "attributes": {"name": "monitors_write", "display_name": "Monitors Write",
+ "description": "Edit and delete individual monitors.", "created": "2019-09-16T18:39:15.597109+00:00",
+ "group_name": "Monitors", "display_type": "write", "restricted": false}},
+ {"type": "permissions", "id": "4d87d5f8-d8b1-11e9-a77a-eb9c8350d04f", "attributes":
+ {"name": "monitors_downtime", "display_name": "Manage Downtimes", "description":
+ "Set downtimes to suppress alerts from any monitor in an organization. Mute
+ and unmute hosts. The ability to write monitors is not required to set downtimes.",
+ "created": "2019-09-16T18:39:23.306702+00:00", "group_name": "Monitors", "display_type":
+ "other", "restricted": false}}, {"type": "permissions", "id": "1af86ce4-7823-11ea-93dc-d7cad1b1c6cb",
+ "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:24:35.989108+00:00", "group_name": "Log Management",
+ "display_type": "read", "restricted": false}}, {"type": "permissions", "id":
+ "b382b982-8535-11ea-93de-2bf1bdf20798", "attributes": {"name": "logs_read_archives",
+ "display_name": "Logs Read Archives", "description": "Read Log Archives location
+ and use it for rehydration.", "created": "2020-04-23T07:40:27.966133+00:00",
+ "group_name": "Log Management", "display_type": "read", "restricted": false}},
+ {"type": "permissions", "id": "7314eb20-aa58-11ea-95e2-6fb6e4a451d5", "attributes":
+ {"name": "security_monitoring_rules_read", "display_name": "Security Rules
+ Read", "description": "Read Detection Rules.", "created": "2020-06-09T13:52:25.279909+00:00",
+ "group_name": "Cloud Security Platform", "display_type": "read", "restricted":
+ false}}, {"type": "permissions", "id": "7b516476-aa58-11ea-95e2-93718cd56369",
+ "attributes": {"name": "security_monitoring_rules_write", "display_name":
+ "Security Rules Write", "description": "Create and edit Detection Rules.",
+ "created": "2020-06-09T13:52:39.099413+00:00", "group_name": "Cloud Security
+ Platform", "display_type": "write", "restricted": false}}, {"type": "permissions",
+ "id": "80de1ec0-aa58-11ea-95e2-aff381626d5d", "attributes": {"name": "security_monitoring_signals_read",
+ "display_name": "Security Signals Read", "description": "View Security Signals.",
+ "created": "2020-06-09T13:52:48.410398+00:00", "group_name": "Cloud Security
+ Platform", "display_type": "read", "restricted": false}}, {"type": "permissions",
+ "id": "58b412cc-ff6d-11eb-bc9c-da7ad0900002", "attributes": {"name": "security_monitoring_signals_write",
+ "display_name": "Security Signals Write", "description": "Modify Security
+ Signals.", "created": "2021-08-17T15:11:06.963503+00:00", "group_name": "Cloud
+ Security Platform", "display_type": "write", "restricted": false}}, {"type":
+ "permissions", "id": "9ac1d8cc-e707-11ea-aa2d-73d37e989a9d", "attributes":
+ {"name": "user_access_invite", "display_name": "User Access Invite", "description":
+ "Invite other users to your organization.", "created": "2020-08-25T19:17:23.539701+00:00",
+ "group_name": "Access Management", "display_type": "other", "restricted":
+ false}}, {"type": "permissions", "id": "9de604d8-e707-11ea-aa2d-93f1a783b3a3",
+ "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:17:28.810412+00:00",
+ "group_name": "Access Management", "display_type": "other", "restricted":
+ false}}, {"type": "permissions", "id": "46a301da-ec5c-11ea-aa9f-73bedeab67ee",
+ "attributes": {"name": "user_app_keys", "display_name": "User App Keys", "description":
+ "View and manage Application Keys owned by the user.", "created": "2020-09-01T14:06:05.444705+00:00",
+ "group_name": "API and Application Keys", "display_type": "other", "restricted":
+ false}}, {"type": "permissions", "id": "46a301db-ec5c-11ea-aa9f-2fe72193d60e",
+ "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:06:05.444705+00:00", "group_name": "API and Application
+ Keys", "display_type": "read", "restricted": false}}, {"type": "permissions",
+ "id": "46a301dc-ec5c-11ea-aa9f-13b33f8f46ea", "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:06:05.444705+00:00",
+ "group_name": "API and Application Keys", "display_type": "write", "restricted":
+ false}}, {"type": "permissions", "id": "46a301dd-ec5c-11ea-aa9f-97edfb345bc9",
+ "attributes": {"name": "synthetics_private_location_read", "display_name":
+ "Synthetics Private Locations Read", "description": "View, search, and use
+ Synthetics private locations.", "created": "2020-09-01T14:06:05.444705+00:00",
+ "group_name": "Synthetic Monitoring", "display_type": "read", "restricted":
+ false}}, {"type": "permissions", "id": "46a301de-ec5c-11ea-aa9f-a73252c24806",
+ "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:06:05.444705+00:00", "group_name": "Synthetic Monitoring",
+ "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
+ "46a301df-ec5c-11ea-aa9f-970a9ae645e5", "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:06:05.444705+00:00",
+ "group_name": "Billing and Usage", "display_type": "read", "restricted": false}},
+ {"type": "permissions", "id": "46a301e0-ec5c-11ea-aa9f-6ba6cc675d8c", "attributes":
+ {"name": "billing_edit", "display_name": "Billing Edit", "description": "Manage
+ your organization''s subscription and payment method.", "created": "2020-09-01T14:06:05.444705+00:00",
+ "group_name": "Billing and Usage", "display_type": "write", "restricted":
+ false}}, {"type": "permissions", "id": "46a301e1-ec5c-11ea-aa9f-afa39f6f3e36",
+ "attributes": {"name": "usage_read", "display_name": "Usage Read", "description":
+ "View your organization''s usage and usage attribution.", "created": "2020-09-01T14:06:05.444705+00:00",
+ "group_name": "Billing and Usage", "display_type": "read", "restricted": false}},
+ {"type": "permissions", "id": "46a301e2-ec5c-11ea-aa9f-1f511b7305fd", "attributes":
+ {"name": "usage_edit", "display_name": "Usage Edit", "description": "Manage
+ your organization''s usage attribution set-up.", "created": "2020-09-01T14:06:05.444705+00:00",
+ "group_name": "Billing and Usage", "display_type": "write", "restricted":
+ false}}, {"type": "permissions", "id": "46a301e4-ec5c-11ea-aa9f-87282b3a50cc",
+ "attributes": {"name": "metric_tags_write", "display_name": "Metric Tags Write",
+ "description": "Edit and save tag configurations for custom metrics.", "created":
+ "2020-09-01T14:06:05.444705+00:00", "group_name": "Metrics", "display_type":
+ "write", "restricted": false}}, {"type": "permissions", "id": "07c3c146-f7f8-11ea-acf6-0bd62b9ae60e",
+ "attributes": {"name": "logs_write_historical_view", "display_name": "Logs
+ Write Historical Views", "description": "Rehydrate logs from Archives.", "created":
+ "2020-09-16T08:38:44.242076+00:00", "group_name": "Log Management", "display_type":
+ "write", "restricted": false}}, {"type": "permissions", "id": "2fbdac76-f923-11ea-adbc-07f3823e2b43",
+ "attributes": {"name": "audit_logs_read", "display_name": "Audit Trail Read",
+ "description": "View Audit Trail in your organization.", "created": "2020-09-17T20:20:10.834252+00:00",
+ "group_name": "Compliance", "display_type": "read", "restricted": false}},
+ {"type": "permissions", "id": "372896c4-f923-11ea-adbc-4fecd107156d", "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:20:23.279769+00:00", "group_name": "API and Application
+ Keys", "display_type": "read", "restricted": false}}, {"type": "permissions",
+ "id": "3e4d4d28-f923-11ea-adbc-e3565938c12e", "attributes": {"name": "api_keys_write",
+ "display_name": "API Keys Write", "description": "Create and rename API Keys
+ for your organization.", "created": "2020-09-17T20:20:35.264430+00:00", "group_name":
+ "API and Application Keys", "display_type": "write", "restricted": false}},
+ {"type": "permissions", "id": "4628ca54-f923-11ea-adbc-4b2b7f88c5e9", "attributes":
+ {"name": "synthetics_global_variable_read", "display_name": "Synthetics Global
+ Variable Read", "description": "View, search, and use Synthetics global variables.",
+ "created": "2020-09-17T20:20:48.446916+00:00", "group_name": "Synthetic Monitoring",
+ "display_type": "read", "restricted": false}}, {"type": "permissions", "id":
+ "4ada6e36-f923-11ea-adbc-0788e5c5e3cf", "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:20:56.322003+00:00",
+ "group_name": "Synthetic Monitoring", "display_type": "write", "restricted":
+ false}}, {"type": "permissions", "id": "5025ee24-f923-11ea-adbc-576ea241df8d",
+ "attributes": {"name": "synthetics_read", "display_name": "Synthetics Read",
+ "description": "List and view configured Synthetic tests and test results.",
+ "created": "2020-09-17T20:21:05.205361+00:00", "group_name": "Synthetic Monitoring",
+ "display_type": "read", "restricted": false}}, {"type": "permissions", "id":
+ "55f4b5ec-f923-11ea-adbc-1bfa2334a755", "attributes": {"name": "synthetics_write",
+ "display_name": "Synthetics Write", "description": "Create, edit, and delete
+ Synthetic tests.", "created": "2020-09-17T20:21:14.949140+00:00", "group_name":
+ "Synthetic Monitoring", "display_type": "write", "restricted": false}}, {"type":
+ "permissions", "id": "5c6b88e2-f923-11ea-adbc-abf57d079420", "attributes":
+ {"name": "synthetics_default_settings_read", "display_name": "Synthetics Default
+ Settings Read", "description": "View the default settings for Synthetic Monitoring.",
+ "created": "2020-09-17T20:21:25.794160+00:00", "group_name": "Synthetic Monitoring",
+ "display_type": "read", "restricted": false}}, {"type": "permissions", "id":
+ "642eebe6-f923-11ea-adbc-eb617674ea04", "attributes": {"name": "synthetics_default_settings_write",
+ "display_name": "Synthetics Default Settings Write", "description": "Edit
+ the default settings for Synthetic Monitoring.", "created": "2020-09-17T20:21:38.818771+00:00",
+ "group_name": "Synthetic Monitoring", "display_type": "write", "restricted":
+ false}}, {"type": "permissions", "id": "6ba32d22-0e1a-11eb-ba44-bf9a5aafaa39",
+ "attributes": {"name": "logs_write_facets", "display_name": "Logs Write Facets",
+ "description": "Create or edit Log Facets.", "created": "2020-10-14T12:40:20.271908+00:00",
+ "group_name": "Log Management", "display_type": "write", "restricted": false}},
+ {"type": "permissions", "id": "a42e94b2-1476-11eb-bd08-efda28c04248", "attributes":
+ {"name": "service_account_write", "display_name": "Service Account Write",
+ "description": "Create, disable, and use Service Accounts in your organization.",
+ "created": "2020-10-22T14:55:35.814239+00:00", "group_name": "Access Management",
+ "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
+ "fcac2ad8-2843-11eb-8315-0fe47949d625", "attributes": {"name": "integrations_api",
+ "display_name": "Integrations API", "description": "Deprecated. Use the Integrations
+ APIs to configure integrations. In order to configure integrations from the
+ UI, a user must also have Standard Access.", "created": "2020-11-16T19:43:23.198568+00:00",
+ "group_name": "Integrations", "display_type": "other", "restricted": false}},
+ {"type": "permissions", "id": "417ba636-2dce-11eb-84c0-6bce5b0d9de0", "attributes":
+ {"name": "apm_read", "display_name": "APM Read", "description": "Read and
+ query APM and Trace Analytics.", "created": "2020-11-23T20:55:45.006110+00:00",
+ "group_name": "APM", "display_type": "read", "restricted": true}}, {"type":
+ "permissions", "id": "43fa188e-2dce-11eb-84c0-835ad1fd6287", "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:55:49.190595+00:00", "group_name":
+ "APM", "display_type": "read", "restricted": false}}, {"type": "permissions",
+ "id": "465cfe66-2dce-11eb-84c0-6baa888239fa", "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:55:53.194236+00:00", "group_name": "APM", "display_type":
+ "write", "restricted": false}}, {"type": "permissions", "id": "4916eebe-2dce-11eb-84c0-271cb2c672e8",
+ "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:55:57.768261+00:00",
+ "group_name": "APM", "display_type": "read", "restricted": false}}, {"type":
+ "permissions", "id": "4e3f02b4-2dce-11eb-84c0-2fca946a6efc", "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:56:06.419518+00:00",
+ "group_name": "APM", "display_type": "write", "restricted": false}}, {"type":
+ "permissions", "id": "53950c54-2dce-11eb-84c0-a79ae108f6f8", "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:56:15.371926+00:00", "group_name": "APM", "display_type": "write",
+ "restricted": false}}, {"type": "permissions", "id": "5cbe5f9c-2dce-11eb-84c0-872d3e9f1076",
+ "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-23T20:56:30.742299+00:00", "group_name":
+ "APM", "display_type": "write", "restricted": false}}, {"type": "permissions",
+ "id": "61765026-2dce-11eb-84c0-833e230d1b8f", "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-23T20:56:38.658649+00:00", "group_name":
+ "APM", "display_type": "write", "restricted": false}}, {"type": "permissions",
+ "id": "04bc1cf2-340a-11eb-873a-43b973c760dd", "attributes": {"name": "audit_logs_write",
+ "display_name": "Audit Trail Write", "description": "Configure Audit Trail
+ in your organization.", "created": "2020-12-01T19:18:39.866516+00:00", "group_name":
+ "Compliance", "display_type": "write", "restricted": false}}, {"type": "permissions",
+ "id": "8106300a-54f7-11eb-8cbc-7781a434a67b", "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-12T16:59:16.324480+00:00",
+ "group_name": "Real User Monitoring", "display_type": "write", "restricted":
+ false}}, {"type": "permissions", "id": "edfd5e74-801f-11eb-96d8-da7ad0900002",
+ "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:06:59.006815+00:00", "group_name": "APM", "display_type":
+ "write", "restricted": false}}, {"type": "permissions", "id": "edfd5e75-801f-11eb-96d8-da7ad0900002",
+ "attributes": {"name": "debugger_read", "display_name": "Dynamic Instrumentation
+ Read", "description": "View Dynamic Instrumentation configuration.", "created":
+ "2021-03-08T15:06:59.010517+00:00", "group_name": "APM", "display_type": "read",
+ "restricted": false}}, {"type": "permissions", "id": "bf0dcf7c-90af-11eb-9b82-da7ad0900002",
+ "attributes": {"name": "data_scanner_read", "display_name": "Data Scanner
+ Read", "description": "View Data Scanner configurations.", "created": "2021-03-29T16:56:46.394971+00:00",
+ "group_name": "Compliance", "display_type": "read", "restricted": false}},
+ {"type": "permissions", "id": "bf0dcf7d-90af-11eb-9b82-da7ad0900002", "attributes":
+ {"name": "data_scanner_write", "display_name": "Data Scanner Write", "description":
+ "Edit Data Scanner configurations.", "created": "2021-03-29T16:56:46.398584+00:00",
+ "group_name": "Compliance", "display_type": "write", "restricted": false}},
+ {"type": "permissions", "id": "7df222b6-a45c-11eb-a0af-da7ad0900002", "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:12.187340+00:00", "group_name": "Access Management",
+ "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
+ "98b984f4-b16d-11eb-a2c6-da7ad0900002", "attributes": {"name": "security_monitoring_filters_read",
+ "display_name": "Security Filters Read", "description": "Read Security Filters.",
+ "created": "2021-05-10T08:56:23.676833+00:00", "group_name": "Cloud Security
+ Platform", "display_type": "read", "restricted": false}}, {"type": "permissions",
+ "id": "98b984f5-b16d-11eb-a2c6-da7ad0900002", "attributes": {"name": "security_monitoring_filters_write",
+ "display_name": "Security Filters Write", "description": "Create, edit, and
+ delete Security Filters.", "created": "2021-05-10T08:56:23.680551+00:00",
+ "group_name": "Cloud Security Platform", "display_type": "write", "restricted":
+ false}}, {"type": "permissions", "id": "12efc20e-d36c-11eb-a9b8-da7ad0900002",
+ "attributes": {"name": "incident_read", "display_name": "Incidents Read",
+ "description": "View incidents in Datadog.", "created": "2021-06-22T15:11:09.255499+00:00",
+ "group_name": "Case and Incident Management", "display_type": "read", "restricted":
+ true}}, {"type": "permissions", "id": "12efc211-d36c-11eb-a9b8-da7ad0900002",
+ "attributes": {"name": "incident_write", "display_name": "Incidents Write",
+ "description": "Create, view, and manage incidents in Datadog.", "created":
+ "2021-06-22T15:11:09.264369+00:00", "group_name": "Case and Incident Management",
+ "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
+ "12efc20f-d36c-11eb-a9b8-da7ad0900002", "attributes": {"name": "incident_settings_read",
+ "display_name": "Incident Settings Read", "description": "View Incident Settings.",
+ "created": "2021-06-22T15:11:09.259568+00:00", "group_name": "Case and Incident
+ Management", "display_type": "read", "restricted": false}}, {"type": "permissions",
+ "id": "12efc210-d36c-11eb-a9b8-da7ad0900002", "attributes": {"name": "incident_settings_write",
+ "display_name": "Incident Settings Write", "description": "Configure Incident
+ Settings.", "created": "2021-06-22T15:11:09.261986+00:00", "group_name": "Case
+ and Incident Management", "display_type": "write", "restricted": false}},
+ {"type": "permissions", "id": "97971c1c-e895-11eb-b13c-da7ad0900002", "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:31:15.595771+00:00", "group_name": "Cloud
+ Security Platform", "display_type": "read", "restricted": false}}, {"type":
+ "permissions", "id": "97971c1d-e895-11eb-b13c-da7ad0900002", "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:31:15.598808+00:00", "group_name":
+ "Cloud Security Platform", "display_type": "write", "restricted": false}},
+ {"type": "permissions", "id": "7605ef24-f376-11eb-b90b-da7ad0900002", "attributes":
+ {"name": "rum_apps_read", "display_name": "RUM Apps Read", "description":
+ "View RUM Applications data.", "created": "2021-08-02T09:46:07.671535+00:00",
+ "group_name": "Real User Monitoring", "display_type": "read", "restricted":
+ true}}, {"type": "permissions", "id": "7605ef25-f376-11eb-b90b-da7ad0900002",
+ "attributes": {"name": "rum_session_replay_read", "display_name": "RUM Session
+ Replay Read", "description": "View Session Replays.", "created": "2021-08-02T09:46:07.674640+00:00",
+ "group_name": "Real User Monitoring", "display_type": "read", "restricted":
+ false}}, {"type": "permissions", "id": "c95412b8-16c7-11ec-85c0-da7ad0900002",
+ "attributes": {"name": "security_monitoring_notification_profiles_read", "display_name":
+ "Security Notification Rules Read", "description": "Read Notification Rules.",
+ "created": "2021-09-16T08:26:27.366789+00:00", "group_name": "Cloud Security
+ Platform", "display_type": "read", "restricted": false}}, {"type": "permissions",
+ "id": "c95412b9-16c7-11ec-85c0-da7ad0900002", "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.369359+00:00",
+ "group_name": "Cloud Security Platform", "display_type": "write", "restricted":
+ false}}, {"type": "permissions", "id": "26c79920-1703-11ec-85d2-da7ad0900002",
+ "attributes": {"name": "apm_generate_metrics", "display_name": "APM Generate
+ Metrics", "description": "Create custom metrics from spans.", "created": "2021-09-16T15:31:24.458963+00:00",
+ "group_name": "APM", "display_type": "other", "restricted": false}}, {"type":
+ "permissions", "id": "f4473c60-4792-11ec-a27b-da7ad0900002", "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:43.074031+00:00", "group_name":
+ "Cloud Security Platform", "display_type": "read", "restricted": false}},
+ {"type": "permissions", "id": "f4473c61-4792-11ec-a27b-da7ad0900002", "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:43.077905+00:00",
+ "group_name": "Cloud Security Platform", "display_type": "write", "restricted":
+ false}}, {"type": "permissions", "id": "020a563c-56a4-11ec-a982-da7ad0900002",
+ "attributes": {"name": "apm_pipelines_write", "display_name": "APM Pipelines
+ Write", "description": "Add and change APM pipeline configurations.", "created":
+ "2021-12-06T14:51:35.049129+00:00", "group_name": "APM", "display_type": "write",
+ "restricted": false}}, {"type": "permissions", "id": "8e4d6b6e-5750-11ec-a9f4-da7ad0900002",
+ "attributes": {"name": "apm_pipelines_read", "display_name": "APM Pipelines
+ Read", "description": "View APM pipeline configurations.", "created": "2021-12-07T11:26:43.807269+00:00",
+ "group_name": "APM", "display_type": "read", "restricted": false}}, {"type":
+ "permissions", "id": "945b3bb4-5884-11ec-aa6d-da7ad0900002", "attributes":
+ {"name": "observability_pipelines_read", "display_name": "Pipeline Read",
+ "description": "View pipelines in your organization.", "created": "2021-12-09T00:11:38.956827+00:00",
+ "group_name": "Observability Pipelines", "display_type": "read", "restricted":
+ false}}, {"type": "permissions", "id": "945b3bb5-5884-11ec-aa6d-da7ad0900002",
+ "attributes": {"name": "observability_pipelines_write", "display_name": "Pipeline
+ Write", "description": "Edit pipelines in your organization.", "created":
+ "2021-12-09T00:11:38.960833+00:00", "group_name": "Observability Pipelines",
+ "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
+ "f6e917a8-8502-11ec-bf20-da7ad0900002", "attributes": {"name": "workflows_read",
+ "display_name": "Workflows Read", "description": "View workflows.", "created":
+ "2022-02-03T15:07:12.058412+00:00", "group_name": "Workflow Automation", "display_type":
+ "read", "restricted": false}}, {"type": "permissions", "id": "f6e917aa-8502-11ec-bf20-da7ad0900002",
+ "attributes": {"name": "workflows_write", "display_name": "Workflows Write",
+ "description": "Create, edit, and delete workflows.", "created": "2022-02-03T15:07:12.061765+00:00",
+ "group_name": "Workflow Automation", "display_type": "write", "restricted":
+ false}}, {"type": "permissions", "id": "f6e917a9-8502-11ec-bf20-da7ad0900002",
+ "attributes": {"name": "workflows_run", "display_name": "Workflows Run", "description":
+ "Run workflows.", "created": "2022-02-03T15:07:12.060079+00:00", "group_name":
+ "Workflow Automation", "display_type": "other", "restricted": false}}, {"type":
+ "permissions", "id": "f6e917a6-8502-11ec-bf20-da7ad0900002", "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:07:12.053432+00:00", "group_name":
+ "Workflow Automation", "display_type": "read", "restricted": false}}, {"type":
+ "permissions", "id": "f6e917a7-8502-11ec-bf20-da7ad0900002", "attributes":
+ {"name": "connections_write", "display_name": "Connections Write", "description":
+ "Create and delete connections.", "created": "2022-02-03T15:07:12.056590+00:00",
+ "group_name": "Workflow Automation", "display_type": "write", "restricted":
+ false}}, {"type": "permissions", "id": "7a89ec40-8b69-11ec-812d-da7ad0900002",
+ "attributes": {"name": "incidents_private_global_access", "display_name":
+ "Private Incidents Global Access", "description": "Access all private incidents
+ in Datadog, even when not added as a responder.", "created": "2022-02-11T18:36:08.531989+00:00",
+ "group_name": "Case and Incident Management", "display_type": "other", "restricted":
+ false}}, {"type": "permissions", "id": "b6bf9ac6-9a59-11ec-8480-da7ad0900002",
+ "attributes": {"name": "notebooks_read", "display_name": "Notebooks Read",
+ "description": "View notebooks.", "created": "2022-03-02T18:51:05.040950+00:00",
+ "group_name": "Notebooks", "display_type": "read", "restricted": true}}, {"type":
+ "permissions", "id": "b6bf9ac7-9a59-11ec-8480-da7ad0900002", "attributes":
+ {"name": "notebooks_write", "display_name": "Notebooks Write", "description":
+ "Create and change notebooks.", "created": "2022-03-02T18:51:05.044683+00:00",
+ "group_name": "Notebooks", "display_type": "write", "restricted": false}},
+ {"type": "permissions", "id": "e35c06b0-966b-11ec-83c9-da7ad0900002", "attributes":
+ {"name": "logs_delete_data", "display_name": "Logs Delete Data", "description":
+ "Delete data from your Logs, including entire indexes.", "created": "2022-02-25T18:51:06.176019+00:00",
+ "group_name": "Log Management", "display_type": "write", "restricted": false}},
+ {"type": "permissions", "id": "2108215e-b9b4-11ec-958e-da7ad0900002", "attributes":
+ {"name": "rum_generate_metrics", "display_name": "RUM Generate Metrics", "description":
+ "Create custom metrics from RUM events.", "created": "2022-04-11T16:26:24.106645+00:00",
+ "group_name": "Real User Monitoring", "display_type": "write", "restricted":
+ false}}, {"type": "permissions", "id": "7b1f5089-c59e-11ec-aa32-da7ad0900002",
+ "attributes": {"name": "manage_integrations", "display_name": "Integrations
+ Manage", "description": "Install, uninstall, and configure integrations.",
+ "created": "2022-04-26T20:21:40.285834+00:00", "group_name": "Integrations",
+ "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
+ "1afff448-d5e9-11ec-ae37-da7ad0900002", "attributes": {"name": "usage_notifications_read",
+ "display_name": "Usage Notifications Read", "description": "Receive notifications
+ and view currently configured notification settings.", "created": "2022-05-17T13:56:09.870985+00:00",
+ "group_name": "Billing and Usage", "display_type": "read", "restricted": false}},
+ {"type": "permissions", "id": "1afff449-d5e9-11ec-ae37-da7ad0900002", "attributes":
+ {"name": "usage_notifications_write", "display_name": "Usage Notifications
+ Write", "description": "Receive notifications and configure notification settings.",
+ "created": "2022-05-17T13:56:09.876124+00:00", "group_name": "Billing and
+ Usage", "display_type": "write", "restricted": false}}, {"type": "permissions",
+ "id": "6c87d3da-e5c5-11ec-b1d6-da7ad0900002", "attributes": {"name": "generate_dashboard_reports",
+ "display_name": "Dashboards Report Write", "description": "Schedule custom
+ reports from a dashboard. These reports will display any viewable data regardless
+ of any granular restrictions (restriction queries, scoped indexes) applied
+ to the report''s creator.", "created": "2022-06-06T18:21:03.378896+00:00",
+ "group_name": "Dashboards", "display_type": "write", "restricted": false}},
+ {"type": "permissions", "id": "f8e941cf-e746-11ec-b22d-da7ad0900002", "attributes":
+ {"name": "slos_read", "display_name": "SLOs Read", "description": "View SLOs
+ and status corrections.", "created": "2022-06-08T16:20:55.142591+00:00", "group_name":
+ "Service Level Objectives", "display_type": "read", "restricted": true}},
+ {"type": "permissions", "id": "f8e941d0-e746-11ec-b22d-da7ad0900002", "attributes":
+ {"name": "slos_write", "display_name": "SLOs Write", "description": "Create,
+ edit, and delete SLOs.", "created": "2022-06-08T16:20:55.143869+00:00", "group_name":
+ "Service Level Objectives", "display_type": "write", "restricted": false}},
+ {"type": "permissions", "id": "f8e941ce-e746-11ec-b22d-da7ad0900002", "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:55.139410+00:00", "group_name": "Service
+ Level Objectives", "display_type": "other", "restricted": false}}, {"type":
+ "permissions", "id": "4784b11c-f311-11ec-a5f5-da7ad0900002", "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:48.150556+00:00", "group_name": "Monitors",
+ "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
+ "ee68fba9-173a-11ed-b00b-da7ad0900002", "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:39.377188+00:00", "group_name": "APM",
+ "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
+ "ee68fba8-173a-11ed-b00b-da7ad0900002", "attributes": {"name": "apm_service_catalog_read",
+ "display_name": "Service Catalog Read", "description": "View service catalog
+ and service definitions.", "created": "2022-08-08T16:55:39.374377+00:00",
+ "group_name": "APM", "display_type": "read", "restricted": false}}, {"type":
+ "permissions", "id": "5b2c3e28-1761-11ed-b018-da7ad0900002", "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:42.723663+00:00", "group_name": "Log
+ Management", "display_type": "write", "restricted": false}}, {"type": "permissions",
+ "id": "6be119a6-1cd8-11ed-b185-da7ad0900002", "attributes": {"name": "watchdog_insights_read",
+ "display_name": "Watchdog Insights Read", "description": "Deprecated. View
+ Watchdog Insights.", "created": "2022-08-15T20:25:36.677197+00:00", "group_name":
+ "Watchdog", "display_type": "read", "restricted": false}}, {"type": "permissions",
+ "id": "36e2a22e-248a-11ed-b405-da7ad0900002", "attributes": {"name": "connections_resolve",
+ "display_name": "Connections Resolve", "description": "Resolve connections.",
+ "created": "2022-08-25T15:25:56.325170+00:00", "group_name": "Workflow Automation",
+ "display_type": "read", "restricted": false}}, {"type": "permissions", "id":
+ "4ee674f6-55d9-11ed-b10d-da7ad0900002", "attributes": {"name": "appsec_protect_read",
+ "display_name": "Application Security Management Protect Read", "description":
+ "View blocked attackers.", "created": "2022-10-27T09:25:33.834253+00:00",
+ "group_name": "Cloud Security Platform", "display_type": "read", "restricted":
+ false}}, {"type": "permissions", "id": "4ee7e46c-55d9-11ed-b10e-da7ad0900002",
+ "attributes": {"name": "appsec_protect_write", "display_name": "Application
+ Security Management Protect Write", "description": "Manage blocked attackers.",
+ "created": "2022-10-27T09:25:33.843656+00:00", "group_name": "Cloud Security
+ Platform", "display_type": "write", "restricted": false}}, {"type": "permissions",
+ "id": "4ee5731c-55d9-11ed-b10b-da7ad0900002", "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:33.827076+00:00", "group_name": "Cloud Security
+ Platform", "display_type": "read", "restricted": false}}, {"type": "permissions",
+ "id": "4ee60688-55d9-11ed-b10c-da7ad0900002", "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:33.831383+00:00", "group_name":
+ "Cloud Security Platform", "display_type": "write", "restricted": false}},
+ {"type": "permissions", "id": "8247acc4-7a4c-11ed-958f-da7ad0900002", "attributes":
+ {"name": "cases_read", "display_name": "Cases Read", "description": "View
+ Cases.", "created": "2022-12-12T18:40:54.018521+00:00", "group_name": "Case
+ and Incident Management", "display_type": "read", "restricted": false}}, {"type":
+ "permissions", "id": "824851a6-7a4c-11ed-9590-da7ad0900002", "attributes":
+ {"name": "cases_write", "display_name": "Cases Write", "description": "Create
+ and update cases.", "created": "2022-12-12T18:40:54.023280+00:00", "group_name":
+ "Case and Incident Management", "display_type": "write", "restricted": false}},
+ {"type": "permissions", "id": "77d5f45e-7a5a-11ed-8abf-da7ad0900002", "attributes":
+ {"name": "apm_remote_configuration_write", "display_name": "APM Remote Configuration
+ Write", "description": "Edit APM Remote Configuration.", "created": "2022-12-12T20:20:49.450768+00:00",
+ "group_name": "APM", "display_type": "write", "restricted": false}}, {"type":
+ "permissions", "id": "77d55a44-7a5a-11ed-8abe-da7ad0900002", "attributes":
+ {"name": "apm_remote_configuration_read", "display_name": "APM Remote Configuration
+ Read", "description": "View APM Remote Configuration.", "created": "2022-12-12T20:20:49.446298+00:00",
+ "group_name": "APM", "display_type": "read", "restricted": false}}, {"type":
+ "permissions", "id": "6c5ad874-7aff-11ed-a5cd-da7ad0900002", "attributes":
+ {"name": "ci_visibility_read", "display_name": "CI Visibility Read", "description":
+ "View CI Visibility.", "created": "2022-12-13T16:01:37.149406+00:00", "group_name":
+ "CI Visibility", "display_type": "read", "restricted": true}}, {"type": "permissions",
+ "id": "6c5c1090-7aff-11ed-a5cf-da7ad0900002", "attributes": {"name": "ci_visibility_write",
+ "display_name": "CI Visibility Tests Write", "description": "Edit flaky tests
+ and delete Test Services.", "created": "2022-12-13T16:01:37.157428+00:00",
+ "group_name": "CI Visibility", "display_type": "write", "restricted": false}},
+ {"type": "permissions", "id": "6c59ae72-7aff-11ed-a5cc-da7ad0900002", "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:01:37.141217+00:00", "group_name": "CI Visibility", "display_type":
+ "write", "restricted": false}}, {"type": "permissions", "id": "6c5b7428-7aff-11ed-a5ce-da7ad0900002",
+ "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:01:37.153418+00:00", "group_name": "CI Visibility",
+ "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
+ "6c5d0892-7aff-11ed-a5d0-da7ad0900002", "attributes": {"name": "intelligent_test_runner_activation_write",
+ "display_name": "Intelligent Test Runner Activation Write", "description":
+ "Enable or disable Intelligent Test Runner.", "created": "2022-12-13T16:01:37.163771+00:00",
+ "group_name": "CI Visibility", "display_type": "write", "restricted": false}},
+ {"type": "permissions", "id": "6c5de654-7aff-11ed-a5d1-da7ad0900002", "attributes":
+ {"name": "intelligent_test_runner_settings_write", "display_name": "Intelligent
+ Test Runner Settings Write", "description": "Edit Intelligent Test Runner
+ settings, such as modifying ITR excluded branch list.", "created": "2022-12-13T16:01:37.169430+00:00",
+ "group_name": "CI Visibility", "display_type": "write", "restricted": false}},
+ {"type": "permissions", "id": "c13a2368-7d61-11ed-b5b7-da7ad0900002", "attributes":
+ {"name": "continuous_profiler_read", "display_name": "Continuous Profiler
+ Read", "description": "View data in Continuous Profiler.", "created": "2022-12-16T16:50:32.545882+00:00",
+ "group_name": "APM", "display_type": "read", "restricted": false}}, {"type":
+ "permissions", "id": "1d76ecfa-9771-11ed-9c2f-da7ad0900002", "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:59.977837+00:00", "group_name": "Teams", "display_type":
+ "write", "restricted": false}}, {"type": "permissions", "id": "ca6bfb3a-b44f-11ed-adb2-da7ad0900002",
+ "attributes": {"name": "security_monitoring_findings_read", "display_name":
+ "Security Monitoring Findings Read", "description": "View CSPM Findings.",
+ "created": "2023-02-24T14:30:30.983679+00:00", "group_name": "Cloud Security
+ Platform", "display_type": "read", "restricted": false}}, {"type": "permissions",
+ "id": "4dc3eec6-b468-11ed-8539-da7ad0900002", "attributes": {"name": "incident_notification_settings_read",
+ "display_name": "Incident Notification Settings Read", "description": "View
+ Incidents Notification settings.", "created": "2023-02-24T17:25:59.263037+00:00",
+ "group_name": "Case and Incident Management", "display_type": "read", "restricted":
+ false}}, {"type": "permissions", "id": "4dc4094c-b468-11ed-853a-da7ad0900002",
+ "attributes": {"name": "incident_notification_settings_write", "display_name":
+ "Incident Notification Settings Write", "description": "Configure Incidents
+ Notification settings.", "created": "2023-02-24T17:25:59.263037+00:00", "group_name":
+ "Case and Incident Management", "display_type": "write", "restricted": false}},
+ {"type": "permissions", "id": "35dd33ea-ca2e-11ed-bca0-da7ad0900002", "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:33.934187+00:00", "group_name": "CI Visibility",
+ "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
+ "36bf3d0a-ccc0-11ed-9453-da7ad0900002", "attributes": {"name": "error_tracking_write",
+ "display_name": "Error Tracking Issue Write", "description": "Edit Error Tracking
+ issues.", "created": "2023-03-27T16:55:44.263627+00:00", "group_name": "Error
+ Tracking", "display_type": "write", "restricted": false}}, {"type": "permissions",
+ "id": "f416f55e-db3f-11ed-8028-da7ad0900002", "attributes": {"name": "watchdog_alerts_write",
+ "display_name": "Watchdog Alerts Write", "description": "Manage Watchdog Alerts.",
+ "created": "2023-04-15T03:45:24.289668+00:00", "group_name": "Watchdog", "display_type":
+ "write", "restricted": false}}, {"type": "permissions", "id": "f416b1ac-db3f-11ed-8027-da7ad0900002",
+ "attributes": {"name": "saved_views_write", "display_name": "Saved Views Write",
+ "description": "Modify Saved Views across all Datadog products.", "created":
+ "2023-04-15T03:45:24.289668+00:00", "group_name": "Cross-Product Features",
+ "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
+ "4e61a95e-de98-11ed-aa23-da7ad0900002", "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-19T09:55:24.976379+00:00",
+ "group_name": "API and Application Keys", "display_type": "read", "restricted":
+ false}}, {"type": "permissions", "id": "4e61ea18-de98-11ed-aa24-da7ad0900002",
+ "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-19T09:55:24.976379+00:00",
+ "group_name": "API and Application Keys", "display_type": "write", "restricted":
+ false}}, {"type": "permissions", "id": "a4316eb8-f438-11ed-8af2-da7ad0900002",
+ "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-16T22:26:02.839419+00:00",
+ "group_name": "Events", "display_type": "read", "restricted": false}}, {"type":
+ "permissions", "id": "a431bf12-f438-11ed-8af3-da7ad0900002", "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-16T22:26:02.839419+00:00",
+ "group_name": "Events", "display_type": "write", "restricted": false}}, {"type":
+ "permissions", "id": "8352cf04-f6ac-11ed-9ec7-da7ad0900002", "attributes":
+ {"name": "event_config_write", "display_name": "Event Config Write", "description":
+ "Manage general event configuration such as API Emails.", "created": "2023-05-20T01:20:31.639587+00:00",
+ "group_name": "Events", "display_type": "write", "restricted": false}}, {"type":
+ "permissions", "id": "3a48350c-f9bc-11ed-b81c-da7ad0900002", "attributes":
+ {"name": "security_monitoring_findings_write", "display_name": "Security Monitoring
+ Findings Write", "description": "Mute CSPM Findings.", "created": "2023-05-23T22:50:34.532448+00:00",
+ "group_name": "Cloud Security Platform", "display_type": "write", "restricted":
+ false}}, {"type": "permissions", "id": "a773e3d8-fff2-11ed-965c-da7ad0900002",
+ "attributes": {"name": "cloud_cost_management_read", "display_name": "Cloud
+ Cost Management Read", "description": "View Cloud Cost pages. This does not
+ restrict access to the cloud cost data source in dashboards and notebooks.",
+ "created": "2023-05-31T20:35:17.490437+00:00", "group_name": "Cloud Cost Management",
+ "display_type": "read", "restricted": false}}, {"type": "permissions", "id":
+ "a77452c8-fff2-11ed-965d-da7ad0900002", "attributes": {"name": "cloud_cost_management_write",
+ "display_name": "Cloud Cost Management Write", "description": "Configure cloud
+ cost accounts and global customizations.", "created": "2023-05-31T20:35:17.490437+00:00",
+ "group_name": "Cloud Cost Management", "display_type": "write", "restricted":
+ false}}, {"type": "permissions", "id": "a51b375a-ff73-11ed-8c18-da7ad0900002",
+ "attributes": {"name": "host_tags_write", "display_name": "Host Tags Write",
+ "description": "Add and change tags on hosts.", "created": "2023-05-31T05:26:07.469293+00:00",
+ "group_name": "Metrics", "display_type": "write", "restricted": false}}, {"type":
+ "permissions", "id": "61f9891a-0070-11ee-9c3f-da7ad0900002", "attributes":
+ {"name": "ci_visibility_pipelines_write", "display_name": "CI Visibility Pipelines
+ Write", "description": "Create CI Visibility pipeline spans using the API.",
+ "created": "2023-06-01T11:35:17.513706+00:00", "group_name": "CI Visibility",
+ "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
+ "1377d9e4-0ec7-11ee-aebc-da7ad0900002", "attributes": {"name": "quality_gate_rules_read",
+ "display_name": "Quality Gate Rules Read", "description": "View Quality Gate
+ Rules.", "created": "2023-06-19T17:31:08.295856+00:00", "group_name": "CI
+ Visibility", "display_type": "read", "restricted": false}}, {"type": "permissions",
+ "id": "1377ff28-0ec7-11ee-aebd-da7ad0900002", "attributes": {"name": "quality_gate_rules_write",
+ "display_name": "Quality Gate Rules Write", "description": "Edit Quality Gate
+ Rules.", "created": "2023-06-19T17:31:08.295856+00:00", "group_name": "CI
+ Visibility", "display_type": "write", "restricted": false}}, {"type": "permissions",
+ "id": "cc8cd958-11eb-11ee-ade2-da7ad0900002", "attributes": {"name": "metrics_metadata_write",
+ "display_name": "Metrics Metadata Write", "description": "Edit metadata on
+ metrics.", "created": "2023-06-23T17:31:34.182629+00:00", "group_name": "Metrics",
+ "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
+ "b1adb6e8-0949-11ee-b2c5-da7ad0900002", "attributes": {"name": "rum_delete_data",
+ "display_name": "RUM Delete Data", "description": "Delete data from RUM.",
+ "created": "2023-06-12T17:51:01.325450+00:00", "group_name": "Real User Monitoring",
+ "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
+ "b1ad77e6-0949-11ee-b2c3-da7ad0900002", "attributes": {"name": "appsec_vm_write",
+ "display_name": "Vulnerability Management Write", "description": "Update status
+ or assignee of vulnerabilities.", "created": "2023-06-12T17:51:01.325450+00:00",
+ "group_name": "Cloud Security Platform", "display_type": "write", "restricted":
+ false}}, {"type": "permissions", "id": "b1adb5da-0949-11ee-b2c4-da7ad0900002",
+ "attributes": {"name": "reference_tables_write", "display_name": "Reference
+ Tables Write", "description": "Create or modify Reference Tables.", "created":
+ "2023-06-12T17:51:01.325450+00:00", "group_name": "Reference Tables", "display_type":
+ "write", "restricted": false}}, {"type": "permissions", "id": "0efeff18-1cec-11ee-992d-da7ad0900002",
+ "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-07T17:31:08.450865+00:00",
+ "group_name": "Real User Monitoring", "display_type": "write", "restricted":
+ false}}, {"type": "permissions", "id": "6c5ce898-21a4-11ee-99ef-da7ad0900002",
+ "attributes": {"name": "observability_pipelines_delete", "display_name": "Pipeline
+ Delete", "description": "Delete pipelines from your organization.", "created":
+ "2023-07-13T17:40:57.140947+00:00", "group_name": "Observability Pipelines",
+ "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
+ "6c5ce992-21a4-11ee-99f0-da7ad0900002", "attributes": {"name": "observability_pipelines_deploy",
+ "display_name": "Pipeline Deploy", "description": "Deploy pipelines in your
+ organization.", "created": "2023-07-13T17:40:57.140947+00:00", "group_name":
+ "Observability Pipelines", "display_type": "write", "restricted": false}},
+ {"type": "permissions", "id": "785177a6-20da-11ee-bed7-da7ad0900002", "attributes":
+ {"name": "processes_generate_metrics", "display_name": "Processes Generate
+ Metrics", "description": "Create custom metrics from processes.", "created":
+ "2023-07-12T17:35:18.858294+00:00", "group_name": "Processes", "display_type":
+ "write", "restricted": false}}, {"type": "permissions", "id": "7850e390-20da-11ee-bed6-da7ad0900002",
+ "attributes": {"name": "api_keys_delete", "display_name": "API Keys Delete",
+ "description": "Delete API Keys for your organization.", "created": "2023-07-12T17:35:18.858294+00:00",
+ "group_name": "API and Application Keys", "display_type": "write", "restricted":
+ false}}, {"type": "permissions", "id": "6c5c79b2-21a4-11ee-99ee-da7ad0900002",
+ "attributes": {"name": "agent_flare_collection", "display_name": "Agent Flare
+ Collection", "description": "Collect an Agent flare with Fleet Automation.",
+ "created": "2023-07-13T17:40:57.140947+00:00", "group_name": "Fleet Automation",
+ "display_type": "write", "restricted": false}}, {"type": "permissions", "id":
+ "1b8f54cc-2ca4-11ee-9e72-da7ad0900002", "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-27T17:36:24.369352+00:00", "group_name":
+ "Cross-Product Features", "display_type": "write", "restricted": false}},
+ {"type": "permissions", "id": "5356dfd2-3dee-11ee-b07b-da7ad0900002", "attributes":
+ {"name": "static_analysis_settings_write", "display_name": "Static Analysis
+ Settings Write", "description": "Edit Static Analysis settings.", "created":
+ "2023-08-18T17:40:30.474557+00:00", "group_name": "CI Visibility", "display_type":
+ "write", "restricted": false}}, {"type": "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002",
+ "attributes": {"name": "cd_visibility_read", "display_name": "CD Visibility
+ Read", "description": "View CD Visibility.", "created": "2023-09-09T00:06:00.708335+00:00",
+ "group_name": "CI Visibility", "display_type": "read", "restricted": true}},
+ {"type": "permissions", "id": "50c270de-69ee-11ee-9151-da7ad0900002", "attributes":
+ {"name": "appsec_vm_read", "display_name": "Vulnerability Management Read",
+ "description": "View vulnerabilities. This does not restrict access to the
+ vulnerability data source through the API or inventory SQL.", "created": "2023-10-13T17:31:17.311029+00:00",
+ "group_name": "Cloud Security Platform", "display_type": "read", "restricted":
+ true}}, {"type": "permissions", "id": "7c7836fc-6f6e-11ee-8cdd-da7ad0900002",
+ "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-20T17:31:22.039614+00:00",
+ "group_name": "APM", "display_type": "write", "restricted": false}}]}'
headers:
Content-Type:
- application/json
@@ -2089,106 +1465,225 @@ interactions:
Content-Type:
- application/json
method: GET
- uri: https://api.datadoghq.com/api/v1/synthetics/tests/browser/4mg-pxb-ze4
+ uri: https://api.datadoghq.com/api/v1/monitor?page=0&page_size=100
response:
body:
- string: '{"public_id": "4mg-pxb-ze4", "name": "Browser Test (cloned)", "status":
- "live", "type": "browser", "tags": [], "created_at": "2022-11-15T21:05:04.564415+00:00",
- "modified_at": "2022-11-15T21:05:04.564415+00:00", "config": {"variables":
- [], "setCookie": "", "request": {"url": "https://docs.datadoghq.com", "headers":
- {"test": "{{ TEST_VARIABLE }}", "test_two": "{{ TEST_VAR_LOCAL }}"}, "method":
- "GET"}, "assertions": [], "configVariables": [{"pattern": "TEST_VAR_LOCAL",
- "type": "text", "name": "TEST_VAR_LOCAL", "example": "TEST_VAR_LOCAL"}, {"type":
- "global", "id": "7478e601-cbe3-4a7d-babf-d48702b6b833", "name": "TEST_VARIABLE"}]},
- "message": "", "options": {"enableSecurityTesting": false, "retry": {"count":
- 0, "interval": 300}, "min_location_failed": 1, "min_failure_duration": 0,
- "noScreenshot": false, "tick_every": 604800, "disableCsp": false, "disableCors":
- false, "enableProfiling": false, "rumSettings": {"isEnabled": false}, "device_ids":
- ["chrome.laptop_large", "firefox.laptop_large", "chrome.tablet", "chrome.mobile_small",
- "firefox.mobile_small", "firefox.tablet"], "monitor_options": {"notify_audit":
+ string: '[{"id": 36230659, "org_id": 569509, "type": "query alert", "name":
+ "Composite monitor - Child 2", "message": "Test monitor ----------------",
+ "tags": ["test:foo", "test_two:bar"], "query": "avg(last_5m):avg:datadog.estimated_usage.hosts{*}
+ > 50", "options": {"thresholds": {"critical": 50.0}, "notify_audit": false,
+ "require_full_window": true, "notify_no_data": false, "renotify_interval":
+ 0, "timeout_h": 0, "include_tags": true, "no_data_timeframe": null, "escalation_message":
+ "", "new_host_delay": 300, "silenced": {}}, "multi": false, "created_at":
+ 1622364217000, "created": "2021-05-30T08:43:37.940520+00:00", "modified":
+ "2023-08-10T20:39:26.357089+00:00", "deleted": null, "restricted_roles": null,
+ "priority": null, "overall_state_modified": "2021-05-30T08:45:28+00:00", "overall_state":
+ "OK", "creator": {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com",
+ "email": "sherzod.karimov@datadoghq.com", "id": 2781275}, "matching_downtimes":
+ []}, {"id": 36239262, "org_id": 569509, "type": "query alert", "name": "Composite
+ monitor - child 1", "message": "Composite monitor - child 1", "tags": ["test:foo"],
+ "query": "avg(last_5m):avg:dd.dialtone.historical.metrics{*} > 20", "options":
+ {"thresholds": {"critical": 20.0, "warning": 10.0}, "notify_audit": false,
+ "require_full_window": true, "notify_no_data": false, "renotify_interval":
+ 1440, "timeout_h": 0, "include_tags": true, "no_data_timeframe": null, "escalation_message":
+ "", "renotify_statuses": ["no data"], "new_host_delay": 300, "silenced": {}},
+ "multi": false, "created_at": 1622404151000, "created": "2021-05-30T19:49:11.945913+00:00",
+ "modified": "2023-08-10T20:39:47.053119+00:00", "deleted": null, "restricted_roles":
+ null, "priority": null, "overall_state_modified": "2021-05-30T19:52:07+00:00",
+ "overall_state": "OK", "creator": {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com",
+ "email": "sherzod.karimov@datadoghq.com", "id": 2781275}, "matching_downtimes":
+ []}, {"id": 36593201, "org_id": 569509, "type": "composite", "name": "Composite
+ monitor", "message": "test", "tags": [], "query": "( 36239262 && 36230659
+ ) || !36239262", "options": {"notify_audit": false, "locked": false, "include_tags":
+ false, "new_host_delay": 300, "notify_no_data": false, "renotify_interval":
+ 0, "escalation_message": "", "silenced": {}}, "multi": false, "created_at":
+ 1622746548000, "created": "2021-06-03T18:55:48.515861+00:00", "modified":
+ "2021-06-08T18:13:50.284433+00:00", "deleted": null, "restricted_roles": null,
+ "priority": null, "overall_state_modified": "2021-06-03T18:56:43+00:00", "overall_state":
+ "Alert", "creator": {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com",
+ "email": "sherzod.karimov@datadoghq.com", "id": 2781275}, "matching_downtimes":
+ []}, {"id": 37284891, "org_id": 569509, "type": "service check", "name": "Host
+ monitor", "message": "Test host monitor", "tags": ["service:daimler-health-service"],
+ "query": "\"datadog.agent.up\".over(\"*\").by(\"host\").last(2).count_by_status()",
+ "options": {"thresholds": {"critical": 1, "warning": 1, "ok": 1}, "notify_audit":
+ false, "notify_no_data": true, "no_data_timeframe": 2, "renotify_interval":
+ 0, "timeout_h": 0, "include_tags": true, "new_group_delay": 300, "silenced":
+ {}}, "multi": true, "created_at": 1623176221000, "created": "2021-06-08T18:17:01.656132+00:00",
+ "modified": "2023-05-16T22:15:12.393592+00:00", "deleted": null, "restricted_roles":
+ null, "priority": null, "overall_state_modified": "2023-05-05T17:14:51+00:00",
+ "overall_state": "No Data", "creator": {"name": "Sherzod Karimov", "handle":
+ "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com",
+ "id": 2781275}, "matching_downtimes": []}, {"id": 37284965, "org_id": 569509,
+ "type": "query alert", "name": "Anomaly monitor", "message": "Anomaly monitor",
+ "tags": [], "query": "avg(last_4h):anomalies(avg:dd.dialtone.historical.metrics{*},
+ ''basic'', 2, direction=''both'', alert_window=''last_15m'', interval=60,
+ count_default_zero=''true'') >= 1", "options": {"notify_audit": false, "locked":
+ false, "timeout_h": 0, "include_tags": true, "no_data_timeframe": null, "require_full_window":
+ true, "new_host_delay": 300, "notify_no_data": false, "renotify_interval":
+ 0, "escalation_message": "", "threshold_windows": {"recovery_window": "last_15m",
+ "trigger_window": "last_15m"}, "thresholds": {"critical": 1.0, "critical_recovery":
+ 0.0}, "silenced": {}}, "multi": false, "created_at": 1623176273000, "created":
+ "2021-06-08T18:17:53.020925+00:00", "modified": "2021-06-08T18:17:53.020925+00:00",
+ "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
+ "2021-06-08T18:19:16+00:00", "overall_state": "OK", "creator": {"name": "Sherzod
+ Karimov", "handle": "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com",
+ "id": 2781275}, "matching_downtimes": []}, {"id": 52549314, "org_id": 569509,
+ "type": "metric alert", "name": "[Synthetic Private Locations] {{location_id.name}}
+ stopped reporting", "message": "Private location {{location_id.name}} stopped
+ reporting to Datadog.", "tags": [], "query": "min(last_5m):avg:synthetics.pl.worker.running{*}
+ by {location_id} < 1", "options": {"notify_audit": false, "locked": false,
+ "include_tags": true, "thresholds": {"critical": 1.0}, "new_host_delay": 300,
+ "notify_no_data": true, "silenced": {}}, "multi": true, "created_at": 1635860538000,
+ "created": "2021-11-02T13:42:18.175788+00:00", "modified": "2021-11-02T13:42:18.175788+00:00",
+ "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
+ "2021-11-02T13:45:14+00:00", "overall_state": "No Data", "creator": {"name":
+ "Noueman Khalikine", "handle": "noueman.khalikine@datadoghq.com", "email":
+ "noueman.khalikine@datadoghq.com", "id": 2808025}, "matching_downtimes": []},
+ {"id": 52549315, "org_id": 569509, "type": "metric alert", "name": "[Synthetic
+ Private Locations] {{location_id.name}} uses an outdated image version", "message":
+ "Private location {{location_id.name}} is running an outdated image version.
+ Learn more about the current version in use on your [Private locations page](https://app.datadoghq.com/synthetics/settings/private-locations?id={{location_id.name}})
+ and upgrade workers to the most recent version of the image by pulling the
+ `datadog/synthetics-private-location-worker` image with the `latest` tag.",
+ "tags": [], "query": "max(last_15m):sum:synthetics.pl.worker.outdated{*} by
+ {location_id} > 0", "options": {"notify_audit": false, "locked": false, "include_tags":
+ true, "thresholds": {"critical": 0.0}, "new_host_delay": 300, "notify_no_data":
+ false, "silenced": {}}, "multi": true, "created_at": 1635860538000, "created":
+ "2021-11-02T13:42:18.219169+00:00", "modified": "2021-11-02T13:42:18.219169+00:00",
+ "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
+ "2021-11-02T13:45:05+00:00", "overall_state": "No Data", "creator": {"name":
+ "Noueman Khalikine", "handle": "noueman.khalikine@datadoghq.com", "email":
+ "noueman.khalikine@datadoghq.com", "id": 2808025}, "matching_downtimes": []},
+ {"id": 52549316, "org_id": 569509, "type": "metric alert", "name": "[Synthetic
+ Private Locations] {{location_id.name}} is underprovisioned", "message": "Private
+ location {{location_id.name}} is underprovisioned.\nVisit this [documentation
+ page](https://docs.datadoghq.com/synthetics/private_locations/?tab=docker#dimension-your-private-location)
+ to learn how to scale your private location.", "tags": [], "query": "avg(last_30m):avg:synthetics.pl.worker.remaining_slots{*}
+ by {location_id} < 1.5", "options": {"notify_audit": false, "locked": false,
+ "include_tags": true, "thresholds": {"critical": 1.5}, "new_host_delay": 300,
+ "notify_no_data": false, "silenced": {}}, "multi": true, "created_at": 1635860538000,
+ "created": "2021-11-02T13:42:18.259196+00:00", "modified": "2021-11-02T13:42:18.259196+00:00",
+ "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
+ "2021-11-02T13:45:07+00:00", "overall_state": "No Data", "creator": {"name":
+ "Noueman Khalikine", "handle": "noueman.khalikine@datadoghq.com", "email":
+ "noueman.khalikine@datadoghq.com", "id": 2808025}, "matching_downtimes": []},
+ {"id": 66666697, "org_id": 569509, "type": "event-v2 alert", "name": "Test
+ event monitor", "message": "Test event monitor", "tags": [], "query": "events(\"\").rollup(\"count\").last(\"5m\")
+ > 100", "options": {"notify_audit": false, "locked": false, "timeout_h": 0,
+ "include_tags": true, "restriction_query": null, "new_host_delay": 300, "notify_no_data":
+ false, "renotify_interval": 0, "groupby_simple_monitor": true, "enable_logs_sample":
+ false, "escalation_message": "", "thresholds": {"critical": 100.0}, "silenced":
+ {}}, "multi": false, "created_at": 1647980371000, "created": "2022-03-22T20:19:31.437344+00:00",
+ "modified": "2022-03-22T20:19:31.437344+00:00", "deleted": null, "restricted_roles":
+ null, "priority": null, "overall_state_modified": "2023-11-15T14:04:08+00:00",
+ "overall_state": "OK", "creator": {"name": "Datadog Support", "handle": "support-datadogsynccliustestorg-1137936",
+ "email": "support-user-prod@datadoghq.com", "id": 3205966}, "matching_downtimes":
+ []}, {"id": 103095757, "org_id": 569509, "type": "synthetics alert", "name":
+ "[Synthetics] HTTP Test", "message": "Test synthetics", "tags": ["probe_dc:aws:ca-central-1",
+ "check_type:api", "check_status:paused", "ci_execution_rule:blocking"], "query":
+ "no_query", "options": {"notify_audit": false, "include_tags": true, "new_host_delay":
+ 300, "on_missing_data": "show_no_data", "renotify_interval": 120, "silenced":
+ {}}, "multi": false, "created_at": 1668546304000, "created": "2022-11-15T21:05:04.457904+00:00",
+ "modified": "2022-11-15T21:05:04.457904+00:00", "deleted": null, "restricted_roles":
+ null, "priority": 3, "overall_state_modified": "2022-11-15T21:05:38+00:00",
+ "overall_state": "No Data", "creator": {"name": "Sherzod Karimov", "handle":
+ "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com",
+ "id": 2781275}, "matching_downtimes": []}, {"id": 103095758, "org_id": 569509,
+ "type": "synthetics alert", "name": "[Synthetics] SSL Test", "message": "Notify
+ @pagerduty", "tags": ["foo:bar", "foo", "env:test", "probe_dc:aws:eu-central-1",
+ "check_type:api-ssl", "check_status:live", "ci_execution_rule:blocking"],
+ "query": "no_query", "options": {"notify_audit": false, "include_tags": true,
+ "new_host_delay": 300, "on_missing_data": "show_no_data", "renotify_interval":
+ 0, "silenced": {}}, "multi": false, "created_at": 1668546304000, "created":
+ "2022-11-15T21:05:04.460432+00:00", "modified": "2022-11-15T21:05:04.460432+00:00",
+ "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
+ "2023-09-22T18:19:38+00:00", "overall_state": "OK", "creator": {"name": "Sherzod
+ Karimov", "handle": "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com",
+ "id": 2781275}, "matching_downtimes": []}, {"id": 103095759, "org_id": 569509,
+ "type": "synthetics alert", "name": "[Synthetics] TCP Test", "message": "Notify
+ @pagerduty", "tags": ["foo:bar", "foo", "env:test", "probe_dc:aws:eu-central-1",
+ "check_type:api-tcp", "check_status:live", "ci_execution_rule:blocking"],
+ "query": "no_query", "options": {"notify_audit": false, "include_tags": true,
+ "new_host_delay": 300, "on_missing_data": "show_no_data", "renotify_interval":
+ 0, "silenced": {}}, "multi": false, "created_at": 1668546304000, "created":
+ "2022-11-15T21:05:04.469143+00:00", "modified": "2022-11-15T21:05:04.469143+00:00",
+ "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
+ "2023-12-06T22:36:09+00:00", "overall_state": "OK", "creator": {"name": "Sherzod
+ Karimov", "handle": "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com",
+ "id": 2781275}, "matching_downtimes": []}, {"id": 103095760, "org_id": 569509,
+ "type": "synthetics alert", "name": "[Synthetics] Browser Test (cloned)",
+ "message": "", "tags": ["probe_dc:aws:us-west-1", "check_type:browser", "check_status:live",
+ "ci_execution_rule:blocking"], "query": "no_query", "options": {"notify_audit":
false, "include_tags": true, "new_host_delay": 300, "on_missing_data": "show_no_data",
- "renotify_interval": 0}, "ignoreServerCertificateError": false}, "locations":
- ["aws:us-west-1"], "monitor_id": 103095760, "creator": {"name": "Sherzod Karimov",
- "handle": "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"},
- "steps": [{"name": "Type text on input \"s\"", "params": {"value": "api",
- "element": {"url": "https://docs.datadoghq.com/", "multiLocator": {"ab": "/*[local-name()=\"html\"][1]/*[local-name()=\"body\"][1]/*[local-name()=\"section\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"form\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"span\"][1]/*[local-name()=\"input\"][2]",
- "at": "/descendant::*[@name=\"s\"]", "cl": "/descendant::*[contains(concat(''
- '', normalize-space(@class), '' ''), \" docssearch-input \") and contains(concat(''
- '', normalize-space(@class), '' ''), \" ds-input \")]", "co": "[{\"text\":\"search
- documentation...\",\"textType\":\"placeholder\"}]", "ro": "//*[@name=\"s\"]",
- "clt": "/descendant::*[contains(concat('' '', normalize-space(@class), ''
- ''), \" docssearch-input \") and contains(concat('' '', normalize-space(@class),
- '' ''), \" ds-input \")]"}, "targetOuterHTML": "API
- \u00bb AuthN Mappings"}}, "type": "click", "allowFailure": false, "isCritical":
- true, "noScreenshot": false}, {"name": "Click on link \"Go\"", "params": {"element":
- {"url": "https://docs.datadoghq.com/api/latest/authn-mappings/", "multiLocator":
- {"ab": "/*[local-name()=\"html\"][1]/*[local-name()=\"body\"][1]/*[local-name()=\"div\"][3]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][2]/*[local-name()=\"div\"][4]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][3]/*[local-name()=\"ul\"][1]/*[local-name()=\"li\"][4]/*[local-name()=\"a\"][1]",
- "at": "/*[local-name()=\"html\"]/*[local-name()=\"body\"]/*[local-name()=\"div\"][3]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][2]/*[local-name()=\"div\"][4]/descendant::*[@href=\"?code-lang=go#\"]",
- "cl": "/descendant::*[contains(concat('' '', normalize-space(@class), '' ''),
- \" main-api \")]/*[local-name()=\"div\"][4]/descendant::*[contains(concat(''
- '', normalize-space(@class), '' ''), \" code-lang-list-container \")]/*[local-name()=\"li\"][4]/descendant::*[contains(concat(''
- '', normalize-space(@class), '' ''), \" js-code-example-link \")]", "co":
- "[{\"text\":\"go\",\"textType\":\"directText\"},{\"relation\":\"PARENT OF\",\"tagName\":\"DIV\",\"text\":\"
- get an authn mapping by uuid\",\"textType\":\"innerText\"}]", "ro": null,
- "clt": "/descendant::*[contains(concat('' '', normalize-space(@class), ''
- ''), \" main-api \")]/*[local-name()=\"div\"][4]/descendant::*[contains(concat(''
- '', normalize-space(@class), '' ''), \" code-lang-list-container \")]/descendant::*[text()[normalize-space(translate(.,
- ''ABCDEFGHIJKLMNOPQRSTUVWXYZ\u00c0\u00c1\u00c2\u00c3\u00c4\u00c5\u00c6\u00c7\u00c8\u00c9\u00ca\u00cb\u00cc\u00cd\u00ce\u00cf\u00d0\u00d1\u00d2\u00d3\u00d4\u00d5\u00d6\u00d8\u00d9\u00da\u00db\u00dc\u00dd\u00de\u0178\u017d\u0160\u0152'',
- ''abcdefghijklmnopqrstuvwxyz\u00e0\u00e1\u00e2\u00e3\u00e4\u00e5\u00e6\u00e7\u00e8\u00e9\u00ea\u00eb\u00ec\u00ed\u00ee\u00ef\u00f0\u00f1\u00f2\u00f3\u00f4\u00f5\u00f6\u00f8\u00f9\u00fa\u00fb\u00fc\u00fd\u00fe\u00ff\u017e\u0161\u0153''))
- = \"go\"]]"}, "targetOuterHTML": "Go"}}, "type": "click",
- "allowFailure": false, "isCritical": true, "noScreenshot": false}, {"name":
- "Click on link \"Python [beta]\"", "params": {"element": {"url": "https://docs.datadoghq.com/api/latest/authn-mappings/?code-lang=go",
- "multiLocator": {"ab": "/*[local-name()=\"html\"][1]/*[local-name()=\"body\"][1]/*[local-name()=\"div\"][3]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][2]/*[local-name()=\"div\"][4]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][3]/*[local-name()=\"ul\"][1]/*[local-name()=\"li\"][3]/*[local-name()=\"a\"][1]",
- "at": "/*[local-name()=\"html\"]/*[local-name()=\"body\"]/*[local-name()=\"div\"][3]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][2]/*[local-name()=\"div\"][4]/descendant::*[@href=\"?code-lang=ruby#\"]",
- "cl": "/descendant::*[contains(concat('' '', normalize-space(@class), '' ''),
- \" main-api \")]/*[local-name()=\"div\"][4]/descendant::*[contains(concat(''
- '', normalize-space(@class), '' ''), \" code-lang-list-container \")]/*[local-name()=\"li\"][3]/descendant::*[contains(concat(''
- '', normalize-space(@class), '' ''), \" js-code-example-link \")]", "co":
- "[{\"text\":\"ruby\",\"textType\":\"directText\"},{\"relation\":\"PARENT OF\",\"tagName\":\"DIV\",\"text\":\"
- get an authn mapping by uuid\",\"textType\":\"innerText\"}]", "ro": null,
- "clt": "/descendant::*[contains(concat('' '', normalize-space(@class), ''
- ''), \" main-api \")]/*[local-name()=\"div\"][4]/descendant::*[contains(concat(''
- '', normalize-space(@class), '' ''), \" code-lang-list-container \")]/descendant::*[text()[normalize-space(translate(.,
- ''ABCDEFGHIJKLMNOPQRSTUVWXYZ\u00c0\u00c1\u00c2\u00c3\u00c4\u00c5\u00c6\u00c7\u00c8\u00c9\u00ca\u00cb\u00cc\u00cd\u00ce\u00cf\u00d0\u00d1\u00d2\u00d3\u00d4\u00d5\u00d6\u00d8\u00d9\u00da\u00db\u00dc\u00dd\u00de\u0178\u017d\u0160\u0152'',
- ''abcdefghijklmnopqrstuvwxyz\u00e0\u00e1\u00e2\u00e3\u00e4\u00e5\u00e6\u00e7\u00e8\u00e9\u00ea\u00eb\u00ec\u00ed\u00ee\u00ef\u00f0\u00f1\u00f2\u00f3\u00f4\u00f5\u00f6\u00f8\u00f9\u00fa\u00fb\u00fc\u00fd\u00fe\u00ff\u017e\u0161\u0153''))
- = \"ruby\"]]"}, "targetOuterHTML": "Ruby"}}, "type":
- "click", "allowFailure": false, "isCritical": true, "noScreenshot": false},
- {"name": "Click on button \"Copy\"", "params": {"element": {"url": "https://docs.datadoghq.com/api/latest/authn-mappings/?code-lang=ruby",
- "multiLocator": {"ab": "/*[local-name()=\"html\"][1]/*[local-name()=\"body\"][1]/*[local-name()=\"div\"][3]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][2]/*[local-name()=\"div\"][4]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][3]/*[local-name()=\"div\"][3]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][2]/*[local-name()=\"h5\"][1]/*[local-name()=\"button\"][1]",
- "at": "", "cl": "/descendant::*[contains(concat('' '', normalize-space(@class),
- '' ''), \" main-api \")]/*[local-name()=\"div\"][4]/descendant::*[contains(concat(''
- '', normalize-space(@class), '' ''), \" js-code-snippet-wrapper \")]/*[local-name()=\"div\"][3]/descendant::*[contains(concat(''
- '', normalize-space(@class), '' ''), \" btn \")]", "co": "[{\"text\":\"get
- an authn mapping by uuid\",\"textType\":\"directText\"},{\"relation\":\"PARENT
- OF\",\"tagName\":\"SPAN\",\"text\":\"# get an authn mapping by uuid returns
- \\\"ok\\\" response \",\"textType\":\"innerText\"}]", "ro": null, "clt": "/descendant::*[contains(concat(''
- '', normalize-space(@class), '' ''), \" main-api \")]/*[local-name()=\"div\"][4]/descendant::*[contains(concat(''
- '', normalize-space(@class), '' ''), \" js-code-snippet-wrapper \")]/*[local-name()=\"div\"][3]/descendant::*[contains(concat(''
- '', normalize-space(@class), '' ''), \" btn \")]"}, "targetOuterHTML": ""}}, "type": "click", "allowFailure": false, "isCritical":
- true, "noScreenshot": false}]}'
+ "renotify_interval": 0, "silenced": {}}, "multi": false, "created_at": 1668546304000,
+ "created": "2022-11-15T21:05:04.469385+00:00", "modified": "2022-11-15T21:05:04.469385+00:00",
+ "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
+ "2022-11-15T21:06:40+00:00", "overall_state": "Alert", "creator": {"name":
+ "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com",
+ "id": 2781275}, "matching_downtimes": []}, {"id": 103095761, "org_id": 569509,
+ "type": "synthetics alert", "name": "Test-Trigger_Synthetics_tests_returns_OK_response-1666783270",
+ "message": "BDD test payload: synthetics_api_http_test_payload.json", "tags":
+ ["testing:api", "probe_dc:aws:us-east-2", "check_type:api", "check_status:live",
+ "ci_execution_rule:blocking"], "query": "no_query", "options": {"include_tags":
+ true, "notify_audit": false, "new_host_delay": 300, "on_missing_data": "show_no_data",
+ "silenced": {}}, "multi": false, "created_at": 1668546304000, "created": "2022-11-15T21:05:04.477484+00:00",
+ "modified": "2022-11-15T21:05:04.477484+00:00", "deleted": null, "restricted_roles":
+ null, "priority": 5, "overall_state_modified": "2022-11-15T21:05:42+00:00",
+ "overall_state": "Alert", "creator": {"name": "Sherzod Karimov", "handle":
+ "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com",
+ "id": 2781275}, "matching_downtimes": []}, {"id": 103095762, "org_id": 569509,
+ "type": "synthetics alert", "name": "[Synthetics] Multistep API Test", "message":
+ "", "tags": ["check_type:api", "env:test", "test:update", "probe_dc:aws:sa-east-1",
+ "check_type:api-multi", "check_status:live", "ci_execution_rule:blocking"],
+ "query": "no_query", "options": {"notify_audit": false, "include_tags": true,
+ "new_host_delay": 300, "on_missing_data": "show_no_data", "renotify_interval":
+ 0, "silenced": {}}, "multi": false, "created_at": 1668546304000, "created":
+ "2022-11-15T21:05:04.478167+00:00", "modified": "2022-11-15T21:05:04.478167+00:00",
+ "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
+ "2022-11-15T21:05:43+00:00", "overall_state": "OK", "creator": {"name": "Sherzod
+ Karimov", "handle": "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com",
+ "id": 2781275}, "matching_downtimes": []}, {"id": 103095763, "org_id": 569509,
+ "type": "synthetics alert", "name": "[Synthetics] DNS Test", "message": "Notify
+ @pagerduty", "tags": ["foo:bar", "foo", "env:test", "probe_dc:aws:eu-central-1",
+ "check_type:api-dns", "check_status:live", "ci_execution_rule:blocking"],
+ "query": "no_query", "options": {"notify_audit": false, "include_tags": true,
+ "new_host_delay": 300, "on_missing_data": "show_no_data", "renotify_interval":
+ 0, "silenced": {}}, "multi": false, "created_at": 1668546304000, "created":
+ "2022-11-15T21:05:04.482560+00:00", "modified": "2022-11-15T21:05:04.482560+00:00",
+ "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
+ "2022-11-15T21:05:45+00:00", "overall_state": "Alert", "creator": {"name":
+ "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com",
+ "id": 2781275}, "matching_downtimes": []}, {"id": 121127083, "org_id": 569509,
+ "type": "synthetics alert", "name": "[Synthetics] tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1686121345",
+ "message": "Notify @datadog.user", "tags": ["multistep", "probe_dc:aws:eu-central-1",
+ "check_type:api-multi", "check_status:paused", "ci_execution_rule:blocking"],
+ "query": "no_query", "options": {"on_missing_data": "show_no_data", "notify_audit":
+ false, "new_host_delay": 300, "include_tags": true, "silenced": {}}, "multi":
+ false, "created_at": 1686121347000, "created": "2023-06-07T07:02:27.979214+00:00",
+ "modified": "2023-06-07T07:02:27.979214+00:00", "deleted": null, "restricted_roles":
+ null, "priority": null, "overall_state_modified": "2023-06-07T07:02:45+00:00",
+ "overall_state": "No Data", "creator": {"name": "Frog", "handle": "frog@datadoghq.com",
+ "email": "frog@datadoghq.com", "id": 2781302}, "matching_downtimes": []},
+ {"id": 124728911, "org_id": 569509, "type": "slo alert", "name": "Test slo
+ monitor", "message": "Random message", "tags": [], "query": "burn_rate(\"ba72d10835d75e0c8910597144f3733a\").over(\"7d\").long_window(\"1h\").short_window(\"5m\")
+ > 1", "options": {"thresholds": {"critical": 1.0}, "notify_no_data": false,
+ "notify_audit": false, "new_host_delay": 300, "include_tags": true, "silenced":
+ {}}, "multi": false, "created_at": 1688999118000, "created": "2023-07-10T14:25:18.627726+00:00",
+ "modified": "2023-09-19T16:02:35.079242+00:00", "deleted": null, "restricted_roles":
+ null, "priority": null, "overall_state_modified": "2023-07-10T14:25:22+00:00",
+ "overall_state": "No Data", "creator": {"name": "Sherzod Karimov", "handle":
+ "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com",
+ "id": 2781275}, "matching_downtimes": []}, {"id": 131664819, "org_id": 569509,
+ "type": "slo alert", "name": "Check monitor slo", "message": "Message", "tags":
+ [], "query": "error_budget(\"b02adcb3d95a5c3dbfebf7c94bf4e8c5\").over(\"7d\")
+ > 90", "options": {"thresholds": {"critical": 90.0}, "notify_no_data": false,
+ "notify_audit": false, "new_host_delay": 300, "include_tags": true, "silenced":
+ {}}, "multi": false, "created_at": 1695138188000, "created": "2023-09-19T15:43:08.383274+00:00",
+ "modified": "2023-09-19T15:43:08.383274+00:00", "deleted": null, "restricted_roles":
+ null, "priority": null, "overall_state_modified": "2023-09-19T15:43:10+00:00",
+ "overall_state": "OK", "creator": {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com",
+ "email": "sherzod.karimov@datadoghq.com", "id": 2781275}, "matching_downtimes":
+ []}]'
headers:
Content-Type:
- application/json
@@ -2205,19 +1700,22 @@ interactions:
Content-Type:
- application/json
method: GET
- uri: https://api.datadoghq.com/api/v1/synthetics/tests/api/n65-rw3-5ta
+ uri: https://api.datadoghq.com/api/v1/dashboard/lists/manual
response:
body:
- string: '{"public_id": "n65-rw3-5ta", "name": "DNS Test", "status": "live",
- "type": "api", "tags": ["foo:bar", "foo", "env:test"], "created_at": "2022-11-15T21:05:04.640424+00:00",
- "modified_at": "2022-11-15T21:05:04.640424+00:00", "config": {"request": {"host":
- "example.org"}, "assertions": [{"operator": "is", "property": "A", "type":
- "recordSome", "target": "0.0.0.0"}]}, "message": "Notify @pagerduty", "options":
- {"monitor_options": {"notify_audit": false, "include_tags": true, "new_host_delay":
- 300, "on_missing_data": "show_no_data", "renotify_interval": 0}, "tick_every":
- 900, "min_location_failed": 1}, "locations": ["aws:eu-central-1"], "subtype":
- "dns", "monitor_id": 103095763, "creator": {"name": "Sherzod Karimov", "handle":
- "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"}}'
+ string: '{"dashboard_lists": [{"author": {"name": "Sherzod Karimov", "handle":
+ "sherzod.karimov@datadoghq.com"}, "created": "2021-07-15T14:16:13.319119+00:00",
+ "dashboards": null, "dashboard_count": 0, "id": 221363, "is_favorite": false,
+ "modified": "2021-07-15T14:16:34.123734+00:00", "name": "Empty Test List",
+ "type": "manual_dashboard_list"}, {"author": {"name": "Sherzod Karimov", "handle":
+ "sherzod.karimov@datadoghq.com"}, "created": "2023-02-28T21:12:30.788938+00:00",
+ "dashboards": null, "dashboard_count": 0, "id": 367313, "is_favorite": false,
+ "modified": "2023-02-28T21:12:30.788947+00:00", "name": "Empty Test List",
+ "type": "manual_dashboard_list"}, {"author": {"name": "Sherzod Karimov", "handle":
+ "sherzod.karimov@datadoghq.com"}, "created": "2021-06-14T20:10:23.247584+00:00",
+ "dashboards": null, "dashboard_count": 2, "id": 213585, "is_favorite": false,
+ "modified": "2021-06-24T20:13:00.657023+00:00", "name": "Test list", "type":
+ "manual_dashboard_list"}]}'
headers:
Content-Type:
- application/json
@@ -2234,24 +1732,10 @@ interactions:
Content-Type:
- application/json
method: GET
- uri: https://api.datadoghq.com/api/v1/synthetics/tests/api/ct9-df9-7cy
+ uri: https://api.datadoghq.com/api/v2/dashboard/lists/manual/221363/dashboards
response:
body:
- string: '{"public_id": "ct9-df9-7cy", "name": "Multistep API Test", "status":
- "live", "type": "api", "tags": ["check_type:api", "env:test", "test:update"],
- "created_at": "2022-11-15T21:05:04.669579+00:00", "modified_at": "2022-11-15T21:05:04.669579+00:00",
- "config": {"steps": [{"retry": {"count": 0, "interval": 300}, "name": "Test
- on datadoghq.com", "request": {"url": "https://datadoghq.com", "headers":
- {"content-type": "text/html"}, "method": "GET"}, "subtype": "http", "allowFailure":
- false, "extractedValues": [], "isCritical": true, "id": "vek-567-n38", "assertions":
- [{"operator": "lessThan", "type": "responseTime", "target": 1000}, {"operator":
- "is", "type": "statusCode", "target": 301}]}], "configVariables": []}, "message":
- "", "options": {"monitor_options": {"notify_audit": false, "include_tags":
- true, "new_host_delay": 300, "on_missing_data": "show_no_data", "renotify_interval":
- 0}, "retry": {"count": 0, "interval": 300}, "min_location_failed": 1, "min_failure_duration":
- 0, "tick_every": 604800}, "locations": ["aws:sa-east-1"], "subtype": "multi",
- "monitor_id": 103095762, "creator": {"name": "Sherzod Karimov", "handle":
- "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"}}'
+ string: '{"dashboards": [], "total": 0}'
headers:
Content-Type:
- application/json
@@ -2268,51 +1752,40 @@ interactions:
Content-Type:
- application/json
method: GET
- uri: https://api.datadoghq.com/api/v1/synthetics/tests/api/xv9-vri-fqh
+ uri: https://api.datadoghq.com/api/v2/dashboard/lists/manual/367313/dashboards
response:
body:
- string: '{"public_id": "xv9-vri-fqh", "name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1686121345",
- "status": "paused", "type": "api", "tags": ["multistep"], "created_at": "2023-06-07T07:02:28.009429+00:00",
- "modified_at": "2023-06-07T07:02:28.009429+00:00", "config": {"assertions":
- [], "configVariables": [{"id": "24a74917-d729-4729-a809-0d05cf159e25", "name":
- "VARIABLE_NAME", "type": "global"}], "steps": [{"allowFailure": true, "assertions":
- [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
- [{"field": "content-length", "name": "VAR_EXTRACT", "parser": {"type": "regex",
- "value": ".*"}, "secure": true, "type": "http_header"}], "isCritical": false,
- "name": "First api step", "request": {"allow_insecure": true, "basicAuth":
- {"accessKey": "sigv4-access-key", "region": "sigv4-region", "secretKey": "sigv4-secret-key",
- "serviceName": "sigv4-service-name", "sessionToken": "sigv4-session-token",
- "type": "sigv4"}, "body": "this is a body", "certificate": {"cert": {"filename":
- "Provided in Terraform config"}, "key": {"filename": "key"}}, "follow_redirects":
- true, "headers": {"Accept": "application/json", "X-Datadog-Trace-ID": "123456789"},
- "method": "GET", "proxy": {"headers": {"Accept": "application/json", "X-Datadog-Trace-ID":
- "123456789"}, "url": "https://proxy.url"}, "query": {"foo": "bar"}, "timeout":
- 30, "url": "https://www.datadoghq.com"}, "retry": {"count": 5, "interval":
- 1000}, "subtype": "http", "id": "3xr-p38-qba"}, {"allowFailure": false, "assertions":
- [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
- [], "isCritical": false, "name": "Second api step", "request": {"allow_insecure":
- true, "basicAuth": {"accessTokenUrl": "https://token.datadoghq.com", "audience":
- "audience", "clientId": "client-id", "clientSecret": "client-secret", "scope":
- "scope", "tokenApiAuthentication": "header", "type": "oauth-client"}, "body":
- "", "follow_redirects": true, "method": "GET", "timeout": 30, "url": "https://docs.datadoghq.com"},
- "subtype": "http", "id": "3ij-dfg-6tw"}, {"allowFailure": false, "assertions":
- [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
- [], "isCritical": false, "name": "Third api step", "request": {"allow_insecure":
- true, "basicAuth": {"accessTokenUrl": "https://token.datadoghq.com", "audience":
- "audience", "clientId": "client-id", "clientSecret": "client-secret", "password":
- "password", "resource": "resource", "scope": "scope", "tokenApiAuthentication":
- "body", "type": "oauth-rop", "username": "username"}, "body": "", "follow_redirects":
- true, "method": "GET", "timeout": 30, "url": "https://docs.datadoghq.com"},
- "subtype": "http", "id": "it3-n6p-xnp"}, {"allowFailure": false, "assertions":
- [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
- [], "isCritical": false, "name": "Fourth api step", "request": {"allow_insecure":
- true, "basicAuth": {"password": "password", "type": "digest", "username":
- "username"}, "body": "", "follow_redirects": true, "method": "GET", "timeout":
- 30, "url": "https://docs.datadoghq.com"}, "subtype": "http", "id": "vid-d39-qgr"}]},
- "message": "Notify @datadog.user", "options": {"min_location_failed": 1, "restricted_roles":
- ["430aea7c-0501-11ee-9f44-da7ad0900002"], "tick_every": 900}, "locations":
- ["aws:eu-central-1"], "subtype": "multi", "monitor_id": 121127083, "creator":
- {"name": "Frog", "handle": "frog@datadoghq.com", "email": "frog@datadoghq.com"}}'
+ string: '{"dashboards": [], "total": 0}'
+ headers:
+ Content-Type:
+ - application/json
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: GET
+ uri: https://api.datadoghq.com/api/v2/dashboard/lists/manual/213585/dashboards
+ response:
+ body:
+ string: '{"dashboards": [{"author": {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com"},
+ "created": "2021-06-01T20:18:57.486260+00:00", "is_favorite": false, "is_shared":
+ false, "modified": "2023-11-27T21:30:12.468262+00:00", "title": "raw-test",
+ "type": "custom_timeboard", "id": "euw-cp8-hy6", "url": "/dashboard/euw-cp8-hy6/raw-test",
+ "is_read_only": false, "tags": [], "icon": null, "integration_id": null, "popularity":
+ 3}, {"author": {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com"},
+ "created": "2021-06-08T18:26:23.515662+00:00", "is_favorite": false, "is_shared":
+ false, "modified": "2021-06-22T19:35:38.981348+00:00", "title": "Test screenboard",
+ "type": "custom_screenboard", "id": "dns-jst-h98", "url": "/dashboard/dns-jst-h98/test-screenboard",
+ "is_read_only": false, "tags": null, "icon": null, "integration_id": null,
+ "popularity": 0}], "total": 2}'
headers:
Content-Type:
- application/json
@@ -2399,6 +1872,46 @@ interactions:
status:
code: 200
message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: GET
+ uri: https://api.datadoghq.com/api/v1/slo
+ response:
+ body:
+ string: '{"data": [{"id": "ae04001ea55f52f6ae4b85d9b1023909", "name": "Composite
+ monitor - Child 2", "tags": [], "monitor_tags": [], "thresholds": [{"timeframe":
+ "7d", "target": 99.0, "target_display": "99."}], "type": "monitor", "type_id":
+ 0, "description": "Updated Description Test", "timeframe": "7d", "target_threshold":
+ 99.0, "monitor_ids": [37284891, 36239262], "creator": {"name": "Sherzod Karimov",
+ "handle": "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"},
+ "created_at": 1623260678, "modified_at": 1668546720}, {"id": "ba72d10835d75e0c8910597144f3733a",
+ "name": "SLO test", "tags": [], "monitor_tags": [], "thresholds": [{"timeframe":
+ "7d", "target": 99.0, "target_display": "99."}], "type": "metric", "type_id":
+ 1, "description": "Test update creation", "timeframe": "7d", "target_threshold":
+ 99.0, "query": {"denominator": "sum:api.requests{*}.as_count()", "numerator":
+ "sum:api.requests.status_ok{*}.as_count()"}, "creator": {"name": "Noueman
+ Khalikine", "handle": "noueman.khalikine@datadoghq.com", "email": "noueman.khalikine@datadoghq.com"},
+ "created_at": 1623658372, "modified_at": 1626358963}, {"id": "b02adcb3d95a5c3dbfebf7c94bf4e8c5",
+ "name": "Random monitor slo", "tags": [], "monitor_tags": [], "thresholds":
+ [{"timeframe": "7d", "target": 99.9, "target_display": "99.9"}], "type": "monitor",
+ "type_id": 0, "description": "", "timeframe": "7d", "target_threshold": 99.9,
+ "monitor_ids": [36239262], "creator": {"name": "Sherzod Karimov", "handle":
+ "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"},
+ "created_at": 1695138080, "modified_at": 1695138180}], "error": null, "metadata":
+ {"page": {"total_count": 3, "total_filtered_count": 3}}}'
+ headers:
+ Content-Type:
+ - application/json
+ status:
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -2428,6 +1941,14 @@ interactions:
"allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
{"roles": {"data": [{"type": "roles", "id": "fa017a35-bfcb-11eb-a4d7-da7ad0900002"}]},
"org": {"data": {"type": "orgs", "id": "fa017a34-bfcb-11eb-a4d7-da7ad0900002"}}}},
+ {"type": "users", "id": "d5459c54-9e9d-11ee-a5c9-ce6dc639753f", "attributes":
+ {"name": "CI Service Account", "handle": "d5459c54-9e9d-11ee-a5c9-ce6dc639753f",
+ "created_at": "2023-12-19T18:38:42.022746+00:00", "modified_at": "2023-12-19T18:38:42.022746+00:00",
+ "email": "frog@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro",
+ "title": "", "verified": true, "service_account": true, "disabled": false,
+ "allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
+ {"roles": {"data": [{"type": "roles", "id": "fa017a35-bfcb-11eb-a4d7-da7ad0900002"}]},
+ "org": {"data": {"type": "orgs", "id": "fa017a34-bfcb-11eb-a4d7-da7ad0900002"}}}},
{"type": "users", "id": "2c9609cc-c316-11eb-a516-da7ad0900002", "attributes":
{"name": "", "handle": "karimovj@gmail.com", "created_at": "2021-06-01T20:15:56.964166+00:00",
"modified_at": "2021-06-04T19:49:43.686963+00:00", "email": "karimovj@gmail.com",
@@ -3335,7 +2856,7 @@ interactions:
"id": "a773e3d8-fff2-11ed-965c-da7ad0900002"}, {"type": "permissions", "id":
"1377d9e4-0ec7-11ee-aebc-da7ad0900002"}, {"type": "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"},
{"type": "permissions", "id": "50c270de-69ee-11ee-9151-da7ad0900002"}]}}}],
- "meta": {"page": {"total_count": 9, "total_filtered_count": 9, "max_page_size":
+ "meta": {"page": {"total_count": 10, "total_filtered_count": 10, "max_page_size":
1000}}}'
headers:
Content-Type:
@@ -3353,27 +2874,591 @@ interactions:
Content-Type:
- application/json
method: GET
- uri: https://api.datadoghq.com/api/v1/slo/correction
+ uri: https://api.datadoghq.com/api/v1/synthetics/tests
+ response:
+ body:
+ string: '{"tests": [{"public_id": "9kt-p3e-he4", "name": "HTTP Test", "status":
+ "paused", "type": "api", "tags": [], "created_at": "2022-11-15T21:05:04.474438+00:00",
+ "modified_at": "2022-11-15T21:05:04.474438+00:00", "config": {"request": {"url":
+ "https://google.com", "method": "GET"}, "assertions": [{"operator": "lessThan",
+ "type": "responseTime", "target": 1000}, {"operator": "is", "type": "statusCode",
+ "target": 301}, {"operator": "is", "property": "content-type", "type": "header",
+ "target": "text/html; charset=UTF-8"}]}, "message": "Test synthetics ", "options":
+ {"retry": {"count": 1, "interval": 300}, "tick_every": 604800, "monitor_options":
+ {"include_tags": true, "notify_audit": false, "new_host_delay": 300, "on_missing_data":
+ "show_no_data", "renotify_interval": 120}, "monitor_priority": 3, "min_location_failed":
+ 1, "min_failure_duration": 120}, "locations": ["aws:ca-central-1"], "subtype":
+ "http", "monitor_id": 103095757, "creator": {"name": "Sherzod Karimov", "handle":
+ "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"}},
+ {"public_id": "e6x-9uf-7vc", "name": "Test-Trigger_Synthetics_tests_returns_OK_response-1666783270",
+ "status": "live", "type": "api", "tags": ["testing:api"], "created_at": "2022-11-15T21:05:04.493127+00:00",
+ "modified_at": "2022-11-15T21:05:04.493127+00:00", "config": {"request": {"certificate":
+ {"cert": {"updatedAt": "2020-10-16T09:23:24.857Z", "filename": "cert-filename"},
+ "key": {"updatedAt": "2020-10-16T09:23:24.857Z", "filename": "key-filename"}},
+ "url": "https://datadoghq.com", "headers": {"unique": "testtriggersyntheticstestsreturnsokresponse1666783270"},
+ "proxy": {"url": "https://datadoghq.com", "headers": {}}, "timeout": 10, "method":
+ "GET"}, "assertions": [{"operator": "is", "property": "{{ PROPERTY }}", "type":
+ "header", "target": "text/html"}, {"operator": "lessThan", "type": "responseTime",
+ "target": 2000}, {"operator": "validatesJSONPath", "type": "body", "target":
+ {"operator": "isNot", "targetValue": "0", "jsonPath": "topKey"}}], "configVariables":
+ [{"pattern": "content-type", "type": "text", "example": "content-type", "name":
+ "PROPERTY"}]}, "message": "BDD test payload: synthetics_api_http_test_payload.json",
+ "options": {"accept_self_signed": false, "retry": {"count": 3, "interval":
+ 10}, "min_location_failed": 1, "allow_insecure": true, "follow_redirects":
+ true, "min_failure_duration": 10, "monitor_priority": 5, "monitor_name": "Test-Trigger_Synthetics_tests_returns_OK_response-1666783270",
+ "tick_every": 60}, "locations": ["aws:us-east-2"], "subtype": "http", "monitor_id":
+ 103095761, "creator": {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com",
+ "email": "sherzod.karimov@datadoghq.com"}}, {"public_id": "shp-p4u-z5t", "name":
+ "TCP Test", "status": "live", "type": "api", "tags": ["foo:bar", "foo", "env:test"],
+ "created_at": "2022-11-15T21:05:04.516477+00:00", "modified_at": "2022-11-15T21:05:04.516477+00:00",
+ "config": {"request": {"host": "example.org", "port": 443}, "assertions":
+ [{"operator": "lessThan", "type": "responseTime", "target": 2000}]}, "message":
+ "Notify @pagerduty", "options": {"monitor_options": {"notify_audit": false,
+ "include_tags": true, "new_host_delay": 300, "on_missing_data": "show_no_data",
+ "renotify_interval": 0}, "tick_every": 900, "min_location_failed": 1}, "locations":
+ ["aws:eu-central-1"], "subtype": "tcp", "monitor_id": 103095759, "creator":
+ {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com", "email":
+ "sherzod.karimov@datadoghq.com"}}, {"public_id": "sac-hdw-2vm", "name": "SSL
+ Test", "status": "live", "type": "api", "tags": ["foo:bar", "foo", "env:test"],
+ "created_at": "2022-11-15T21:05:04.539022+00:00", "modified_at": "2022-11-15T21:05:04.539022+00:00",
+ "config": {"request": {"host": "example.org", "port": 443}, "assertions":
+ [{"operator": "isInMoreThan", "type": "certificate", "target": 30}]}, "message":
+ "Notify @pagerduty", "options": {"accept_self_signed": true, "monitor_options":
+ {"notify_audit": false, "include_tags": true, "new_host_delay": 300, "on_missing_data":
+ "show_no_data", "renotify_interval": 0}, "min_location_failed": 1, "tick_every":
+ 900}, "locations": ["aws:eu-central-1"], "subtype": "ssl", "monitor_id": 103095758,
+ "creator": {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com",
+ "email": "sherzod.karimov@datadoghq.com"}}, {"public_id": "4mg-pxb-ze4", "name":
+ "Browser Test (cloned)", "status": "live", "type": "browser", "tags": [],
+ "created_at": "2022-11-15T21:05:04.564415+00:00", "modified_at": "2022-11-15T21:05:04.564415+00:00",
+ "config": {"variables": [], "setCookie": "", "request": {"url": "https://docs.datadoghq.com",
+ "headers": {"test": "{{ TEST_VARIABLE }}", "test_two": "{{ TEST_VAR_LOCAL
+ }}"}, "method": "GET"}, "assertions": [], "configVariables": [{"pattern":
+ "TEST_VAR_LOCAL", "type": "text", "name": "TEST_VAR_LOCAL", "example": "TEST_VAR_LOCAL"},
+ {"type": "global", "id": "7478e601-cbe3-4a7d-babf-d48702b6b833", "name": "TEST_VARIABLE"}]},
+ "message": "", "options": {"enableSecurityTesting": false, "retry": {"count":
+ 0, "interval": 300}, "min_location_failed": 1, "min_failure_duration": 0,
+ "noScreenshot": false, "tick_every": 604800, "disableCsp": false, "disableCors":
+ false, "enableProfiling": false, "rumSettings": {"isEnabled": false}, "device_ids":
+ ["chrome.laptop_large", "firefox.laptop_large", "chrome.tablet", "chrome.mobile_small",
+ "firefox.mobile_small", "firefox.tablet"], "monitor_options": {"notify_audit":
+ false, "include_tags": true, "new_host_delay": 300, "on_missing_data": "show_no_data",
+ "renotify_interval": 0}, "ignoreServerCertificateError": false}, "locations":
+ ["aws:us-west-1"], "monitor_id": 103095760, "creator": {"name": "Sherzod Karimov",
+ "handle": "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"}},
+ {"public_id": "n65-rw3-5ta", "name": "DNS Test", "status": "live", "type":
+ "api", "tags": ["foo:bar", "foo", "env:test"], "created_at": "2022-11-15T21:05:04.640424+00:00",
+ "modified_at": "2022-11-15T21:05:04.640424+00:00", "config": {"request": {"host":
+ "example.org"}, "assertions": [{"operator": "is", "property": "A", "type":
+ "recordSome", "target": "0.0.0.0"}]}, "message": "Notify @pagerduty", "options":
+ {"monitor_options": {"notify_audit": false, "include_tags": true, "new_host_delay":
+ 300, "on_missing_data": "show_no_data", "renotify_interval": 0}, "tick_every":
+ 900, "min_location_failed": 1}, "locations": ["aws:eu-central-1"], "subtype":
+ "dns", "monitor_id": 103095763, "creator": {"name": "Sherzod Karimov", "handle":
+ "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"}},
+ {"public_id": "ct9-df9-7cy", "name": "Multistep API Test", "status": "live",
+ "type": "api", "tags": ["check_type:api", "env:test", "test:update"], "created_at":
+ "2022-11-15T21:05:04.669579+00:00", "modified_at": "2022-11-15T21:05:04.669579+00:00",
+ "config": {"steps": [{"retry": {"count": 0, "interval": 300}, "name": "Test
+ on datadoghq.com", "request": {"url": "https://datadoghq.com", "headers":
+ {"content-type": "text/html"}, "method": "GET"}, "subtype": "http", "allowFailure":
+ false, "extractedValues": [], "isCritical": true, "id": "vek-567-n38", "assertions":
+ [{"operator": "lessThan", "type": "responseTime", "target": 1000}, {"operator":
+ "is", "type": "statusCode", "target": 301}]}], "configVariables": []}, "message":
+ "", "options": {"monitor_options": {"notify_audit": false, "include_tags":
+ true, "new_host_delay": 300, "on_missing_data": "show_no_data", "renotify_interval":
+ 0}, "retry": {"count": 0, "interval": 300}, "min_location_failed": 1, "min_failure_duration":
+ 0, "tick_every": 604800}, "locations": ["aws:sa-east-1"], "subtype": "multi",
+ "monitor_id": 103095762, "creator": {"name": "Sherzod Karimov", "handle":
+ "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"}},
+ {"public_id": "xv9-vri-fqh", "name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1686121345",
+ "status": "paused", "type": "api", "tags": ["multistep"], "created_at": "2023-06-07T07:02:28.009429+00:00",
+ "modified_at": "2023-06-07T07:02:28.009429+00:00", "config": {"assertions":
+ [], "configVariables": [{"id": "24a74917-d729-4729-a809-0d05cf159e25", "name":
+ "VARIABLE_NAME", "type": "global"}], "steps": [{"allowFailure": true, "assertions":
+ [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
+ [{"field": "content-length", "name": "VAR_EXTRACT", "parser": {"type": "regex",
+ "value": ".*"}, "secure": true, "type": "http_header"}], "isCritical": false,
+ "name": "First api step", "request": {"allow_insecure": true, "basicAuth":
+ {"accessKey": "sigv4-access-key", "region": "sigv4-region", "secretKey": "sigv4-secret-key",
+ "serviceName": "sigv4-service-name", "sessionToken": "sigv4-session-token",
+ "type": "sigv4"}, "body": "this is a body", "certificate": {"cert": {"filename":
+ "Provided in Terraform config"}, "key": {"filename": "key"}}, "follow_redirects":
+ true, "headers": {"Accept": "application/json", "X-Datadog-Trace-ID": "123456789"},
+ "method": "GET", "proxy": {"headers": {"Accept": "application/json", "X-Datadog-Trace-ID":
+ "123456789"}, "url": "https://proxy.url"}, "query": {"foo": "bar"}, "timeout":
+ 30, "url": "https://www.datadoghq.com"}, "retry": {"count": 5, "interval":
+ 1000}, "subtype": "http", "id": "3xr-p38-qba"}, {"allowFailure": false, "assertions":
+ [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
+ [], "isCritical": false, "name": "Second api step", "request": {"allow_insecure":
+ true, "basicAuth": {"accessTokenUrl": "https://token.datadoghq.com", "audience":
+ "audience", "clientId": "client-id", "clientSecret": "client-secret", "scope":
+ "scope", "tokenApiAuthentication": "header", "type": "oauth-client"}, "body":
+ "", "follow_redirects": true, "method": "GET", "timeout": 30, "url": "https://docs.datadoghq.com"},
+ "subtype": "http", "id": "3ij-dfg-6tw"}, {"allowFailure": false, "assertions":
+ [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
+ [], "isCritical": false, "name": "Third api step", "request": {"allow_insecure":
+ true, "basicAuth": {"accessTokenUrl": "https://token.datadoghq.com", "audience":
+ "audience", "clientId": "client-id", "clientSecret": "client-secret", "password":
+ "password", "resource": "resource", "scope": "scope", "tokenApiAuthentication":
+ "body", "type": "oauth-rop", "username": "username"}, "body": "", "follow_redirects":
+ true, "method": "GET", "timeout": 30, "url": "https://docs.datadoghq.com"},
+ "subtype": "http", "id": "it3-n6p-xnp"}, {"allowFailure": false, "assertions":
+ [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
+ [], "isCritical": false, "name": "Fourth api step", "request": {"allow_insecure":
+ true, "basicAuth": {"password": "password", "type": "digest", "username":
+ "username"}, "body": "", "follow_redirects": true, "method": "GET", "timeout":
+ 30, "url": "https://docs.datadoghq.com"}, "subtype": "http", "id": "vid-d39-qgr"}]},
+ "message": "Notify @datadog.user", "options": {"min_location_failed": 1, "restricted_roles":
+ ["430aea7c-0501-11ee-9f44-da7ad0900002"], "tick_every": 900}, "locations":
+ ["aws:eu-central-1"], "subtype": "multi", "monitor_id": 121127083, "creator":
+ {"name": "Frog", "handle": "frog@datadoghq.com", "email": "frog@datadoghq.com"}}],
+ "total": 8}'
+ headers:
+ Content-Type:
+ - application/json
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: GET
+ uri: https://api.datadoghq.com/api/v1/synthetics/tests/api/9kt-p3e-he4
+ response:
+ body:
+ string: '{"public_id": "9kt-p3e-he4", "name": "HTTP Test", "status": "paused",
+ "type": "api", "tags": [], "created_at": "2022-11-15T21:05:04.474438+00:00",
+ "modified_at": "2022-11-15T21:05:04.474438+00:00", "config": {"request": {"url":
+ "https://google.com", "method": "GET"}, "assertions": [{"operator": "lessThan",
+ "type": "responseTime", "target": 1000}, {"operator": "is", "type": "statusCode",
+ "target": 301}, {"operator": "is", "property": "content-type", "type": "header",
+ "target": "text/html; charset=UTF-8"}]}, "message": "Test synthetics ", "options":
+ {"retry": {"count": 1, "interval": 300}, "tick_every": 604800, "monitor_options":
+ {"include_tags": true, "notify_audit": false, "new_host_delay": 300, "on_missing_data":
+ "show_no_data", "renotify_interval": 120}, "monitor_priority": 3, "min_location_failed":
+ 1, "min_failure_duration": 120}, "locations": ["aws:ca-central-1"], "subtype":
+ "http", "monitor_id": 103095757, "creator": {"name": "Sherzod Karimov", "handle":
+ "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"}}'
+ headers:
+ Content-Type:
+ - application/json
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: GET
+ uri: https://api.datadoghq.com/api/v1/synthetics/tests/api/e6x-9uf-7vc
+ response:
+ body:
+ string: '{"public_id": "e6x-9uf-7vc", "name": "Test-Trigger_Synthetics_tests_returns_OK_response-1666783270",
+ "status": "live", "type": "api", "tags": ["testing:api"], "created_at": "2022-11-15T21:05:04.493127+00:00",
+ "modified_at": "2022-11-15T21:05:04.493127+00:00", "config": {"request": {"certificate":
+ {"cert": {"updatedAt": "2020-10-16T09:23:24.857Z", "filename": "cert-filename"},
+ "key": {"updatedAt": "2020-10-16T09:23:24.857Z", "filename": "key-filename"}},
+ "url": "https://datadoghq.com", "headers": {"unique": "testtriggersyntheticstestsreturnsokresponse1666783270"},
+ "proxy": {"url": "https://datadoghq.com", "headers": {}}, "timeout": 10, "method":
+ "GET"}, "assertions": [{"operator": "is", "property": "{{ PROPERTY }}", "type":
+ "header", "target": "text/html"}, {"operator": "lessThan", "type": "responseTime",
+ "target": 2000}, {"operator": "validatesJSONPath", "type": "body", "target":
+ {"operator": "isNot", "targetValue": "0", "jsonPath": "topKey"}}], "configVariables":
+ [{"pattern": "content-type", "type": "text", "example": "content-type", "name":
+ "PROPERTY"}]}, "message": "BDD test payload: synthetics_api_http_test_payload.json",
+ "options": {"accept_self_signed": false, "retry": {"count": 3, "interval":
+ 10}, "min_location_failed": 1, "allow_insecure": true, "follow_redirects":
+ true, "min_failure_duration": 10, "monitor_priority": 5, "monitor_name": "Test-Trigger_Synthetics_tests_returns_OK_response-1666783270",
+ "tick_every": 60}, "locations": ["aws:us-east-2"], "subtype": "http", "monitor_id":
+ 103095761, "creator": {"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com",
+ "email": "sherzod.karimov@datadoghq.com"}}'
+ headers:
+ Content-Type:
+ - application/json
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: GET
+ uri: https://api.datadoghq.com/api/v1/synthetics/tests/api/shp-p4u-z5t
+ response:
+ body:
+ string: '{"public_id": "shp-p4u-z5t", "name": "TCP Test", "status": "live",
+ "type": "api", "tags": ["foo:bar", "foo", "env:test"], "created_at": "2022-11-15T21:05:04.516477+00:00",
+ "modified_at": "2022-11-15T21:05:04.516477+00:00", "config": {"request": {"host":
+ "example.org", "port": 443}, "assertions": [{"operator": "lessThan", "type":
+ "responseTime", "target": 2000}]}, "message": "Notify @pagerduty", "options":
+ {"monitor_options": {"notify_audit": false, "include_tags": true, "new_host_delay":
+ 300, "on_missing_data": "show_no_data", "renotify_interval": 0}, "tick_every":
+ 900, "min_location_failed": 1}, "locations": ["aws:eu-central-1"], "subtype":
+ "tcp", "monitor_id": 103095759, "creator": {"name": "Sherzod Karimov", "handle":
+ "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"}}'
+ headers:
+ Content-Type:
+ - application/json
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: GET
+ uri: https://api.datadoghq.com/api/v1/synthetics/tests/api/sac-hdw-2vm
+ response:
+ body:
+ string: '{"public_id": "sac-hdw-2vm", "name": "SSL Test", "status": "live",
+ "type": "api", "tags": ["foo:bar", "foo", "env:test"], "created_at": "2022-11-15T21:05:04.539022+00:00",
+ "modified_at": "2022-11-15T21:05:04.539022+00:00", "config": {"request": {"host":
+ "example.org", "port": 443}, "assertions": [{"operator": "isInMoreThan", "type":
+ "certificate", "target": 30}]}, "message": "Notify @pagerduty", "options":
+ {"accept_self_signed": true, "monitor_options": {"notify_audit": false, "include_tags":
+ true, "new_host_delay": 300, "on_missing_data": "show_no_data", "renotify_interval":
+ 0}, "min_location_failed": 1, "tick_every": 900}, "locations": ["aws:eu-central-1"],
+ "subtype": "ssl", "monitor_id": 103095758, "creator": {"name": "Sherzod Karimov",
+ "handle": "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"}}'
+ headers:
+ Content-Type:
+ - application/json
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: GET
+ uri: https://api.datadoghq.com/api/v1/synthetics/tests/browser/4mg-pxb-ze4
+ response:
+ body:
+ string: '{"public_id": "4mg-pxb-ze4", "name": "Browser Test (cloned)", "status":
+ "live", "type": "browser", "tags": [], "created_at": "2022-11-15T21:05:04.564415+00:00",
+ "modified_at": "2022-11-15T21:05:04.564415+00:00", "config": {"variables":
+ [], "setCookie": "", "request": {"url": "https://docs.datadoghq.com", "headers":
+ {"test": "{{ TEST_VARIABLE }}", "test_two": "{{ TEST_VAR_LOCAL }}"}, "method":
+ "GET"}, "assertions": [], "configVariables": [{"pattern": "TEST_VAR_LOCAL",
+ "type": "text", "name": "TEST_VAR_LOCAL", "example": "TEST_VAR_LOCAL"}, {"type":
+ "global", "id": "7478e601-cbe3-4a7d-babf-d48702b6b833", "name": "TEST_VARIABLE"}]},
+ "message": "", "options": {"enableSecurityTesting": false, "retry": {"count":
+ 0, "interval": 300}, "min_location_failed": 1, "min_failure_duration": 0,
+ "noScreenshot": false, "tick_every": 604800, "disableCsp": false, "disableCors":
+ false, "enableProfiling": false, "rumSettings": {"isEnabled": false}, "device_ids":
+ ["chrome.laptop_large", "firefox.laptop_large", "chrome.tablet", "chrome.mobile_small",
+ "firefox.mobile_small", "firefox.tablet"], "monitor_options": {"notify_audit":
+ false, "include_tags": true, "new_host_delay": 300, "on_missing_data": "show_no_data",
+ "renotify_interval": 0}, "ignoreServerCertificateError": false}, "locations":
+ ["aws:us-west-1"], "monitor_id": 103095760, "creator": {"name": "Sherzod Karimov",
+ "handle": "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"},
+ "steps": [{"name": "Type text on input \"s\"", "params": {"value": "api",
+ "element": {"url": "https://docs.datadoghq.com/", "multiLocator": {"ab": "/*[local-name()=\"html\"][1]/*[local-name()=\"body\"][1]/*[local-name()=\"section\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"form\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"span\"][1]/*[local-name()=\"input\"][2]",
+ "at": "/descendant::*[@name=\"s\"]", "cl": "/descendant::*[contains(concat(''
+ '', normalize-space(@class), '' ''), \" docssearch-input \") and contains(concat(''
+ '', normalize-space(@class), '' ''), \" ds-input \")]", "co": "[{\"text\":\"search
+ documentation...\",\"textType\":\"placeholder\"}]", "ro": "//*[@name=\"s\"]",
+ "clt": "/descendant::*[contains(concat('' '', normalize-space(@class), ''
+ ''), \" docssearch-input \") and contains(concat('' '', normalize-space(@class),
+ '' ''), \" ds-input \")]"}, "targetOuterHTML": "API
+ \u00bb AuthN Mappings"}}, "type": "click", "allowFailure": false, "isCritical":
+ true, "noScreenshot": false}, {"name": "Click on link \"Go\"", "params": {"element":
+ {"url": "https://docs.datadoghq.com/api/latest/authn-mappings/", "multiLocator":
+ {"ab": "/*[local-name()=\"html\"][1]/*[local-name()=\"body\"][1]/*[local-name()=\"div\"][3]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][2]/*[local-name()=\"div\"][4]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][3]/*[local-name()=\"ul\"][1]/*[local-name()=\"li\"][4]/*[local-name()=\"a\"][1]",
+ "at": "/*[local-name()=\"html\"]/*[local-name()=\"body\"]/*[local-name()=\"div\"][3]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][2]/*[local-name()=\"div\"][4]/descendant::*[@href=\"?code-lang=go#\"]",
+ "cl": "/descendant::*[contains(concat('' '', normalize-space(@class), '' ''),
+ \" main-api \")]/*[local-name()=\"div\"][4]/descendant::*[contains(concat(''
+ '', normalize-space(@class), '' ''), \" code-lang-list-container \")]/*[local-name()=\"li\"][4]/descendant::*[contains(concat(''
+ '', normalize-space(@class), '' ''), \" js-code-example-link \")]", "co":
+ "[{\"text\":\"go\",\"textType\":\"directText\"},{\"relation\":\"PARENT OF\",\"tagName\":\"DIV\",\"text\":\"
+ get an authn mapping by uuid\",\"textType\":\"innerText\"}]", "ro": null,
+ "clt": "/descendant::*[contains(concat('' '', normalize-space(@class), ''
+ ''), \" main-api \")]/*[local-name()=\"div\"][4]/descendant::*[contains(concat(''
+ '', normalize-space(@class), '' ''), \" code-lang-list-container \")]/descendant::*[text()[normalize-space(translate(.,
+ ''ABCDEFGHIJKLMNOPQRSTUVWXYZ\u00c0\u00c1\u00c2\u00c3\u00c4\u00c5\u00c6\u00c7\u00c8\u00c9\u00ca\u00cb\u00cc\u00cd\u00ce\u00cf\u00d0\u00d1\u00d2\u00d3\u00d4\u00d5\u00d6\u00d8\u00d9\u00da\u00db\u00dc\u00dd\u00de\u0178\u017d\u0160\u0152'',
+ ''abcdefghijklmnopqrstuvwxyz\u00e0\u00e1\u00e2\u00e3\u00e4\u00e5\u00e6\u00e7\u00e8\u00e9\u00ea\u00eb\u00ec\u00ed\u00ee\u00ef\u00f0\u00f1\u00f2\u00f3\u00f4\u00f5\u00f6\u00f8\u00f9\u00fa\u00fb\u00fc\u00fd\u00fe\u00ff\u017e\u0161\u0153''))
+ = \"go\"]]"}, "targetOuterHTML": "Go"}}, "type": "click",
+ "allowFailure": false, "isCritical": true, "noScreenshot": false}, {"name":
+ "Click on link \"Python [beta]\"", "params": {"element": {"url": "https://docs.datadoghq.com/api/latest/authn-mappings/?code-lang=go",
+ "multiLocator": {"ab": "/*[local-name()=\"html\"][1]/*[local-name()=\"body\"][1]/*[local-name()=\"div\"][3]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][2]/*[local-name()=\"div\"][4]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][3]/*[local-name()=\"ul\"][1]/*[local-name()=\"li\"][3]/*[local-name()=\"a\"][1]",
+ "at": "/*[local-name()=\"html\"]/*[local-name()=\"body\"]/*[local-name()=\"div\"][3]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][2]/*[local-name()=\"div\"][4]/descendant::*[@href=\"?code-lang=ruby#\"]",
+ "cl": "/descendant::*[contains(concat('' '', normalize-space(@class), '' ''),
+ \" main-api \")]/*[local-name()=\"div\"][4]/descendant::*[contains(concat(''
+ '', normalize-space(@class), '' ''), \" code-lang-list-container \")]/*[local-name()=\"li\"][3]/descendant::*[contains(concat(''
+ '', normalize-space(@class), '' ''), \" js-code-example-link \")]", "co":
+ "[{\"text\":\"ruby\",\"textType\":\"directText\"},{\"relation\":\"PARENT OF\",\"tagName\":\"DIV\",\"text\":\"
+ get an authn mapping by uuid\",\"textType\":\"innerText\"}]", "ro": null,
+ "clt": "/descendant::*[contains(concat('' '', normalize-space(@class), ''
+ ''), \" main-api \")]/*[local-name()=\"div\"][4]/descendant::*[contains(concat(''
+ '', normalize-space(@class), '' ''), \" code-lang-list-container \")]/descendant::*[text()[normalize-space(translate(.,
+ ''ABCDEFGHIJKLMNOPQRSTUVWXYZ\u00c0\u00c1\u00c2\u00c3\u00c4\u00c5\u00c6\u00c7\u00c8\u00c9\u00ca\u00cb\u00cc\u00cd\u00ce\u00cf\u00d0\u00d1\u00d2\u00d3\u00d4\u00d5\u00d6\u00d8\u00d9\u00da\u00db\u00dc\u00dd\u00de\u0178\u017d\u0160\u0152'',
+ ''abcdefghijklmnopqrstuvwxyz\u00e0\u00e1\u00e2\u00e3\u00e4\u00e5\u00e6\u00e7\u00e8\u00e9\u00ea\u00eb\u00ec\u00ed\u00ee\u00ef\u00f0\u00f1\u00f2\u00f3\u00f4\u00f5\u00f6\u00f8\u00f9\u00fa\u00fb\u00fc\u00fd\u00fe\u00ff\u017e\u0161\u0153''))
+ = \"ruby\"]]"}, "targetOuterHTML": "Ruby"}}, "type":
+ "click", "allowFailure": false, "isCritical": true, "noScreenshot": false},
+ {"name": "Click on button \"Copy\"", "params": {"element": {"url": "https://docs.datadoghq.com/api/latest/authn-mappings/?code-lang=ruby",
+ "multiLocator": {"ab": "/*[local-name()=\"html\"][1]/*[local-name()=\"body\"][1]/*[local-name()=\"div\"][3]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][2]/*[local-name()=\"div\"][4]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][3]/*[local-name()=\"div\"][3]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][2]/*[local-name()=\"h5\"][1]/*[local-name()=\"button\"][1]",
+ "at": "", "cl": "/descendant::*[contains(concat('' '', normalize-space(@class),
+ '' ''), \" main-api \")]/*[local-name()=\"div\"][4]/descendant::*[contains(concat(''
+ '', normalize-space(@class), '' ''), \" js-code-snippet-wrapper \")]/*[local-name()=\"div\"][3]/descendant::*[contains(concat(''
+ '', normalize-space(@class), '' ''), \" btn \")]", "co": "[{\"text\":\"get
+ an authn mapping by uuid\",\"textType\":\"directText\"},{\"relation\":\"PARENT
+ OF\",\"tagName\":\"SPAN\",\"text\":\"# get an authn mapping by uuid returns
+ \\\"ok\\\" response \",\"textType\":\"innerText\"}]", "ro": null, "clt": "/descendant::*[contains(concat(''
+ '', normalize-space(@class), '' ''), \" main-api \")]/*[local-name()=\"div\"][4]/descendant::*[contains(concat(''
+ '', normalize-space(@class), '' ''), \" js-code-snippet-wrapper \")]/*[local-name()=\"div\"][3]/descendant::*[contains(concat(''
+ '', normalize-space(@class), '' ''), \" btn \")]"}, "targetOuterHTML": ""}}, "type": "click", "allowFailure": false, "isCritical":
+ true, "noScreenshot": false}]}'
+ headers:
+ Content-Type:
+ - application/json
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: GET
+ uri: https://api.datadoghq.com/api/v1/synthetics/tests/api/n65-rw3-5ta
response:
body:
- string: '{"data": [{"type": "correction", "id": "999b94e0-bf74-11ed-a4ee-da7ad0902002",
- "attributes": {"slo_id": "ae04001ea55f52f6ae4b85d9b1023909", "start": 1678255200,
- "end": 1678355280, "description": "", "category": "Other", "timezone": "UTC",
- "created_at": 1678474303, "modified_at": 1678474303, "rrule": null, "duration":
- null, "creator": {"data": {"type": "users", "id": "fa017a38-bfcb-11eb-a4d7-da7ad0900002",
- "attributes": {"uuid": "fa017a38-bfcb-11eb-a4d7-da7ad0900002", "handle": "support-datadogsynccliustestorg",
- "email": "support-user-prod@datadoghq.com", "name": "Datadog Support", "icon":
- "https://secure.gravatar.com/avatar/e6952b5f29fe2d996cf4e63f40db9e71?s=48&d=retro"}}},
- "modifier": null}}, {"type": "correction", "id": "381d1620-bf70-11ed-acb8-da7ad0902002",
- "attributes": {"slo_id": "ba72d10835d75e0c8910597144f3733a", "start": 1678255200,
- "end": 1678339140, "description": "", "category": "Other", "timezone": "UTC",
- "created_at": 1678472421, "modified_at": 1678472421, "rrule": null, "duration":
- null, "creator": {"data": {"type": "users", "id": "fa017a38-bfcb-11eb-a4d7-da7ad0900002",
- "attributes": {"uuid": "fa017a38-bfcb-11eb-a4d7-da7ad0900002", "handle": "support-datadogsynccliustestorg",
- "email": "support-user-prod@datadoghq.com", "name": "Datadog Support", "icon":
- "https://secure.gravatar.com/avatar/e6952b5f29fe2d996cf4e63f40db9e71?s=48&d=retro"}}},
- "modifier": null}}], "meta": {"page": {"total_count": 2, "total_filtered_count":
- 2}}}'
+ string: '{"public_id": "n65-rw3-5ta", "name": "DNS Test", "status": "live",
+ "type": "api", "tags": ["foo:bar", "foo", "env:test"], "created_at": "2022-11-15T21:05:04.640424+00:00",
+ "modified_at": "2022-11-15T21:05:04.640424+00:00", "config": {"request": {"host":
+ "example.org"}, "assertions": [{"operator": "is", "property": "A", "type":
+ "recordSome", "target": "0.0.0.0"}]}, "message": "Notify @pagerduty", "options":
+ {"monitor_options": {"notify_audit": false, "include_tags": true, "new_host_delay":
+ 300, "on_missing_data": "show_no_data", "renotify_interval": 0}, "tick_every":
+ 900, "min_location_failed": 1}, "locations": ["aws:eu-central-1"], "subtype":
+ "dns", "monitor_id": 103095763, "creator": {"name": "Sherzod Karimov", "handle":
+ "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"}}'
+ headers:
+ Content-Type:
+ - application/json
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: GET
+ uri: https://api.datadoghq.com/api/v1/synthetics/tests/api/ct9-df9-7cy
+ response:
+ body:
+ string: '{"public_id": "ct9-df9-7cy", "name": "Multistep API Test", "status":
+ "live", "type": "api", "tags": ["check_type:api", "env:test", "test:update"],
+ "created_at": "2022-11-15T21:05:04.669579+00:00", "modified_at": "2022-11-15T21:05:04.669579+00:00",
+ "config": {"steps": [{"retry": {"count": 0, "interval": 300}, "name": "Test
+ on datadoghq.com", "request": {"url": "https://datadoghq.com", "headers":
+ {"content-type": "text/html"}, "method": "GET"}, "subtype": "http", "allowFailure":
+ false, "extractedValues": [], "isCritical": true, "id": "vek-567-n38", "assertions":
+ [{"operator": "lessThan", "type": "responseTime", "target": 1000}, {"operator":
+ "is", "type": "statusCode", "target": 301}]}], "configVariables": []}, "message":
+ "", "options": {"monitor_options": {"notify_audit": false, "include_tags":
+ true, "new_host_delay": 300, "on_missing_data": "show_no_data", "renotify_interval":
+ 0}, "retry": {"count": 0, "interval": 300}, "min_location_failed": 1, "min_failure_duration":
+ 0, "tick_every": 604800}, "locations": ["aws:sa-east-1"], "subtype": "multi",
+ "monitor_id": 103095762, "creator": {"name": "Sherzod Karimov", "handle":
+ "sherzod.karimov@datadoghq.com", "email": "sherzod.karimov@datadoghq.com"}}'
+ headers:
+ Content-Type:
+ - application/json
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: GET
+ uri: https://api.datadoghq.com/api/v1/synthetics/tests/api/xv9-vri-fqh
+ response:
+ body:
+ string: '{"public_id": "xv9-vri-fqh", "name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1686121345",
+ "status": "paused", "type": "api", "tags": ["multistep"], "created_at": "2023-06-07T07:02:28.009429+00:00",
+ "modified_at": "2023-06-07T07:02:28.009429+00:00", "config": {"assertions":
+ [], "configVariables": [{"id": "24a74917-d729-4729-a809-0d05cf159e25", "name":
+ "VARIABLE_NAME", "type": "global"}], "steps": [{"allowFailure": true, "assertions":
+ [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
+ [{"field": "content-length", "name": "VAR_EXTRACT", "parser": {"type": "regex",
+ "value": ".*"}, "secure": true, "type": "http_header"}], "isCritical": false,
+ "name": "First api step", "request": {"allow_insecure": true, "basicAuth":
+ {"accessKey": "sigv4-access-key", "region": "sigv4-region", "secretKey": "sigv4-secret-key",
+ "serviceName": "sigv4-service-name", "sessionToken": "sigv4-session-token",
+ "type": "sigv4"}, "body": "this is a body", "certificate": {"cert": {"filename":
+ "Provided in Terraform config"}, "key": {"filename": "key"}}, "follow_redirects":
+ true, "headers": {"Accept": "application/json", "X-Datadog-Trace-ID": "123456789"},
+ "method": "GET", "proxy": {"headers": {"Accept": "application/json", "X-Datadog-Trace-ID":
+ "123456789"}, "url": "https://proxy.url"}, "query": {"foo": "bar"}, "timeout":
+ 30, "url": "https://www.datadoghq.com"}, "retry": {"count": 5, "interval":
+ 1000}, "subtype": "http", "id": "3xr-p38-qba"}, {"allowFailure": false, "assertions":
+ [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
+ [], "isCritical": false, "name": "Second api step", "request": {"allow_insecure":
+ true, "basicAuth": {"accessTokenUrl": "https://token.datadoghq.com", "audience":
+ "audience", "clientId": "client-id", "clientSecret": "client-secret", "scope":
+ "scope", "tokenApiAuthentication": "header", "type": "oauth-client"}, "body":
+ "", "follow_redirects": true, "method": "GET", "timeout": 30, "url": "https://docs.datadoghq.com"},
+ "subtype": "http", "id": "3ij-dfg-6tw"}, {"allowFailure": false, "assertions":
+ [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
+ [], "isCritical": false, "name": "Third api step", "request": {"allow_insecure":
+ true, "basicAuth": {"accessTokenUrl": "https://token.datadoghq.com", "audience":
+ "audience", "clientId": "client-id", "clientSecret": "client-secret", "password":
+ "password", "resource": "resource", "scope": "scope", "tokenApiAuthentication":
+ "body", "type": "oauth-rop", "username": "username"}, "body": "", "follow_redirects":
+ true, "method": "GET", "timeout": 30, "url": "https://docs.datadoghq.com"},
+ "subtype": "http", "id": "it3-n6p-xnp"}, {"allowFailure": false, "assertions":
+ [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
+ [], "isCritical": false, "name": "Fourth api step", "request": {"allow_insecure":
+ true, "basicAuth": {"password": "password", "type": "digest", "username":
+ "username"}, "body": "", "follow_redirects": true, "method": "GET", "timeout":
+ 30, "url": "https://docs.datadoghq.com"}, "subtype": "http", "id": "vid-d39-qgr"}]},
+ "message": "Notify @datadog.user", "options": {"min_location_failed": 1, "restricted_roles":
+ ["430aea7c-0501-11ee-9f44-da7ad0900002"], "tick_every": 900}, "locations":
+ ["aws:eu-central-1"], "subtype": "multi", "monitor_id": 121127083, "creator":
+ {"name": "Frog", "handle": "frog@datadoghq.com", "email": "frog@datadoghq.com"}}'
+ headers:
+ Content-Type:
+ - application/json
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: GET
+ uri: https://api.datadoghq.com/api/v2/incidents?page%5Boffset%5D=0&page%5Bsize%5D=100
+ response:
+ body:
+ string: '{"data": [{"type": "incidents", "id": "ccfe999c-e735-5dee-9a2c-aec0078fd0a7",
+ "attributes": {"public_id": 1, "incident_type_uuid": null, "title": "Test
+ Incident", "resolved": null, "customer_impact_scope": null, "customer_impact_start":
+ null, "customer_impact_end": null, "customer_impacted": false, "notification_handles":
+ [], "last_modified_by_uuid": "0dd23ab8-984f-11ee-a259-160bb50d121a", "created":
+ "2023-12-11T18:32:09.013675+00:00", "modified": "2023-12-11T18:32:09.013675+00:00",
+ "detected": "2023-12-11T18:32:09.000380+00:00", "created_by_uuid": "0dd23ab8-984f-11ee-a259-160bb50d121a",
+ "creation_idempotency_key": null, "customer_impact_duration": 0, "time_to_detect":
+ 0, "time_to_repair": 0, "time_to_internal_response": 0, "time_to_resolve":
+ 0, "archived": null, "fields": {"severity": {"type": "dropdown", "value":
+ "UNKNOWN"}, "state": {"type": "dropdown", "value": "active"}, "detection_method":
+ {"type": "dropdown", "value": "unknown"}, "root_cause": {"type": "textbox",
+ "value": null}, "summary": {"type": "textbox", "value": null}, "services":
+ {"type": "autocomplete", "value": null}, "teams": {"type": "autocomplete",
+ "value": null}}, "field_analytics": null, "severity": "UNKNOWN", "state":
+ "active", "non_datadog_creator": null, "visibility": "organization", "case_id":
+ null}, "relationships": {"created_by_user": {"data": {"type": "users", "id":
+ "0dd23ab8-984f-11ee-a259-160bb50d121a"}}, "last_modified_by_user": {"data":
+ {"type": "users", "id": "0dd23ab8-984f-11ee-a259-160bb50d121a"}}, "commander_user":
+ {"data": {"type": "users", "id": "0dd23ab8-984f-11ee-a259-160bb50d121a"}},
+ "user_defined_fields": {"data": [{"type": "user_defined_field", "id": "8e8f5981-3d41-509d-8619-d913ffce9bd7"},
+ {"type": "user_defined_field", "id": "a53f4622-9f24-513a-8a0a-a07b394308ab"},
+ {"type": "user_defined_field", "id": "f40e5f76-862d-5093-b658-de46f6c09d5f"},
+ {"type": "user_defined_field", "id": "c5ed3c02-d2b2-5624-82a1-8ec1a1a685ce"},
+ {"type": "user_defined_field", "id": "b0e362e5-7a16-58e5-ae0a-6a0369e5a4ff"},
+ {"type": "user_defined_field", "id": "2465b7f0-40fa-5d22-a8aa-a7f53dced432"},
+ {"type": "user_defined_field", "id": "5cd92c74-f93c-55ff-a9b7-cb05637fc327"}]},
+ "integrations": {"data": []}, "attachments": {"data": []}, "responders": {"data":
+ [{"type": "incident_responders", "id": "148432c6-8104-52ea-993a-6d8eb2b9d340"}]},
+ "impacts": {"data": []}}}, {"type": "incidents", "id": "6ec747d8-f519-5f38-a401-83c4eb77348d",
+ "attributes": {"public_id": 2, "incident_type_uuid": null, "title": "Example-Incident",
+ "resolved": null, "customer_impact_scope": null, "customer_impact_start":
+ null, "customer_impact_end": null, "customer_impacted": false, "notification_handles":
+ null, "last_modified_by_uuid": "2d0d2076-bfcd-11eb-a4d7-da7ad0900002", "created":
+ "2023-12-11T18:39:17.211433+00:00", "modified": "2023-12-11T18:39:17.211433+00:00",
+ "detected": "2023-12-11T18:39:17.200357+00:00", "created_by_uuid": "2d0d2076-bfcd-11eb-a4d7-da7ad0900002",
+ "creation_idempotency_key": null, "customer_impact_duration": 0, "time_to_detect":
+ 0, "time_to_repair": 0, "time_to_internal_response": 0, "time_to_resolve":
+ 0, "archived": null, "fields": {"severity": {"type": "dropdown", "value":
+ "UNKNOWN"}, "state": {"type": "dropdown", "value": "resolved"}, "detection_method":
+ {"type": "dropdown", "value": "unknown"}, "root_cause": {"type": "textbox",
+ "value": null}, "summary": {"type": "textbox", "value": null}, "services":
+ {"type": "autocomplete", "value": null}, "teams": {"type": "autocomplete",
+ "value": null}}, "field_analytics": null, "severity": "UNKNOWN", "state":
+ "resolved", "non_datadog_creator": null, "visibility": "organization", "case_id":
+ null}, "relationships": {"created_by_user": {"data": {"type": "users", "id":
+ "2d0d2076-bfcd-11eb-a4d7-da7ad0900002"}}, "last_modified_by_user": {"data":
+ {"type": "users", "id": "2d0d2076-bfcd-11eb-a4d7-da7ad0900002"}}, "commander_user":
+ {"data": null}, "user_defined_fields": {"data": [{"type": "user_defined_field",
+ "id": "8e8f5981-3d41-509d-8619-d913ffce9bd7"}, {"type": "user_defined_field",
+ "id": "a53f4622-9f24-513a-8a0a-a07b394308ab"}, {"type": "user_defined_field",
+ "id": "f40e5f76-862d-5093-b658-de46f6c09d5f"}, {"type": "user_defined_field",
+ "id": "c5ed3c02-d2b2-5624-82a1-8ec1a1a685ce"}, {"type": "user_defined_field",
+ "id": "b0e362e5-7a16-58e5-ae0a-6a0369e5a4ff"}, {"type": "user_defined_field",
+ "id": "2465b7f0-40fa-5d22-a8aa-a7f53dced432"}, {"type": "user_defined_field",
+ "id": "5cd92c74-f93c-55ff-a9b7-cb05637fc327"}]}, "integrations": {"data":
+ []}, "attachments": {"data": []}, "responders": {"data": []}, "impacts": {"data":
+ []}}}], "meta": {"pagination": {"offset": 0, "next_offset": 2, "size": 2}}}'
headers:
Content-Type:
- application/json
diff --git a/tests/integration/cassettes/test_cli/TestCli.test_sync.frozen b/tests/integration/cassettes/test_cli/TestCli.test_sync.frozen
index 7cc7342f..a5b45a64 100644
--- a/tests/integration/cassettes/test_cli/TestCli.test_sync.frozen
+++ b/tests/integration/cassettes/test_cli/TestCli.test_sync.frozen
@@ -1 +1 @@
-2023-12-19T16:53:22.126282+00:00
\ No newline at end of file
+2023-12-26T19:37:28.406985+00:00
\ No newline at end of file
diff --git a/tests/integration/cassettes/test_cli/TestCli.test_sync.yaml b/tests/integration/cassettes/test_cli/TestCli.test_sync.yaml
index 9cf44a6a..c314cf65 100644
--- a/tests/integration/cassettes/test_cli/TestCli.test_sync.yaml
+++ b/tests/integration/cassettes/test_cli/TestCli.test_sync.yaml
@@ -12,9 +12,9 @@ interactions:
uri: https://api.datadoghq.eu/api/v2/roles?page%5Bnumber%5D=0&page%5Bsize%5D=100
response:
body:
- string: '{"data": [{"type": "roles", "id": "138d5c0c-bfcc-11eb-8e11-da7ad0900005",
- "attributes": {"name": "Datadog Admin Role", "created_at": "2021-05-28T15:47:58.719345+00:00",
- "modified_at": "2023-05-03T14:57:19.540899+00:00", "user_count": 5}, "relationships":
+ string: '{"data": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005",
+ "attributes": {"name": "Datadog Admin Role", "created_at": "2023-12-19T18:05:48.353537+00:00",
+ "modified_at": "2023-12-22T18:58:25.532811+00:00", "user_count": 4}, "relationships":
{"permissions": {"data": [{"type": "permissions", "id": "f1666372-d87d-11e8-acac-6be484ba794a"},
{"type": "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, {"type":
"permissions", "id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": "permissions",
@@ -135,59 +135,8 @@ interactions:
{"type": "permissions", "id": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type":
"permissions", "id": "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions",
"id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id":
- "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}]}}},
- {"type": "roles", "id": "33844e56-9e88-11ee-97ed-da7ad0900005", "attributes":
- {"name": "Datadog Read Only Role", "created_at": "2023-12-19T16:03:51.210119+00:00",
- "modified_at": "2023-12-19T16:03:51.252287+00:00", "user_count": 0}, "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": "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": "72d1e2fe-1cd8-11ed-a26b-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": "94783714-4e9b-11ee-959b-da7ad0900005"},
- {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}],
- "meta": {"page": {"total_count": 2, "total_filtered_count": 2}}}'
- headers: {}
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: GET
- uri: https://api.datadoghq.eu/api/v1/synthetics/variables
- response:
- body:
- string: '{"variables": []}'
+ "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}]}}}],
+ "meta": {"page": {"total_count": 1, "total_filtered_count": 1}}}'
headers: {}
status:
code: 200
@@ -205,82 +154,73 @@ interactions:
uri: https://api.datadoghq.eu/api/v2/users?page%5Bnumber%5D=0&page%5Bsize%5D=100
response:
body:
- string: '{"data": [{"type": "users", "id":
- "1c4cd1ea-984f-11ee-9154-16f3603389a6", "attributes": {"name": "Aldrick Castro",
- "handle": "aldrick.castro@datadoghq.com", "created_at": "2023-12-11T18:00:03.969923+00:00",
- "modified_at": "2023-12-11T18:55:19.043970+00:00", "email": "aldrick.castro@datadoghq.com",
- "icon": "https://secure.gravatar.com/avatar/c4b2f071a7e83e98302afbc9889cfc18?s=48&d=retro",
+ string: '{"data": [{"type": "users", "id": "dc00e597-9e99-11ee-aa09-5628ff9a83db",
+ "attributes": {"name": "Aldrick Castro", "handle": "aldrick.castro@datadoghq.com",
+ "created_at": "2023-12-19T18:10:15.329617+00:00", "modified_at": "2023-12-19T19:09:21.769743+00:00",
+ "email": "aldrick.castro@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/c4b2f071a7e83e98302afbc9889cfc18?s=48&d=retro",
"title": "", "verified": true, "service_account": false, "disabled": false,
"allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
- {"roles": {"data": [{"type": "roles", "id": "138d5c0c-bfcc-11eb-8e11-da7ad0900005"}]},
- "org": {"data": {"type": "orgs", "id": "13865f06-bfcc-11eb-8e11-da7ad0900005"}}}}, {"type": "users", "id":
- "3af5af64-bfcd-11eb-b483-da7ad0900005", "attributes": {"name": "Frog", "handle":
- "frog@datadoghq.com", "created_at": "2021-05-28T15:56:14.326839+00:00", "modified_at":
- "2023-03-21T15:15:23.136706+00:00", "email": "frog@datadoghq.com", "icon":
- "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro",
+ {"roles": {"data": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}},
+ {"type": "users", "id": "dc007960-9e99-11ee-a2db-ca9976f8cdd6", "attributes":
+ {"name": "", "handle": "frog@datadoghq.com", "created_at": "2023-12-19T18:10:15.326776+00:00",
+ "modified_at": "2023-12-19T18:15:23.723082+00:00", "email": "frog@datadoghq.com",
+ "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro",
"title": "", "verified": true, "service_account": false, "disabled": false,
"allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
- {"roles": {"data": [{"type": "roles", "id": "138d5c0c-bfcc-11eb-8e11-da7ad0900005"}]},
- "org": {"data": {"type": "orgs", "id": "13865f06-bfcc-11eb-8e11-da7ad0900005"}}}},
- {"type": "users", "id": "edd03150-c562-11eb-bf1f-da7ad0900005", "attributes":
- {"name": "", "handle": "karimovj@gmail.com", "created_at": "2021-06-04T18:30:25.220601+00:00",
- "modified_at": "2021-06-07T16:05:58.627697+00:00", "email": "karimovj@gmail.com",
- "icon": "https://secure.gravatar.com/avatar/4df2a0457aa2d2f4bff089e88d1ed8e4?s=48&d=retro",
+ {"roles": {"data": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}},
+ {"type": "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "attributes":
+ {"name": "CI Service Account", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "created_at": "2023-12-19T18:16:46.899841+00:00", "modified_at": "2023-12-26T19:35:06.442650+00:00",
+ "email": "frog@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro",
+ "title": "", "verified": true, "service_account": true, "disabled": false,
+ "allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
+ {"roles": {"data": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}},
+ {"type": "users", "id": "29e24184-a0fc-11ee-8daf-aea76f621e57", "attributes":
+ {"name": "Kevin Zou", "handle": "kevin.zou@datadoghq.com", "created_at": "2023-12-22T18:58:58.996081+00:00",
+ "modified_at": "2023-12-26T19:37:17.685824+00:00", "email": "kevin.zou@datadoghq.com",
+ "icon": "https://secure.gravatar.com/avatar/927e28676d353bcee29248ed2ca7ad9c?s=48&d=retro",
"title": "", "verified": false, "service_account": false, "disabled": true,
"allowed_login_methods": [], "status": "Disabled", "mfa_enabled": false},
- "relationships": {"roles": {"data": []}, "org": {"data": {"type": "orgs",
- "id": "13865f06-bfcc-11eb-8e11-da7ad0900005"}}}}, {"type": "users", "id":
- "3f974eb6-e9ec-11ed-8dce-e61a9bb2f626", "attributes": {"name": "Kevin Zou",
- "handle": "kevin.zou@datadoghq.com", "created_at": "2023-05-03T19:54:00.680883+00:00",
- "modified_at": "2023-05-04T15:26:11.259395+00:00", "email": "kevin.zou@datadoghq.com",
- "icon": "https://secure.gravatar.com/avatar/927e28676d353bcee29248ed2ca7ad9c?s=48&d=retro",
- "title": "", "verified": true, "service_account": false, "disabled": false,
- "allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
- {"roles": {"data": [{"type": "roles", "id": "138d5c0c-bfcc-11eb-8e11-da7ad0900005"}]},
- "org": {"data": {"type": "orgs", "id": "13865f06-bfcc-11eb-8e11-da7ad0900005"}}}},
- {"type": "users", "id": "5a322106-c891-11eb-873a-da7ad0900005", "attributes":
- {"name": "test-user", "handle": "new@example.com", "created_at": "2021-06-08T19:40:17.395117+00:00",
- "modified_at": "2023-12-19T16:52:40.546562+00:00", "email": "new@example.com",
+ "relationships": {"roles": {"data": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}},
+ {"type": "users", "id": "16646c0f-a0fc-11ee-ac60-ced34c8fb548", "attributes":
+ {"name": "test-user", "handle": "new@example.com", "created_at": "2023-12-22T18:58:26.294705+00:00",
+ "modified_at": "2023-12-26T19:35:21.386603+00:00", "email": "new@example.com",
"icon": "https://secure.gravatar.com/avatar/b681d72feaf8bf6a93d9a8ab86679ec3?s=48&d=retro",
"title": "", "verified": false, "service_account": false, "disabled": true,
"allowed_login_methods": [], "status": "Disabled", "mfa_enabled": false},
"relationships": {"roles": {"data": []}, "org": {"data": {"type": "orgs",
- "id": "13865f06-bfcc-11eb-8e11-da7ad0900005"}}}}, {"type": "users", "id":
- "8538c2fe-c7cb-11eb-8f0a-da7ad0900005", "attributes": {"name": "Noueman Khalikine",
- "handle": "noueman.khalikine@datadoghq.com", "created_at": "2021-06-07T20:04:09.228318+00:00",
- "modified_at": "2023-03-21T18:18:05.876918+00:00", "email": "noueman.khalikine@datadoghq.com",
+ "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}}, {"type": "users", "id":
+ "2a4ba4d1-a0fc-11ee-ac60-ced34c8fb548", "attributes": {"name": "Noueman Khalikine",
+ "handle": "noueman.khalikine@datadoghq.com", "created_at": "2023-12-22T18:58:59.686746+00:00",
+ "modified_at": "2023-12-26T19:37:18.091536+00:00", "email": "noueman.khalikine@datadoghq.com",
"icon": "https://secure.gravatar.com/avatar/92d6421ea95d9f7b8d60c8270c95d84a?s=48&d=retro",
- "title": "", "verified": true, "service_account": false, "disabled": false,
- "allowed_login_methods": [], "status": "Active", "mfa_enabled": false}, "relationships":
- {"roles": {"data": [{"type": "roles", "id": "138d5c0c-bfcc-11eb-8e11-da7ad0900005"}]},
- "org": {"data": {"type": "orgs", "id": "13865f06-bfcc-11eb-8e11-da7ad0900005"}}}},
- {"type": "users", "id": "1458158c-bfcc-11eb-8e11-da7ad0900005", "attributes":
+ "title": "", "verified": false, "service_account": false, "disabled": true,
+ "allowed_login_methods": [], "status": "Disabled", "mfa_enabled": false},
+ "relationships": {"roles": {"data": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}},
+ {"type": "users", "id": "3d1c4acf-9e99-11ee-aa8a-52121f0cd5ec", "attributes":
{"name": "Sherzod Karimov", "handle": "sherzod.karimov@datadoghq.com", "created_at":
- "2021-05-28T15:48:00.045949+00:00", "modified_at": "2023-05-03T14:39:05.451362+00:00",
+ "2023-12-19T18:05:48.751349+00:00", "modified_at": "2023-12-19T18:10:34.281612+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": [], "status": "Active", "mfa_enabled": false}, "relationships":
- {"roles": {"data": [{"type": "roles", "id": "138d5c0c-bfcc-11eb-8e11-da7ad0900005"}]},
- "org": {"data": {"type": "orgs", "id": "13865f06-bfcc-11eb-8e11-da7ad0900005"}}}},
- {"type": "users", "id": "e0c5d064-c7b0-11eb-944d-da7ad0900005", "attributes":
+ {"roles": {"data": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}},
+ {"type": "users", "id": "2abdf182-a0fc-11ee-a6a8-065d78846176", "attributes":
{"name": "None+ updated", "handle": "test-user-example@datadoghq.com", "created_at":
- "2021-06-07T16:53:26.412706+00:00", "modified_at": "2023-12-19T16:52:40.895213+00:00",
+ "2023-12-22T18:59:00.435831+00:00", "modified_at": "2023-12-26T19:35:21.667518+00:00",
"email": "test-user-example@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/034ab28ed9a3b29bccdb4d7b94cd7e03?s=48&d=retro",
"title": "", "verified": false, "service_account": false, "disabled": true,
"allowed_login_methods": [], "status": "Disabled", "mfa_enabled": false},
- "relationships": {"roles": {"data": [{"type": "roles", "id": "33844e56-9e88-11ee-97ed-da7ad0900005"}]},
- "org": {"data": {"type": "orgs", "id": "13865f06-bfcc-11eb-8e11-da7ad0900005"}}}},
- {"type": "users", "id": "9ea447a8-ebdf-11eb-8ad5-da7ad0900005", "attributes":
- {"name": "Updated", "handle": "user_without_role@example.com", "created_at":
- "2021-07-23T17:58:43.669432+00:00", "modified_at": "2022-02-25T20:44:43.801729+00:00",
- "email": "user_without_role@example.com", "icon": "https://secure.gravatar.com/avatar/a0985e94ca4206b92a3504c0222b3f7e?s=48&d=retro",
- "title": "", "verified": false, "service_account": false, "disabled": true,
- "allowed_login_methods": [], "status": "Disabled", "mfa_enabled": false},
"relationships": {"roles": {"data": []}, "org": {"data": {"type": "orgs",
- "id": "13865f06-bfcc-11eb-8e11-da7ad0900005"}}}}], "included": [{"type": "roles",
- "id": "138d5c0c-bfcc-11eb-8e11-da7ad0900005", "attributes": {"name": "Datadog
- Admin Role", "created_at": "2021-05-28T15:47:58.719345+00:00", "modified_at":
- "2023-05-03T14:57:19.540899+00:00"}, "relationships": {"permissions": {"data":
+ "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}}], "included": [{"type": "roles",
+ "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005", "attributes": {"name": "Datadog
+ Admin Role", "created_at": "2023-12-19T18:05:48.353537+00:00", "modified_at":
+ "2023-12-22T18:58:25.532811+00:00"}, "relationships": {"permissions": {"data":
[{"type": "permissions", "id": "f1666372-d87d-11e8-acac-6be484ba794a"}, {"type":
"permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7"}, {"type": "permissions",
"id": "4fbd1e66-dd15-11e8-9308-53cb90e4ef1c"}, {"type": "permissions", "id":
@@ -1096,54 +1036,34 @@ interactions:
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":
- "roles", "id": "33844e56-9e88-11ee-97ed-da7ad0900005", "attributes": {"name":
- "Datadog Read Only Role", "created_at": "2023-12-19T16:03:51.210119+00:00",
- "modified_at": "2023-12-19T16:03:51.252287+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": "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": "72d1e2fe-1cd8-11ed-a26b-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": "94783714-4e9b-11ee-959b-da7ad0900005"},
- {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}],
- "meta": {"page": {"total_count": 77, "total_filtered_count": 77, "max_page_size":
- 1000}}}'
+ "group_name": "APM", "display_type": "write", "restricted": false}}], "meta":
+ {"page": {"total_count": 8, "total_filtered_count": 8, "max_page_size": 1000}}}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"type": "query alert", "name": "Composite monitor - Child 2", "message":
- "Test monitor ----------------", "tags": ["test:foo", "test_two:bar"], "query":
- "avg(last_5m):avg:datadog.estimated_usage.hosts{*} > 50", "options": {"thresholds":
- {"critical": 50.0}, "notify_audit": false, "require_full_window": true, "notify_no_data":
- false, "renotify_interval": 0, "timeout_h": 0, "include_tags": true, "no_data_timeframe":
- null, "escalation_message": "", "new_host_delay": 300, "silenced": {}}, "multi":
- false, "restricted_roles": null, "priority": null}'
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: GET
+ uri: https://api.datadoghq.eu/api/v1/synthetics/variables
+ response:
+ body:
+ string: '{"variables": []}'
+ headers: {}
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"description": "Test Test-Create_a_private_location_returns_OK_response-1694441551
+ description", "tags": ["test:testcreateaprivatelocationreturnsokresponse1694441551"],
+ "name": "Test-Create_a_private_location_returns_OK_response-1694441551"}'
headers:
Accept:
- '*/*'
@@ -1152,21 +1072,100 @@ interactions:
Content-Type:
- application/json
method: POST
- uri: https://api.datadoghq.eu/api/v1/monitor
+ uri: https://api.datadoghq.eu/api/v1/synthetics/private-locations
response:
body:
- string: '{"id": 14510181, "org_id": 1000044987, "type": "query alert", "name":
- "Composite monitor - Child 2", "message": "Test monitor ----------------",
- "tags": ["test:foo", "test_two:bar"], "query": "avg(last_5m):avg:datadog.estimated_usage.hosts{*}
- > 50", "options": {"thresholds": {"critical": 50.0}, "notify_audit": false,
- "require_full_window": true, "notify_no_data": false, "renotify_interval":
- 0, "timeout_h": 0, "include_tags": true, "no_data_timeframe": null, "escalation_message":
- "", "new_host_delay": 300, "silenced": {}}, "multi": false, "created_at":
- 1703004803000, "created": "2023-12-19T16:53:23.313003+00:00", "modified":
- "2023-12-19T16:53:23.313003+00:00", "deleted": null, "restricted_roles": null,
- "priority": null, "overall_state_modified": null, "overall_state": "No Data",
- "creator": {"name": "Frog", "handle": "frog@datadoghq.com", "email": "frog@datadoghq.com",
- "id": 1000219667}}'
+ string: '{"private_location": {"createdAt": "2023-12-26T19:37:30.042977+00:00",
+ "modifiedAt": "2023-12-26T19:37:30.042977+00:00", "description": "Test Test-Create_a_private_location_returns_OK_response-1694441551
+ description", "tags": ["test:testcreateaprivatelocationreturnsokresponse1694441551"],
+ "name": "Test-Create_a_private_location_returns_OK_response-1694441551", "metadata":
+ null, "id": "pl:test-create_a_private_location_returns_ok_response-1694441551-992177a06990ebfb5040e5ec2fda60f9",
+ "createdBy": "frog@datadoghq.com", "config": {"site": "datadoghq.eu"}}, "result_encryption":
+ {"id": "sha256$base64$HCje9BSaPgSwhmA3TL6kYknOgjCW72k8ilCn4PAuins=", "key":
+ "-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyhjTDKqgNuqzlTKKEztw\nqQmfi3Vz/BCmaSRmwZenLP/a/GYG2pKR27hHv5fQB3v08W/BC1VA2XmuCR+EJiYo\nMWfjvLw65sv+S52Vsx4z0EuP5k1qmRyeRDPPENBxAypfLMbt1F6rTxI42ionaHSJ\nBWC8emJYOjAex5shz2I/aj3P3oht8ePr5Jj6A2jkewhBUvfcXQopAy21KhAtEEQB\n7NfG/JWSo9TEqEA4QxGEEqo4rHSHgRQVxtXINzDSp/M5136wVsLsTRF0bSLXSdrf\nRCZje4OdR5Ij9HdhB4F+2KW22Fm3vJlvPCG1C2ZtEDz3xzv9+hcz/rV7WrBMua3j\nZTei5EMTSOt0hIL/DmdId4LmWTc2fYWxe2nYUuAgPw+o+jaju5E5htFbd4JRqyEu\nmMJra8f0BWH80mEDiB1DqfsbVFNYmjG5pVJR7OEV4GRNw9CmwRhcwaXpjouYFrsy\nKvRRdAhLigC+FUDtsLZkgM4T6g4VOjgUTMuRAYgouyyjniuRTn4sKE/t0zfP6/0t\nS/izsjItIat+0RzkO7BY22ga9h1/orqFwgCtwX+WYDHSzo2oMku1tup16WP3Y2jj\n2MJGpHPhDkBoCKRXq34xGxHGoing0zCqmjk1h5WTZdVrppTjJo5sxK0ZGlOXdsk2\nGgiZrQVfZjtotyWUyJnC758CAwEAAQ==\n-----END
+ PUBLIC KEY-----\n"}}'
+ headers: {}
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"description": "Test Test-Create_a_private_location_returns_OK_response-1694441705
+ description", "tags": ["test:testcreateaprivatelocationreturnsokresponse1694441705"],
+ "name": "Test-Create_a_private_location_returns_OK_response-1694441705"}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: POST
+ uri: https://api.datadoghq.eu/api/v1/synthetics/private-locations
+ response:
+ body:
+ string: '{"private_location": {"createdAt": "2023-12-26T19:37:31.260908+00:00",
+ "modifiedAt": "2023-12-26T19:37:31.260908+00:00", "description": "Test Test-Create_a_private_location_returns_OK_response-1694441705
+ description", "tags": ["test:testcreateaprivatelocationreturnsokresponse1694441705"],
+ "name": "Test-Create_a_private_location_returns_OK_response-1694441705", "metadata":
+ null, "id": "pl:test-create_a_private_location_returns_ok_response-1694441705-a585a8086b00df22b9bd471e79240397",
+ "createdBy": "frog@datadoghq.com", "config": {"site": "datadoghq.eu"}}, "result_encryption":
+ {"id": "sha256$base64$HCje9BSaPgSwhmA3TL6kYknOgjCW72k8ilCn4PAuins=", "key":
+ "-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyhjTDKqgNuqzlTKKEztw\nqQmfi3Vz/BCmaSRmwZenLP/a/GYG2pKR27hHv5fQB3v08W/BC1VA2XmuCR+EJiYo\nMWfjvLw65sv+S52Vsx4z0EuP5k1qmRyeRDPPENBxAypfLMbt1F6rTxI42ionaHSJ\nBWC8emJYOjAex5shz2I/aj3P3oht8ePr5Jj6A2jkewhBUvfcXQopAy21KhAtEEQB\n7NfG/JWSo9TEqEA4QxGEEqo4rHSHgRQVxtXINzDSp/M5136wVsLsTRF0bSLXSdrf\nRCZje4OdR5Ij9HdhB4F+2KW22Fm3vJlvPCG1C2ZtEDz3xzv9+hcz/rV7WrBMua3j\nZTei5EMTSOt0hIL/DmdId4LmWTc2fYWxe2nYUuAgPw+o+jaju5E5htFbd4JRqyEu\nmMJra8f0BWH80mEDiB1DqfsbVFNYmjG5pVJR7OEV4GRNw9CmwRhcwaXpjouYFrsy\nKvRRdAhLigC+FUDtsLZkgM4T6g4VOjgUTMuRAYgouyyjniuRTn4sKE/t0zfP6/0t\nS/izsjItIat+0RzkO7BY22ga9h1/orqFwgCtwX+WYDHSzo2oMku1tup16WP3Y2jj\n2MJGpHPhDkBoCKRXq34xGxHGoing0zCqmjk1h5WTZdVrppTjJo5sxK0ZGlOXdsk2\nGgiZrQVfZjtotyWUyJnC758CAwEAAQ==\n-----END
+ PUBLIC KEY-----\n"}}'
+ headers: {}
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"description": "Test Test-Create_a_private_location_returns_OK_response-1694443516
+ description", "tags": ["test:testcreateaprivatelocationreturnsokresponse1694443516"],
+ "name": "Test-Create_a_private_location_returns_OK_response-1694443516"}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: POST
+ uri: https://api.datadoghq.eu/api/v1/synthetics/private-locations
+ response:
+ body:
+ string: '{"private_location": {"createdAt": "2023-12-26T19:37:32.331406+00:00",
+ "modifiedAt": "2023-12-26T19:37:32.331406+00:00", "description": "Test Test-Create_a_private_location_returns_OK_response-1694443516
+ description", "tags": ["test:testcreateaprivatelocationreturnsokresponse1694443516"],
+ "name": "Test-Create_a_private_location_returns_OK_response-1694443516", "metadata":
+ null, "id": "pl:test-create_a_private_location_returns_ok_response-1694443516-976afb4da65c8c52b3734195f46fb103",
+ "createdBy": "frog@datadoghq.com", "config": {"site": "datadoghq.eu"}}, "result_encryption":
+ {"id": "sha256$base64$HCje9BSaPgSwhmA3TL6kYknOgjCW72k8ilCn4PAuins=", "key":
+ "-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyhjTDKqgNuqzlTKKEztw\nqQmfi3Vz/BCmaSRmwZenLP/a/GYG2pKR27hHv5fQB3v08W/BC1VA2XmuCR+EJiYo\nMWfjvLw65sv+S52Vsx4z0EuP5k1qmRyeRDPPENBxAypfLMbt1F6rTxI42ionaHSJ\nBWC8emJYOjAex5shz2I/aj3P3oht8ePr5Jj6A2jkewhBUvfcXQopAy21KhAtEEQB\n7NfG/JWSo9TEqEA4QxGEEqo4rHSHgRQVxtXINzDSp/M5136wVsLsTRF0bSLXSdrf\nRCZje4OdR5Ij9HdhB4F+2KW22Fm3vJlvPCG1C2ZtEDz3xzv9+hcz/rV7WrBMua3j\nZTei5EMTSOt0hIL/DmdId4LmWTc2fYWxe2nYUuAgPw+o+jaju5E5htFbd4JRqyEu\nmMJra8f0BWH80mEDiB1DqfsbVFNYmjG5pVJR7OEV4GRNw9CmwRhcwaXpjouYFrsy\nKvRRdAhLigC+FUDtsLZkgM4T6g4VOjgUTMuRAYgouyyjniuRTn4sKE/t0zfP6/0t\nS/izsjItIat+0RzkO7BY22ga9h1/orqFwgCtwX+WYDHSzo2oMku1tup16WP3Y2jj\n2MJGpHPhDkBoCKRXq34xGxHGoing0zCqmjk1h5WTZdVrppTjJo5sxK0ZGlOXdsk2\nGgiZrQVfZjtotyWUyJnC758CAwEAAQ==\n-----END
+ PUBLIC KEY-----\n"}}'
+ headers: {}
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"description": "datadog-sync-cli test", "tags": ["key:value"], "name":
+ "Test Private Variable"}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: POST
+ uri: https://api.datadoghq.eu/api/v1/synthetics/private-locations
+ response:
+ body:
+ string: '{"private_location": {"createdAt": "2023-12-26T19:37:34.071679+00:00",
+ "modifiedAt": "2023-12-26T19:37:34.071679+00:00", "description": "datadog-sync-cli
+ test", "tags": ["key:value"], "name": "Test Private Variable", "metadata":
+ null, "id": "pl:test-private-variable-8963e7cc787dd5f89d2d480415bd6e41", "createdBy":
+ "frog@datadoghq.com", "config": {"site": "datadoghq.eu"}}, "result_encryption":
+ {"id": "sha256$base64$HCje9BSaPgSwhmA3TL6kYknOgjCW72k8ilCn4PAuins=", "key":
+ "-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyhjTDKqgNuqzlTKKEztw\nqQmfi3Vz/BCmaSRmwZenLP/a/GYG2pKR27hHv5fQB3v08W/BC1VA2XmuCR+EJiYo\nMWfjvLw65sv+S52Vsx4z0EuP5k1qmRyeRDPPENBxAypfLMbt1F6rTxI42ionaHSJ\nBWC8emJYOjAex5shz2I/aj3P3oht8ePr5Jj6A2jkewhBUvfcXQopAy21KhAtEEQB\n7NfG/JWSo9TEqEA4QxGEEqo4rHSHgRQVxtXINzDSp/M5136wVsLsTRF0bSLXSdrf\nRCZje4OdR5Ij9HdhB4F+2KW22Fm3vJlvPCG1C2ZtEDz3xzv9+hcz/rV7WrBMua3j\nZTei5EMTSOt0hIL/DmdId4LmWTc2fYWxe2nYUuAgPw+o+jaju5E5htFbd4JRqyEu\nmMJra8f0BWH80mEDiB1DqfsbVFNYmjG5pVJR7OEV4GRNw9CmwRhcwaXpjouYFrsy\nKvRRdAhLigC+FUDtsLZkgM4T6g4VOjgUTMuRAYgouyyjniuRTn4sKE/t0zfP6/0t\nS/izsjItIat+0RzkO7BY22ga9h1/orqFwgCtwX+WYDHSzo2oMku1tup16WP3Y2jj\n2MJGpHPhDkBoCKRXq34xGxHGoing0zCqmjk1h5WTZdVrppTjJo5sxK0ZGlOXdsk2\nGgiZrQVfZjtotyWUyJnC758CAwEAAQ==\n-----END
+ PUBLIC KEY-----\n"}}'
headers: {}
status:
code: 200
@@ -1192,7 +1191,7 @@ interactions:
uri: https://api.datadoghq.eu/api/v1/monitor
response:
body:
- string: '{"id": 14510182, "org_id": 1000044987, "type": "query alert", "name":
+ string: '{"id": 14605709, "org_id": 1000144613, "type": "query alert", "name":
"Anomaly monitor", "message": "Anomaly monitor", "tags": [], "query": "avg(last_4h):anomalies(avg:dd.dialtone.historical.metrics{*},
''basic'', 2, direction=''both'', alert_window=''last_15m'', interval=60,
count_default_zero=''true'') >= 1", "options": {"notify_audit": false, "locked":
@@ -1200,11 +1199,47 @@ interactions:
true, "new_host_delay": 300, "notify_no_data": false, "renotify_interval":
0, "escalation_message": "", "threshold_windows": {"recovery_window": "last_15m",
"trigger_window": "last_15m"}, "thresholds": {"critical": 1.0, "critical_recovery":
- 0.0}, "silenced": {}}, "multi": false, "created_at": 1703004803000, "created":
- "2023-12-19T16:53:23.723825+00:00", "modified": "2023-12-19T16:53:23.723825+00:00",
+ 0.0}, "silenced": {}}, "multi": false, "created_at": 1703619454000, "created":
+ "2023-12-26T19:37:34.699031+00:00", "modified": "2023-12-26T19:37:34.699031+00:00",
"deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
- null, "overall_state": "No Data", "creator": {"name": "Frog", "handle": "frog@datadoghq.com",
- "email": "frog@datadoghq.com", "id": 1000219667}}'
+ null, "overall_state": "No Data", "creator": {"name": "CI Service Account",
+ "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com",
+ "id": 1001177794}}'
+ headers: {}
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"type": "query alert", "name": "Composite monitor - Child 2", "message":
+ "Test monitor ----------------", "tags": ["test:foo", "test_two:bar"], "query":
+ "avg(last_5m):avg:datadog.estimated_usage.hosts{*} > 50", "options": {"thresholds":
+ {"critical": 50.0}, "notify_audit": false, "require_full_window": true, "notify_no_data":
+ false, "renotify_interval": 0, "timeout_h": 0, "include_tags": true, "no_data_timeframe":
+ null, "escalation_message": "", "new_host_delay": 300, "silenced": {}}, "multi":
+ false, "restricted_roles": null, "priority": null}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: POST
+ uri: https://api.datadoghq.eu/api/v1/monitor
+ response:
+ body:
+ string: '{"id": 14605710, "org_id": 1000144613, "type": "query alert", "name":
+ "Composite monitor - Child 2", "message": "Test monitor ----------------",
+ "tags": ["test:foo", "test_two:bar"], "query": "avg(last_5m):avg:datadog.estimated_usage.hosts{*}
+ > 50", "options": {"thresholds": {"critical": 50.0}, "notify_audit": false,
+ "require_full_window": true, "notify_no_data": false, "renotify_interval":
+ 0, "timeout_h": 0, "include_tags": true, "no_data_timeframe": null, "escalation_message":
+ "", "new_host_delay": 300, "silenced": {}}, "multi": false, "created_at":
+ 1703619454000, "created": "2023-12-26T19:37:34.909824+00:00", "modified":
+ "2023-12-26T19:37:34.909824+00:00", "deleted": null, "restricted_roles": null,
+ "priority": null, "overall_state_modified": null, "overall_state": "No Data",
+ "creator": {"name": "CI Service Account", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com", "id": 1001177794}}'
headers: {}
status:
code: 200
@@ -1229,16 +1264,16 @@ interactions:
uri: https://api.datadoghq.eu/api/v1/dashboard
response:
body:
- string: '{"id": "v8u-z4u-sw5", "title": "datadog-sync-cli Test Dashboard", "description":
- "", "author_handle": "frog@datadoghq.com", "author_name": "Frog", "layout_type":
- "ordered", "url": "/dashboard/v8u-z4u-sw5/datadog-sync-cli-test-dashboard",
+ string: '{"id": "bu3-mab-7wq", "title": "datadog-sync-cli Test Dashboard", "description":
+ "", "author_handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "author_name":
+ "CI Service Account", "layout_type": "ordered", "url": "/dashboard/bu3-mab-7wq/datadog-sync-cli-test-dashboard",
"is_read_only": false, "template_variables": [], "widgets": [{"definition":
{"title_size": "16", "title": "", "title_align": "left", "precision": 2, "time":
{}, "autoscale": true, "requests": [{"response_format": "scalar", "queries":
[{"query": "avg:system.cpu.user{*}", "data_source": "metrics", "name": "query1",
"aggregator": "avg"}]}], "type": "query_value"}, "layout": {"y": 0, "x": 0,
"height": 2, "width": 2}, "id": 6609238960092638}], "notify_list": [], "created_at":
- "2023-12-19T16:53:24.118140+00:00", "modified_at": "2023-12-19T16:53:24.118140+00:00",
+ "2023-12-26T19:37:35.215525+00:00", "modified_at": "2023-12-26T19:37:35.215525+00:00",
"reflow_type": "fixed", "restricted_roles": []}'
headers: {}
status:
@@ -1292,9 +1327,9 @@ interactions:
uri: https://api.datadoghq.eu/api/v1/dashboard
response:
body:
- string: '{"id": "n5v-rx6-a2v", "title": "Test screenboard", "description": "Created
- using the Datadog provider in Terraform", "author_handle": "frog@datadoghq.com",
- "author_name": "Frog", "layout_type": "free", "url": "/dashboard/n5v-rx6-a2v/test-screenboard",
+ string: '{"id": "nkw-nry-gr4", "title": "Test screenboard", "description": "Created
+ using the Datadog provider in Terraform", "author_handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "author_name": "CI Service Account", "layout_type": "free", "url": "/dashboard/nkw-nry-gr4/test-screenboard",
"is_read_only": false, "template_variables": [{"default": "aws", "prefix":
"host", "name": "var_1"}, {"default": "autoscaling", "prefix": "service_name",
"name": "var_2"}], "widgets": [{"definition": {"title_size": "16", "title":
@@ -1327,7 +1362,7 @@ interactions:
"time": {"live_span": "1h"}, "show_distribution": true, "display_format":
"three_column", "type": "trace_service", "show_resource_list": false}, "layout":
{"y": 28, "x": 40, "height": 38, "width": 67}, "id": 6949442529647217}], "notify_list":
- [], "created_at": "2023-12-19T16:53:24.559931+00:00", "modified_at": "2023-12-19T16:53:24.559931+00:00",
+ [], "created_at": "2023-12-26T19:37:35.615165+00:00", "modified_at": "2023-12-26T19:37:35.615165+00:00",
"template_variable_presets": [{"template_variables": [{"name": "var_1", "value":
"host.dc"}, {"name": "var_2", "value": "my_service"}], "name": "preset_1"}],
"restricted_roles": []}'
@@ -1336,13 +1371,37 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "query alert", "name": "Composite monitor - child 1", "message":
- "Composite monitor - child 1", "tags": ["test:foo"], "query": "avg(last_5m):avg:dd.dialtone.historical.metrics{*}
- > 20", "options": {"thresholds": {"critical": 20.0, "warning": 10.0}, "notify_audit":
- false, "require_full_window": true, "notify_no_data": false, "renotify_interval":
- 1440, "timeout_h": 0, "include_tags": true, "no_data_timeframe": null, "escalation_message":
- "", "renotify_statuses": ["no data"], "new_host_delay": 300, "silenced": {}},
- "multi": false, "restricted_roles": null, "priority": null}'
+ body: '{"data": {"type": "roles", "attributes": {"name": "Datadog Read Only Role"},
+ "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": "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": "72d1e2fe-1cd8-11ed-a26b-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": "94783714-4e9b-11ee-959b-da7ad0900005"},
+ {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
headers:
Accept:
- '*/*'
@@ -1351,32 +1410,138 @@ interactions:
Content-Type:
- application/json
method: POST
- uri: https://api.datadoghq.eu/api/v1/monitor
+ uri: https://api.datadoghq.eu/api/v2/roles
response:
body:
- string: '{"id": 14510183, "org_id": 1000044987, "type": "query alert", "name":
- "Composite monitor - child 1", "message": "Composite monitor - child 1", "tags":
- ["test:foo"], "query": "avg(last_5m):avg:dd.dialtone.historical.metrics{*}
- > 20", "options": {"thresholds": {"critical": 20.0, "warning": 10.0}, "notify_audit":
- false, "require_full_window": true, "notify_no_data": false, "renotify_interval":
- 1440, "timeout_h": 0, "include_tags": true, "no_data_timeframe": null, "escalation_message":
- "", "renotify_statuses": ["no data"], "new_host_delay": 300, "silenced": {}},
- "multi": false, "created_at": 1703004804000, "created": "2023-12-19T16:53:24.927379+00:00",
- "modified": "2023-12-19T16:53:24.927379+00:00", "deleted": null, "restricted_roles":
- null, "priority": null, "overall_state_modified": null, "overall_state": "No
- Data", "creator": {"name": "Frog", "handle": "frog@datadoghq.com", "email":
- "frog@datadoghq.com", "id": 1000219667}}'
+ string: '{"data": {"type": "roles", "id": "389e37f0-a426-11ee-96a2-da7ad0900005",
+ "attributes": {"name": "Datadog Read Only Role", "created_at": "2023-12-26T19:37:36.066101+00:00",
+ "modified_at": "2023-12-26T19:37:36.109725+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": "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": "72d1e2fe-1cd8-11ed-a26b-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": "94783714-4e9b-11ee-959b-da7ad0900005"},
+ {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"type": "service check", "name": "Host monitor", "message": "Test host
- monitor", "tags": ["service:daimler-health-service"], "query": "\"datadog.agent.up\".over(\"*\").by(\"host\").last(2).count_by_status()",
- "options": {"thresholds": {"critical": 1, "warning": 1, "ok": 1}, "notify_audit":
- false, "notify_no_data": true, "no_data_timeframe": 2, "renotify_interval":
- 0, "timeout_h": 0, "include_tags": true, "new_group_delay": 300, "silenced":
- {}}, "multi": true, "restricted_roles": null, "priority": null}'
+ body: '{"data": {"type": "roles", "attributes": {"name": "Datadog Standard Role"},
+ "relationships": {"permissions": {"data": [{"type": "permissions", "id": "f1666372-d87d-11e8-acac-6be484ba794a"},
+ {"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":
+ "1ad6fd30-2844-11eb-a18d-5f72a244f27a"}, {"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": "da1b47fc-2dce-11eb-9145-5783a37d467c"}, {"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": "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": "7fbea6aa-c59e-11ec-90fb-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": "72d1e2fe-1cd8-11ed-a26b-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": "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": "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":
+ "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"},
+ {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
headers:
Accept:
- '*/*'
@@ -1385,32 +1550,121 @@ interactions:
Content-Type:
- application/json
method: POST
- uri: https://api.datadoghq.eu/api/v1/monitor
+ uri: https://api.datadoghq.eu/api/v2/roles
response:
body:
- string: '{"id": 14510184, "org_id": 1000044987, "type": "service check", "name":
- "Host monitor", "message": "Test host monitor", "tags": ["service:daimler-health-service"],
- "query": "\"datadog.agent.up\".over(\"*\").by(\"host\").last(2).count_by_status()",
- "options": {"thresholds": {"critical": 1, "warning": 1, "ok": 1}, "notify_audit":
- false, "notify_no_data": true, "no_data_timeframe": 2, "renotify_interval":
- 0, "timeout_h": 0, "include_tags": true, "new_group_delay": 300, "silenced":
- {}}, "multi": true, "created_at": 1703004805000, "created": "2023-12-19T16:53:25.374036+00:00",
- "modified": "2023-12-19T16:53:25.374036+00:00", "deleted": null, "restricted_roles":
- null, "priority": null, "overall_state_modified": null, "overall_state": "No
- Data", "creator": {"name": "Frog", "handle": "frog@datadoghq.com", "email":
- "frog@datadoghq.com", "id": 1000219667}}'
+ string: '{"data": {"type": "roles", "id": "39093e10-a426-11ee-930f-da7ad0900005",
+ "attributes": {"name": "Datadog Standard Role", "created_at": "2023-12-26T19:37:36.767271+00:00",
+ "modified_at": "2023-12-26T19:37:36.821004+00:00"}, "relationships": {"permissions":
+ {"data": [{"type": "permissions", "id": "f1666372-d87d-11e8-acac-6be484ba794a"},
+ {"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":
+ "1ad6fd30-2844-11eb-a18d-5f72a244f27a"}, {"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": "da1b47fc-2dce-11eb-9145-5783a37d467c"}, {"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": "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": "7fbea6aa-c59e-11ec-90fb-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": "72d1e2fe-1cd8-11ed-a26b-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": "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": "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":
+ "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"},
+ {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"type": "metric alert", "name": "[Synthetic Private Locations] {{location_id.name}}
- stopped reporting", "message": "Private location {{location_id.name}} stopped
- reporting to Datadog.", "tags": [], "query": "min(last_5m):avg:synthetics.pl.worker.running{*}
- by {location_id} < 1", "options": {"notify_audit": false, "locked": false, "include_tags":
- true, "thresholds": {"critical": 1.0}, "new_host_delay": 300, "notify_no_data":
- true, "silenced": {}}, "multi": true, "restricted_roles": null, "priority":
- null}'
+ body: '{"data": {"type": "roles", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670404619"},
+ "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
+ {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
+ "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
+ "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
+ "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"},
+ {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type":
+ "permissions", "id": "f33f74be-e746-11ec-87e3-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":
+ "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
headers:
Accept:
- '*/*'
@@ -1419,35 +1673,44 @@ interactions:
Content-Type:
- application/json
method: POST
- uri: https://api.datadoghq.eu/api/v1/monitor
+ uri: https://api.datadoghq.eu/api/v2/roles
response:
body:
- string: '{"id": 14510185, "org_id": 1000044987, "type": "metric alert", "name":
- "[Synthetic Private Locations] {{location_id.name}} stopped reporting", "message":
- "Private location {{location_id.name}} stopped reporting to Datadog.", "tags":
- [], "query": "min(last_5m):avg:synthetics.pl.worker.running{*} by {location_id}
- < 1", "options": {"notify_audit": false, "locked": false, "include_tags":
- true, "thresholds": {"critical": 1.0}, "new_host_delay": 300, "notify_no_data":
- true, "silenced": {}}, "multi": true, "created_at": 1703004805000, "created":
- "2023-12-19T16:53:25.681596+00:00", "modified": "2023-12-19T16:53:25.681596+00:00",
- "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
- null, "overall_state": "No Data", "creator": {"name": "Frog", "handle": "frog@datadoghq.com",
- "email": "frog@datadoghq.com", "id": 1000219667}}'
+ string: '{"data": {"type": "roles", "id": "39432b66-a426-11ee-8954-da7ad0900005",
+ "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670404619",
+ "created_at": "2023-12-26T19:37:37.147563+00:00", "modified_at": "2023-12-26T19:37:37.171408+00:00"},
+ "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
+ {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
+ "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
+ "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
+ "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"},
+ {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type":
+ "permissions", "id": "f33f74be-e746-11ec-87e3-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":
+ "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"type": "metric alert", "name": "[Synthetic Private Locations] {{location_id.name}}
- uses an outdated image version", "message": "Private location {{location_id.name}}
- is running an outdated image version. Learn more about the current version in
- use on your [Private locations page](https://app.datadoghq.com/synthetics/settings/private-locations?id={{location_id.name}})
- and upgrade workers to the most recent version of the image by pulling the `datadog/synthetics-private-location-worker`
- image with the `latest` tag.", "tags": [], "query": "max(last_15m):sum:synthetics.pl.worker.outdated{*}
- by {location_id} > 0", "options": {"notify_audit": false, "locked": false, "include_tags":
- true, "thresholds": {"critical": 0.0}, "new_host_delay": 300, "notify_no_data":
- false, "silenced": {}}, "multi": true, "restricted_roles": null, "priority":
- null}'
+ body: '{"data": {"type": "roles", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670404656"},
+ "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
+ {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
+ "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
+ "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
+ "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"},
+ {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type":
+ "permissions", "id": "f33f74be-e746-11ec-87e3-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":
+ "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
headers:
Accept:
- '*/*'
@@ -1456,37 +1719,44 @@ interactions:
Content-Type:
- application/json
method: POST
- uri: https://api.datadoghq.eu/api/v1/monitor
+ uri: https://api.datadoghq.eu/api/v2/roles
response:
body:
- string: '{"id": 14510186, "org_id": 1000044987, "type": "metric alert", "name":
- "[Synthetic Private Locations] {{location_id.name}} uses an outdated image
- version", "message": "Private location {{location_id.name}} is running an
- outdated image version. Learn more about the current version in use on your
- [Private locations page](https://app.datadoghq.com/synthetics/settings/private-locations?id={{location_id.name}})
- and upgrade workers to the most recent version of the image by pulling the
- `datadog/synthetics-private-location-worker` image with the `latest` tag.",
- "tags": [], "query": "max(last_15m):sum:synthetics.pl.worker.outdated{*} by
- {location_id} > 0", "options": {"notify_audit": false, "locked": false, "include_tags":
- true, "thresholds": {"critical": 0.0}, "new_host_delay": 300, "notify_no_data":
- false, "silenced": {}}, "multi": true, "created_at": 1703004806000, "created":
- "2023-12-19T16:53:26.048156+00:00", "modified": "2023-12-19T16:53:26.048156+00:00",
- "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
- null, "overall_state": "No Data", "creator": {"name": "Frog", "handle": "frog@datadoghq.com",
- "email": "frog@datadoghq.com", "id": 1000219667}}'
+ string: '{"data": {"type": "roles", "id": "39839ff2-a426-11ee-bf8c-da7ad0900005",
+ "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670404656",
+ "created_at": "2023-12-26T19:37:37.570152+00:00", "modified_at": "2023-12-26T19:37:37.604133+00:00"},
+ "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
+ {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
+ "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
+ "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
+ "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"},
+ {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type":
+ "permissions", "id": "f33f74be-e746-11ec-87e3-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":
+ "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"type": "metric alert", "name": "[Synthetic Private Locations] {{location_id.name}}
- is underprovisioned", "message": "Private location {{location_id.name}} is underprovisioned.\nVisit
- this [documentation page](https://docs.datadoghq.com/synthetics/private_locations/?tab=docker#dimension-your-private-location)
- to learn how to scale your private location.", "tags": [], "query": "avg(last_30m):avg:synthetics.pl.worker.remaining_slots{*}
- by {location_id} < 1.5", "options": {"notify_audit": false, "locked": false,
- "include_tags": true, "thresholds": {"critical": 1.5}, "new_host_delay": 300,
- "notify_no_data": false, "silenced": {}}, "multi": true, "restricted_roles":
- null, "priority": null}'
+ body: '{"data": {"type": "roles", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405007"},
+ "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
+ {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
+ "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
+ "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
+ "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"},
+ {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type":
+ "permissions", "id": "f33f74be-e746-11ec-87e3-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":
+ "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
headers:
Accept:
- '*/*'
@@ -1495,33 +1765,44 @@ interactions:
Content-Type:
- application/json
method: POST
- uri: https://api.datadoghq.eu/api/v1/monitor
+ uri: https://api.datadoghq.eu/api/v2/roles
response:
body:
- string: '{"id": 14510187, "org_id": 1000044987, "type": "metric alert", "name":
- "[Synthetic Private Locations] {{location_id.name}} is underprovisioned",
- "message": "Private location {{location_id.name}} is underprovisioned.\nVisit
- this [documentation page](https://docs.datadoghq.com/synthetics/private_locations/?tab=docker#dimension-your-private-location)
- to learn how to scale your private location.", "tags": [], "query": "avg(last_30m):avg:synthetics.pl.worker.remaining_slots{*}
- by {location_id} < 1.5", "options": {"notify_audit": false, "locked": false,
- "include_tags": true, "thresholds": {"critical": 1.5}, "new_host_delay": 300,
- "notify_no_data": false, "silenced": {}}, "multi": true, "created_at": 1703004806000,
- "created": "2023-12-19T16:53:26.472639+00:00", "modified": "2023-12-19T16:53:26.472639+00:00",
- "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
- null, "overall_state": "No Data", "creator": {"name": "Frog", "handle": "frog@datadoghq.com",
- "email": "frog@datadoghq.com", "id": 1000219667}}'
+ string: '{"data": {"type": "roles", "id": "39c96f28-a426-11ee-96a2-da7ad0900005",
+ "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405007",
+ "created_at": "2023-12-26T19:37:38.027675+00:00", "modified_at": "2023-12-26T19:37:38.054231+00:00"},
+ "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
+ {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
+ "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
+ "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
+ "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"},
+ {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type":
+ "permissions", "id": "f33f74be-e746-11ec-87e3-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":
+ "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"type": "event-v2 alert", "name": "Test event monitor", "message": "Test
- event monitor", "tags": [], "query": "events(\"\").rollup(\"count\").last(\"5m\")
- > 100", "options": {"notify_audit": false, "locked": false, "timeout_h": 0,
- "include_tags": true, "restriction_query": null, "new_host_delay": 300, "notify_no_data":
- false, "renotify_interval": 0, "groupby_simple_monitor": true, "enable_logs_sample":
- false, "escalation_message": "", "thresholds": {"critical": 100.0}, "silenced":
- {}}, "multi": false, "restricted_roles": null, "priority": null}'
+ body: '{"data": {"type": "roles", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405911"},
+ "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
+ {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
+ "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
+ "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
+ "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"},
+ {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type":
+ "permissions", "id": "f33f74be-e746-11ec-87e3-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":
+ "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
headers:
Accept:
- '*/*'
@@ -1530,31 +1811,44 @@ interactions:
Content-Type:
- application/json
method: POST
- uri: https://api.datadoghq.eu/api/v1/monitor
+ uri: https://api.datadoghq.eu/api/v2/roles
response:
body:
- string: '{"id": 14510188, "org_id": 1000044987, "type": "event-v2 alert", "name":
- "Test event monitor", "message": "Test event monitor", "tags": [], "query":
- "events(\"\").rollup(\"count\").last(\"5m\") > 100", "options": {"notify_audit":
- false, "locked": false, "timeout_h": 0, "include_tags": true, "restriction_query":
- null, "new_host_delay": 300, "notify_no_data": false, "renotify_interval":
- 0, "groupby_simple_monitor": true, "enable_logs_sample": false, "escalation_message":
- "", "thresholds": {"critical": 100.0}, "silenced": {}}, "multi": false, "created_at":
- 1703004806000, "created": "2023-12-19T16:53:26.843912+00:00", "modified":
- "2023-12-19T16:53:26.843912+00:00", "deleted": null, "restricted_roles": null,
- "priority": null, "overall_state_modified": null, "overall_state": "No Data",
- "creator": {"name": "Frog", "handle": "frog@datadoghq.com", "email": "frog@datadoghq.com",
- "id": 1000219667}}'
+ string: '{"data": {"type": "roles", "id": "3a026b84-a426-11ee-bf48-da7ad0900005",
+ "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405911",
+ "created_at": "2023-12-26T19:37:38.401101+00:00", "modified_at": "2023-12-26T19:37:38.428366+00:00"},
+ "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
+ {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
+ "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
+ "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
+ "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"},
+ {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type":
+ "permissions", "id": "f33f74be-e746-11ec-87e3-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":
+ "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"name": "SLO test", "tags": [], "monitor_tags": [], "thresholds": [{"timeframe":
- "7d", "target": 99.0, "target_display": "99."}], "type": "metric", "type_id":
- 1, "description": "Test update creation", "timeframe": "7d", "target_threshold":
- 99.0, "query": {"denominator": "sum:api.requests{*}.as_count()", "numerator":
- "sum:api.requests.status_ok{*}.as_count()"}}'
+ body: '{"data": {"type": "roles", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405924"},
+ "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
+ {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
+ "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
+ "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
+ "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"},
+ {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type":
+ "permissions", "id": "f33f74be-e746-11ec-87e3-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":
+ "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
headers:
Accept:
- '*/*'
@@ -1563,22 +1857,41 @@ interactions:
Content-Type:
- application/json
method: POST
- uri: https://api.datadoghq.eu/api/v1/slo
+ uri: https://api.datadoghq.eu/api/v2/roles
response:
body:
- string: '{"data": [{"id": "b1e2084a1f04586dab7ff2be7bb7afee", "name": "SLO test",
- "tags": [], "monitor_tags": [], "thresholds": [{"timeframe": "7d", "target":
- 99.0, "target_display": "99."}], "type": "metric", "type_id": 1, "description":
- "Test update creation", "timeframe": "7d", "target_threshold": 99.0, "query":
- {"denominator": "sum:api.requests{*}.as_count()", "numerator": "sum:api.requests.status_ok{*}.as_count()"},
- "creator": {"name": "Frog", "handle": "frog@datadoghq.com", "email": "frog@datadoghq.com"},
- "created_at": 1703004807, "modified_at": 1703004807}], "error": null}'
+ string: '{"data": {"type": "roles", "id": "3a40a55c-a426-11ee-a12b-da7ad0900005",
+ "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405924",
+ "created_at": "2023-12-26T19:37:38.808317+00:00", "modified_at": "2023-12-26T19:37:38.835995+00:00"},
+ "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
+ {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
+ "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
+ "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
+ "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"},
+ {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type":
+ "permissions", "id": "f33f74be-e746-11ec-87e3-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":
+ "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"name": "Empty Test List"}'
+ body: '{"data": {"type": "roles", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1686121345"},
+ "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
+ {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
+ "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
+ "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
+ "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"},
+ {"type": "permissions", "id": "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type":
+ "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions",
+ "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id":
+ "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"},
+ {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
headers:
Accept:
- '*/*'
@@ -1587,19 +1900,34 @@ interactions:
Content-Type:
- application/json
method: POST
- uri: https://api.datadoghq.eu/api/v1/dashboard/lists/manual
+ uri: https://api.datadoghq.eu/api/v2/roles
response:
body:
- string: '{"author": {"name": "Frog", "handle": "frog@datadoghq.com"}, "created":
- "2023-12-19T16:53:27.641851+00:00", "dashboards": null, "dashboard_count":
- 0, "id": 33962, "is_favorite": false, "modified": "2023-12-19T16:53:27.641858+00:00",
- "name": "Empty Test List", "type": "manual_dashboard_list"}'
+ string: '{"data": {"type": "roles", "id": "3a81548a-a426-11ee-bcb1-da7ad0900005",
+ "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1686121345",
+ "created_at": "2023-12-26T19:37:39.232581+00:00", "modified_at": "2023-12-26T19:37:39.259746+00:00"},
+ "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
+ {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
+ "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
+ "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
+ "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"},
+ {"type": "permissions", "id": "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type":
+ "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions",
+ "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id":
+ "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"},
+ {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"dashboards": []}'
+ body: '{"type": "query alert", "name": "Composite monitor - child 1", "message":
+ "Composite monitor - child 1", "tags": ["test:foo"], "query": "avg(last_5m):avg:dd.dialtone.historical.metrics{*}
+ > 20", "options": {"thresholds": {"critical": 20.0, "warning": 10.0}, "notify_audit":
+ false, "require_full_window": true, "notify_no_data": false, "renotify_interval":
+ 1440, "timeout_h": 0, "include_tags": true, "no_data_timeframe": null, "escalation_message":
+ "", "renotify_statuses": ["no data"], "new_host_delay": 300, "silenced": {}},
+ "multi": false, "restricted_roles": null, "priority": null}'
headers:
Accept:
- '*/*'
@@ -1607,17 +1935,33 @@ interactions:
- gzip, deflate
Content-Type:
- application/json
- method: PUT
- uri: https://api.datadoghq.eu/api/v2/dashboard/lists/manual/33962/dashboards
+ method: POST
+ uri: https://api.datadoghq.eu/api/v1/monitor
response:
body:
- string: '{"dashboards": []}'
+ string: '{"id": 14605711, "org_id": 1000144613, "type": "query alert", "name":
+ "Composite monitor - child 1", "message": "Composite monitor - child 1", "tags":
+ ["test:foo"], "query": "avg(last_5m):avg:dd.dialtone.historical.metrics{*}
+ > 20", "options": {"thresholds": {"critical": 20.0, "warning": 10.0}, "notify_audit":
+ false, "require_full_window": true, "notify_no_data": false, "renotify_interval":
+ 1440, "timeout_h": 0, "include_tags": true, "no_data_timeframe": null, "escalation_message":
+ "", "renotify_statuses": ["no data"], "new_host_delay": 300, "silenced": {}},
+ "multi": false, "created_at": 1703619459000, "created": "2023-12-26T19:37:39.611264+00:00",
+ "modified": "2023-12-26T19:37:39.611264+00:00", "deleted": null, "restricted_roles":
+ null, "priority": null, "overall_state_modified": null, "overall_state": "No
+ Data", "creator": {"name": "CI Service Account", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com", "id": 1001177794}}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"name": "Empty Test List"}'
+ body: '{"type": "service check", "name": "Host monitor", "message": "Test host
+ monitor", "tags": ["service:daimler-health-service"], "query": "\"datadog.agent.up\".over(\"*\").by(\"host\").last(2).count_by_status()",
+ "options": {"thresholds": {"critical": 1, "warning": 1, "ok": 1}, "notify_audit":
+ false, "notify_no_data": true, "no_data_timeframe": 2, "renotify_interval":
+ 0, "timeout_h": 0, "include_tags": true, "new_group_delay": 300, "silenced":
+ {}}, "multi": true, "restricted_roles": null, "priority": null}'
headers:
Accept:
- '*/*'
@@ -1626,127 +1970,70 @@ interactions:
Content-Type:
- application/json
method: POST
- uri: https://api.datadoghq.eu/api/v1/dashboard/lists/manual
+ uri: https://api.datadoghq.eu/api/v1/monitor
response:
body:
- string: '{"author": {"name": "Frog", "handle": "frog@datadoghq.com"}, "created":
- "2023-12-19T16:53:28.297547+00:00", "dashboards": null, "dashboard_count":
- 0, "id": 33963, "is_favorite": false, "modified": "2023-12-19T16:53:28.297554+00:00",
- "name": "Empty Test List", "type": "manual_dashboard_list"}'
+ string: '{"id": 14605712, "org_id": 1000144613, "type": "service check", "name":
+ "Host monitor", "message": "Test host monitor", "tags": ["service:daimler-health-service"],
+ "query": "\"datadog.agent.up\".over(\"*\").by(\"host\").last(2).count_by_status()",
+ "options": {"thresholds": {"critical": 1, "warning": 1, "ok": 1}, "notify_audit":
+ false, "notify_no_data": true, "no_data_timeframe": 2, "renotify_interval":
+ 0, "timeout_h": 0, "include_tags": true, "new_group_delay": 300, "silenced":
+ {}}, "multi": true, "created_at": 1703619459000, "created": "2023-12-26T19:37:39.989729+00:00",
+ "modified": "2023-12-26T19:37:39.989729+00:00", "deleted": null, "restricted_roles":
+ null, "priority": null, "overall_state_modified": null, "overall_state": "No
+ Data", "creator": {"name": "CI Service Account", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com", "id": 1001177794}}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"dashboards": []}'
- headers:
- Accept:
+ body: '{"type": "metric alert", "name": "[Synthetic Private Locations] {{location_id.name}}
+ stopped reporting", "message": "Private location {{location_id.name}} stopped
+ reporting to Datadog.", "tags": [], "query": "min(last_5m):avg:synthetics.pl.worker.running{*}
+ by {location_id} < 1", "options": {"notify_audit": false, "locked": false, "include_tags":
+ true, "thresholds": {"critical": 1.0}, "new_host_delay": 300, "notify_no_data":
+ true, "silenced": {}}, "multi": true, "restricted_roles": null, "priority":
+ null}'
+ headers:
+ Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
Content-Type:
- application/json
- method: PUT
- uri: https://api.datadoghq.eu/api/v2/dashboard/lists/manual/33963/dashboards
+ method: POST
+ uri: https://api.datadoghq.eu/api/v1/monitor
response:
body:
- string: '{"dashboards": []}'
+ string: '{"id": 14605713, "org_id": 1000144613, "type": "metric alert", "name":
+ "[Synthetic Private Locations] {{location_id.name}} stopped reporting", "message":
+ "Private location {{location_id.name}} stopped reporting to Datadog.", "tags":
+ [], "query": "min(last_5m):avg:synthetics.pl.worker.running{*} by {location_id}
+ < 1", "options": {"notify_audit": false, "locked": false, "include_tags":
+ true, "thresholds": {"critical": 1.0}, "new_host_delay": 300, "notify_no_data":
+ true, "silenced": {}}, "multi": true, "created_at": 1703619460000, "created":
+ "2023-12-26T19:37:40.302173+00:00", "modified": "2023-12-26T19:37:40.302173+00:00",
+ "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
+ null, "overall_state": "No Data", "creator": {"name": "CI Service Account",
+ "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com",
+ "id": 1001177794}}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"data": {"type": "roles", "attributes": {"name": "Datadog Standard Role"},
- "relationships": {"permissions": {"data": [{"type": "permissions", "id": "f1666372-d87d-11e8-acac-6be484ba794a"},
- {"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":
- "1ad6fd30-2844-11eb-a18d-5f72a244f27a"}, {"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": "da1b47fc-2dce-11eb-9145-5783a37d467c"}, {"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": "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": "7fbea6aa-c59e-11ec-90fb-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": "72d1e2fe-1cd8-11ed-a26b-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": "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": "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":
- "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"},
- {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
+ body: '{"type": "metric alert", "name": "[Synthetic Private Locations] {{location_id.name}}
+ uses an outdated image version", "message": "Private location {{location_id.name}}
+ is running an outdated image version. Learn more about the current version in
+ use on your [Private locations page](https://app.datadoghq.com/synthetics/settings/private-locations?id={{location_id.name}})
+ and upgrade workers to the most recent version of the image by pulling the `datadog/synthetics-private-location-worker`
+ image with the `latest` tag.", "tags": [], "query": "max(last_15m):sum:synthetics.pl.worker.outdated{*}
+ by {location_id} > 0", "options": {"notify_audit": false, "locked": false, "include_tags":
+ true, "thresholds": {"critical": 0.0}, "new_host_delay": 300, "notify_no_data":
+ false, "silenced": {}}, "multi": true, "restricted_roles": null, "priority":
+ null}'
headers:
Accept:
- '*/*'
@@ -1755,121 +2042,38 @@ interactions:
Content-Type:
- application/json
method: POST
- uri: https://api.datadoghq.eu/api/v2/roles
+ uri: https://api.datadoghq.eu/api/v1/monitor
response:
body:
- string: '{"data": {"type": "roles", "id": "22b717f0-9e8f-11ee-a661-da7ad0900005",
- "attributes": {"name": "Datadog Standard Role", "created_at": "2023-12-19T16:53:29.499639+00:00",
- "modified_at": "2023-12-19T16:53:29.552971+00:00"}, "relationships": {"permissions":
- {"data": [{"type": "permissions", "id": "f1666372-d87d-11e8-acac-6be484ba794a"},
- {"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":
- "1ad6fd30-2844-11eb-a18d-5f72a244f27a"}, {"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": "da1b47fc-2dce-11eb-9145-5783a37d467c"}, {"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": "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": "7fbea6aa-c59e-11ec-90fb-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": "72d1e2fe-1cd8-11ed-a26b-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": "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": "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":
- "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"},
- {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
+ string: '{"id": 14605714, "org_id": 1000144613, "type": "metric alert", "name":
+ "[Synthetic Private Locations] {{location_id.name}} uses an outdated image
+ version", "message": "Private location {{location_id.name}} is running an
+ outdated image version. Learn more about the current version in use on your
+ [Private locations page](https://app.datadoghq.com/synthetics/settings/private-locations?id={{location_id.name}})
+ and upgrade workers to the most recent version of the image by pulling the
+ `datadog/synthetics-private-location-worker` image with the `latest` tag.",
+ "tags": [], "query": "max(last_15m):sum:synthetics.pl.worker.outdated{*} by
+ {location_id} > 0", "options": {"notify_audit": false, "locked": false, "include_tags":
+ true, "thresholds": {"critical": 0.0}, "new_host_delay": 300, "notify_no_data":
+ false, "silenced": {}}, "multi": true, "created_at": 1703619460000, "created":
+ "2023-12-26T19:37:40.692475+00:00", "modified": "2023-12-26T19:37:40.692475+00:00",
+ "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
+ null, "overall_state": "No Data", "creator": {"name": "CI Service Account",
+ "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com",
+ "id": 1001177794}}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"data": {"type": "roles", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670404619"},
- "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
- {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
- "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
- "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
- "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"},
- {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type":
- "permissions", "id": "f33f74be-e746-11ec-87e3-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":
- "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
+ body: '{"type": "metric alert", "name": "[Synthetic Private Locations] {{location_id.name}}
+ is underprovisioned", "message": "Private location {{location_id.name}} is underprovisioned.\nVisit
+ this [documentation page](https://docs.datadoghq.com/synthetics/private_locations/?tab=docker#dimension-your-private-location)
+ to learn how to scale your private location.", "tags": [], "query": "avg(last_30m):avg:synthetics.pl.worker.remaining_slots{*}
+ by {location_id} < 1.5", "options": {"notify_audit": false, "locked": false,
+ "include_tags": true, "thresholds": {"critical": 1.5}, "new_host_delay": 300,
+ "notify_no_data": false, "silenced": {}}, "multi": true, "restricted_roles":
+ null, "priority": null}'
headers:
Accept:
- '*/*'
@@ -1878,44 +2082,34 @@ interactions:
Content-Type:
- application/json
method: POST
- uri: https://api.datadoghq.eu/api/v2/roles
+ uri: https://api.datadoghq.eu/api/v1/monitor
response:
body:
- string: '{"data": {"type": "roles", "id": "22ffccc0-9e8f-11ee-8103-da7ad0900005",
- "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670404619",
- "created_at": "2023-12-19T16:53:29.975812+00:00", "modified_at": "2023-12-19T16:53:30.001968+00:00"},
- "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
- {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
- "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
- "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
- "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"},
- {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type":
- "permissions", "id": "f33f74be-e746-11ec-87e3-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":
- "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
+ string: '{"id": 14605715, "org_id": 1000144613, "type": "metric alert", "name":
+ "[Synthetic Private Locations] {{location_id.name}} is underprovisioned",
+ "message": "Private location {{location_id.name}} is underprovisioned.\nVisit
+ this [documentation page](https://docs.datadoghq.com/synthetics/private_locations/?tab=docker#dimension-your-private-location)
+ to learn how to scale your private location.", "tags": [], "query": "avg(last_30m):avg:synthetics.pl.worker.remaining_slots{*}
+ by {location_id} < 1.5", "options": {"notify_audit": false, "locked": false,
+ "include_tags": true, "thresholds": {"critical": 1.5}, "new_host_delay": 300,
+ "notify_no_data": false, "silenced": {}}, "multi": true, "created_at": 1703619461000,
+ "created": "2023-12-26T19:37:41.030182+00:00", "modified": "2023-12-26T19:37:41.030182+00:00",
+ "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified":
+ null, "overall_state": "No Data", "creator": {"name": "CI Service Account",
+ "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com",
+ "id": 1001177794}}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"data": {"type": "roles", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670404656"},
- "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
- {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
- "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
- "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
- "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"},
- {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type":
- "permissions", "id": "f33f74be-e746-11ec-87e3-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":
- "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
+ body: '{"type": "event-v2 alert", "name": "Test event monitor", "message": "Test
+ event monitor", "tags": [], "query": "events(\"\").rollup(\"count\").last(\"5m\")
+ > 100", "options": {"notify_audit": false, "locked": false, "timeout_h": 0,
+ "include_tags": true, "restriction_query": null, "new_host_delay": 300, "notify_no_data":
+ false, "renotify_interval": 0, "groupby_simple_monitor": true, "enable_logs_sample":
+ false, "escalation_message": "", "thresholds": {"critical": 100.0}, "silenced":
+ {}}, "multi": false, "restricted_roles": null, "priority": null}'
headers:
Accept:
- '*/*'
@@ -1924,44 +2118,31 @@ interactions:
Content-Type:
- application/json
method: POST
- uri: https://api.datadoghq.eu/api/v2/roles
+ uri: https://api.datadoghq.eu/api/v1/monitor
response:
body:
- string: '{"data": {"type": "roles", "id": "234a9598-9e8f-11ee-8654-da7ad0900005",
- "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670404656",
- "created_at": "2023-12-19T16:53:30.465664+00:00", "modified_at": "2023-12-19T16:53:30.491294+00:00"},
- "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
- {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
- "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
- "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
- "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"},
- {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type":
- "permissions", "id": "f33f74be-e746-11ec-87e3-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":
- "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
+ string: '{"id": 14605716, "org_id": 1000144613, "type": "event-v2 alert", "name":
+ "Test event monitor", "message": "Test event monitor", "tags": [], "query":
+ "events(\"\").rollup(\"count\").last(\"5m\") > 100", "options": {"notify_audit":
+ false, "locked": false, "timeout_h": 0, "include_tags": true, "restriction_query":
+ null, "new_host_delay": 300, "notify_no_data": false, "renotify_interval":
+ 0, "groupby_simple_monitor": true, "enable_logs_sample": false, "escalation_message":
+ "", "thresholds": {"critical": 100.0}, "silenced": {}}, "multi": false, "created_at":
+ 1703619461000, "created": "2023-12-26T19:37:41.423761+00:00", "modified":
+ "2023-12-26T19:37:41.423761+00:00", "deleted": null, "restricted_roles": null,
+ "priority": null, "overall_state_modified": null, "overall_state": "No Data",
+ "creator": {"name": "CI Service Account", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com", "id": 1001177794}}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"data": {"type": "roles", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405007"},
- "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
- {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
- "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
- "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
- "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"},
- {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type":
- "permissions", "id": "f33f74be-e746-11ec-87e3-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":
- "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
+ body: '{"name": "SLO test", "tags": [], "monitor_tags": [], "thresholds": [{"timeframe":
+ "7d", "target": 99.0, "target_display": "99."}], "type": "metric", "type_id":
+ 1, "description": "Test update creation", "timeframe": "7d", "target_threshold":
+ 99.0, "query": {"denominator": "sum:api.requests{*}.as_count()", "numerator":
+ "sum:api.requests.status_ok{*}.as_count()"}}'
headers:
Accept:
- '*/*'
@@ -1970,44 +2151,23 @@ interactions:
Content-Type:
- application/json
method: POST
- uri: https://api.datadoghq.eu/api/v2/roles
+ uri: https://api.datadoghq.eu/api/v1/slo
response:
body:
- string: '{"data": {"type": "roles", "id": "23fcc8b2-9e8f-11ee-a583-da7ad0900005",
- "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405007",
- "created_at": "2023-12-19T16:53:31.632976+00:00", "modified_at": "2023-12-19T16:53:31.665111+00:00"},
- "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
- {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
- "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
- "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
- "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"},
- {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type":
- "permissions", "id": "f33f74be-e746-11ec-87e3-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":
- "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
+ string: '{"data": [{"id": "757d56d2b04c5ca198490666f0391009", "name": "SLO test",
+ "tags": [], "monitor_tags": [], "thresholds": [{"timeframe": "7d", "target":
+ 99.0, "target_display": "99."}], "type": "metric", "type_id": 1, "description":
+ "Test update creation", "timeframe": "7d", "target_threshold": 99.0, "query":
+ {"denominator": "sum:api.requests{*}.as_count()", "numerator": "sum:api.requests.status_ok{*}.as_count()"},
+ "creator": {"name": "CI Service Account", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com"}, "created_at": 1703619461, "modified_at": 1703619461}],
+ "error": null}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"data": {"type": "roles", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405911"},
- "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
- {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
- "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
- "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
- "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"},
- {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type":
- "permissions", "id": "f33f74be-e746-11ec-87e3-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":
- "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
+ body: '{"name": "Empty Test List"}'
headers:
Accept:
- '*/*'
@@ -2016,44 +2176,19 @@ interactions:
Content-Type:
- application/json
method: POST
- uri: https://api.datadoghq.eu/api/v2/roles
+ uri: https://api.datadoghq.eu/api/v1/dashboard/lists/manual
response:
body:
- string: '{"data": {"type": "roles", "id": "2445ef1a-9e8f-11ee-b62e-da7ad0900005",
- "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405911",
- "created_at": "2023-12-19T16:53:32.112919+00:00", "modified_at": "2023-12-19T16:53:32.147745+00:00"},
- "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
- {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
- "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
- "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
- "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"},
- {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type":
- "permissions", "id": "f33f74be-e746-11ec-87e3-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":
- "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
+ string: '{"author": {"name": "CI Service Account", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec"},
+ "created": "2023-12-26T19:37:42.115973+00:00", "dashboards": null, "dashboard_count":
+ 0, "id": 34028, "is_favorite": false, "modified": "2023-12-26T19:37:42.115982+00:00",
+ "name": "Empty Test List", "type": "manual_dashboard_list"}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"data": {"type": "roles", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405924"},
- "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
- {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
- "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
- "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
- "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"},
- {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type":
- "permissions", "id": "f33f74be-e746-11ec-87e3-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":
- "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
+ body: '{"dashboards": []}'
headers:
Accept:
- '*/*'
@@ -2061,42 +2196,17 @@ interactions:
- gzip, deflate
Content-Type:
- application/json
- method: POST
- uri: https://api.datadoghq.eu/api/v2/roles
+ method: PUT
+ uri: https://api.datadoghq.eu/api/v2/dashboard/lists/manual/34028/dashboards
response:
body:
- string: '{"data": {"type": "roles", "id": "2491cf2a-9e8f-11ee-8590-da7ad0900005",
- "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1670405924",
- "created_at": "2023-12-19T16:53:32.610357+00:00", "modified_at": "2023-12-19T16:53:32.637340+00:00"},
- "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
- {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
- "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
- "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
- "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "f5e054da-4792-11ec-944b-da7ad0900005"},
- {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"}, {"type":
- "permissions", "id": "f33f74be-e746-11ec-87e3-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":
- "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
+ string: '{"dashboards": []}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"data": {"type": "roles", "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1686121345"},
- "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
- {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
- "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
- "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
- "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"},
- {"type": "permissions", "id": "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type":
- "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions",
- "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id":
- "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"},
- {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
+ body: '{"name": "Empty Test List"}'
headers:
Accept:
- '*/*'
@@ -2105,30 +2215,19 @@ interactions:
Content-Type:
- application/json
method: POST
- uri: https://api.datadoghq.eu/api/v2/roles
+ uri: https://api.datadoghq.eu/api/v1/dashboard/lists/manual
response:
body:
- string: '{"data": {"type": "roles", "id": "24d549e4-9e8f-11ee-bcac-da7ad0900005",
- "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1686121345",
- "created_at": "2023-12-19T16:53:33.052271+00:00", "modified_at": "2023-12-19T16:53:33.080134+00:00"},
- "relationships": {"permissions": {"data": [{"type": "permissions", "id": "2147a4f0-d3d9-11e9-a614-83d5d3c791ee"},
- {"type": "permissions", "id": "c898551e-d8b2-11e9-a336-e3a79c23bd8d"}, {"type":
- "permissions", "id": "b7706de0-2dce-11eb-9145-775e4a0d889a"}, {"type": "permissions",
- "id": "122e20a4-d36c-11eb-b2bf-da7ad0900005"}, {"type": "permissions", "id":
- "7ee6e4ea-f376-11eb-a5a7-da7ad0900005"}, {"type": "permissions", "id": "c7ac3e2a-9a59-11ec-9cd5-da7ad0900005"},
- {"type": "permissions", "id": "f33f74be-e746-11ec-87e3-da7ad0900005"}, {"type":
- "permissions", "id": "8b2660ac-7aff-11ed-9d0d-da7ad0900005"}, {"type": "permissions",
- "id": "3c05b450-ffe8-11ed-b4b4-da7ad0900005"}, {"type": "permissions", "id":
- "3276c638-0ebe-11ee-9428-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"},
- {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}'
+ string: '{"author": {"name": "CI Service Account", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec"},
+ "created": "2023-12-26T19:37:42.604601+00:00", "dashboards": null, "dashboard_count":
+ 0, "id": 34029, "is_favorite": false, "modified": "2023-12-26T19:37:42.604608+00:00",
+ "name": "Empty Test List", "type": "manual_dashboard_list"}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"description": "Test Test-Create_a_private_location_returns_OK_response-1694441551
- description", "tags": ["test:testcreateaprivatelocationreturnsokresponse1694441551"],
- "name": "Test-Create_a_private_location_returns_OK_response-1694441551"}'
+ body: '{"dashboards": []}'
headers:
Accept:
- '*/*'
@@ -2136,27 +2235,19 @@ interactions:
- gzip, deflate
Content-Type:
- application/json
- method: POST
- uri: https://api.datadoghq.eu/api/v1/synthetics/private-locations
+ method: PUT
+ uri: https://api.datadoghq.eu/api/v2/dashboard/lists/manual/34029/dashboards
response:
body:
- string: '{"private_location": {"createdAt": "2023-12-19T16:53:34.189646+00:00",
- "modifiedAt": "2023-12-19T16:53:34.189646+00:00", "description": "Test Test-Create_a_private_location_returns_OK_response-1694441551
- description", "tags": ["test:testcreateaprivatelocationreturnsokresponse1694441551"],
- "name": "Test-Create_a_private_location_returns_OK_response-1694441551", "metadata":
- null, "id": "pl:test-create_a_private_location_returns_ok_response-1694441551-9eba6e4fa1e226c4f258afd5c0411e20",
- "createdBy": "frog@datadoghq.com", "config": {"site": "datadoghq.eu"}}, "result_encryption":
- {"id": "sha256$base64$HCje9BSaPgSwhmA3TL6kYknOgjCW72k8ilCn4PAuins=", "key":
- "-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyhjTDKqgNuqzlTKKEztw\nqQmfi3Vz/BCmaSRmwZenLP/a/GYG2pKR27hHv5fQB3v08W/BC1VA2XmuCR+EJiYo\nMWfjvLw65sv+S52Vsx4z0EuP5k1qmRyeRDPPENBxAypfLMbt1F6rTxI42ionaHSJ\nBWC8emJYOjAex5shz2I/aj3P3oht8ePr5Jj6A2jkewhBUvfcXQopAy21KhAtEEQB\n7NfG/JWSo9TEqEA4QxGEEqo4rHSHgRQVxtXINzDSp/M5136wVsLsTRF0bSLXSdrf\nRCZje4OdR5Ij9HdhB4F+2KW22Fm3vJlvPCG1C2ZtEDz3xzv9+hcz/rV7WrBMua3j\nZTei5EMTSOt0hIL/DmdId4LmWTc2fYWxe2nYUuAgPw+o+jaju5E5htFbd4JRqyEu\nmMJra8f0BWH80mEDiB1DqfsbVFNYmjG5pVJR7OEV4GRNw9CmwRhcwaXpjouYFrsy\nKvRRdAhLigC+FUDtsLZkgM4T6g4VOjgUTMuRAYgouyyjniuRTn4sKE/t0zfP6/0t\nS/izsjItIat+0RzkO7BY22ga9h1/orqFwgCtwX+WYDHSzo2oMku1tup16WP3Y2jj\n2MJGpHPhDkBoCKRXq34xGxHGoing0zCqmjk1h5WTZdVrppTjJo5sxK0ZGlOXdsk2\nGgiZrQVfZjtotyWUyJnC758CAwEAAQ==\n-----END
- PUBLIC KEY-----\n"}}'
+ string: '{"dashboards": []}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"description": "Test Test-Create_a_private_location_returns_OK_response-1694441705
- description", "tags": ["test:testcreateaprivatelocationreturnsokresponse1694441705"],
- "name": "Test-Create_a_private_location_returns_OK_response-1694441705"}'
+ body: '{"name": "TF_TESTACCDATADOGSYNTHETICSTESTMULTISTEPAPI_BASIC_LOCAL_1686121345",
+ "description": "a global variable", "type": "variable", "tags": ["foo:bar",
+ "baz"], "value": {"secure": false, "value": "variable-value"}}'
headers:
Accept:
- '*/*'
@@ -2165,26 +2256,22 @@ interactions:
Content-Type:
- application/json
method: POST
- uri: https://api.datadoghq.eu/api/v1/synthetics/private-locations
+ uri: https://api.datadoghq.eu/api/v1/synthetics/variables
response:
body:
- string: '{"private_location": {"createdAt": "2023-12-19T16:53:35.736980+00:00",
- "modifiedAt": "2023-12-19T16:53:35.736980+00:00", "description": "Test Test-Create_a_private_location_returns_OK_response-1694441705
- description", "tags": ["test:testcreateaprivatelocationreturnsokresponse1694441705"],
- "name": "Test-Create_a_private_location_returns_OK_response-1694441705", "metadata":
- null, "id": "pl:test-create_a_private_location_returns_ok_response-1694441705-e351bb7df4f464d647a1558946a964b7",
- "createdBy": "frog@datadoghq.com", "config": {"site": "datadoghq.eu"}}, "result_encryption":
- {"id": "sha256$base64$HCje9BSaPgSwhmA3TL6kYknOgjCW72k8ilCn4PAuins=", "key":
- "-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyhjTDKqgNuqzlTKKEztw\nqQmfi3Vz/BCmaSRmwZenLP/a/GYG2pKR27hHv5fQB3v08W/BC1VA2XmuCR+EJiYo\nMWfjvLw65sv+S52Vsx4z0EuP5k1qmRyeRDPPENBxAypfLMbt1F6rTxI42ionaHSJ\nBWC8emJYOjAex5shz2I/aj3P3oht8ePr5Jj6A2jkewhBUvfcXQopAy21KhAtEEQB\n7NfG/JWSo9TEqEA4QxGEEqo4rHSHgRQVxtXINzDSp/M5136wVsLsTRF0bSLXSdrf\nRCZje4OdR5Ij9HdhB4F+2KW22Fm3vJlvPCG1C2ZtEDz3xzv9+hcz/rV7WrBMua3j\nZTei5EMTSOt0hIL/DmdId4LmWTc2fYWxe2nYUuAgPw+o+jaju5E5htFbd4JRqyEu\nmMJra8f0BWH80mEDiB1DqfsbVFNYmjG5pVJR7OEV4GRNw9CmwRhcwaXpjouYFrsy\nKvRRdAhLigC+FUDtsLZkgM4T6g4VOjgUTMuRAYgouyyjniuRTn4sKE/t0zfP6/0t\nS/izsjItIat+0RzkO7BY22ga9h1/orqFwgCtwX+WYDHSzo2oMku1tup16WP3Y2jj\n2MJGpHPhDkBoCKRXq34xGxHGoing0zCqmjk1h5WTZdVrppTjJo5sxK0ZGlOXdsk2\nGgiZrQVfZjtotyWUyJnC758CAwEAAQ==\n-----END
- PUBLIC KEY-----\n"}}'
+ string: '{"id": "06fdd901-505a-465a-822e-18f547e598cf", "name": "TF_TESTACCDATADOGSYNTHETICSTESTMULTISTEPAPI_BASIC_LOCAL_1686121345",
+ "description": "a global variable", "type": "variable", "tags": ["foo:bar",
+ "baz"], "parse_test_public_id": null, "parse_test_name": null, "parse_test_options":
+ null, "parse_test_extracted_at": null, "is_totp": null, "is_fido": null, "last_error":
+ null, "value": {"secure": false, "value": "variable-value"}}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"description": "Test Test-Create_a_private_location_returns_OK_response-1694443516
- description", "tags": ["test:testcreateaprivatelocationreturnsokresponse1694443516"],
- "name": "Test-Create_a_private_location_returns_OK_response-1694443516"}'
+ body: '{"name": "TF_TESTACCDATADOGSYNTHETICSTESTMULTISTEPAPI_BASIC_LOCAL_1670405911",
+ "description": "a global variable", "type": "variable", "tags": ["foo:bar",
+ "baz"], "value": {"secure": false, "value": "variable-value"}}'
headers:
Accept:
- '*/*'
@@ -2193,25 +2280,21 @@ interactions:
Content-Type:
- application/json
method: POST
- uri: https://api.datadoghq.eu/api/v1/synthetics/private-locations
+ uri: https://api.datadoghq.eu/api/v1/synthetics/variables
response:
body:
- string: '{"private_location": {"createdAt": "2023-12-19T16:53:37.457902+00:00",
- "modifiedAt": "2023-12-19T16:53:37.457902+00:00", "description": "Test Test-Create_a_private_location_returns_OK_response-1694443516
- description", "tags": ["test:testcreateaprivatelocationreturnsokresponse1694443516"],
- "name": "Test-Create_a_private_location_returns_OK_response-1694443516", "metadata":
- null, "id": "pl:test-create_a_private_location_returns_ok_response-1694443516-b0b55721d21deff0afd76a41c764d98c",
- "createdBy": "frog@datadoghq.com", "config": {"site": "datadoghq.eu"}}, "result_encryption":
- {"id": "sha256$base64$HCje9BSaPgSwhmA3TL6kYknOgjCW72k8ilCn4PAuins=", "key":
- "-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyhjTDKqgNuqzlTKKEztw\nqQmfi3Vz/BCmaSRmwZenLP/a/GYG2pKR27hHv5fQB3v08W/BC1VA2XmuCR+EJiYo\nMWfjvLw65sv+S52Vsx4z0EuP5k1qmRyeRDPPENBxAypfLMbt1F6rTxI42ionaHSJ\nBWC8emJYOjAex5shz2I/aj3P3oht8ePr5Jj6A2jkewhBUvfcXQopAy21KhAtEEQB\n7NfG/JWSo9TEqEA4QxGEEqo4rHSHgRQVxtXINzDSp/M5136wVsLsTRF0bSLXSdrf\nRCZje4OdR5Ij9HdhB4F+2KW22Fm3vJlvPCG1C2ZtEDz3xzv9+hcz/rV7WrBMua3j\nZTei5EMTSOt0hIL/DmdId4LmWTc2fYWxe2nYUuAgPw+o+jaju5E5htFbd4JRqyEu\nmMJra8f0BWH80mEDiB1DqfsbVFNYmjG5pVJR7OEV4GRNw9CmwRhcwaXpjouYFrsy\nKvRRdAhLigC+FUDtsLZkgM4T6g4VOjgUTMuRAYgouyyjniuRTn4sKE/t0zfP6/0t\nS/izsjItIat+0RzkO7BY22ga9h1/orqFwgCtwX+WYDHSzo2oMku1tup16WP3Y2jj\n2MJGpHPhDkBoCKRXq34xGxHGoing0zCqmjk1h5WTZdVrppTjJo5sxK0ZGlOXdsk2\nGgiZrQVfZjtotyWUyJnC758CAwEAAQ==\n-----END
- PUBLIC KEY-----\n"}}'
+ string: '{"id": "0cdc8837-a895-4a30-9b8e-70f915b5cd47", "name": "TF_TESTACCDATADOGSYNTHETICSTESTMULTISTEPAPI_BASIC_LOCAL_1670405911",
+ "description": "a global variable", "type": "variable", "tags": ["foo:bar",
+ "baz"], "parse_test_public_id": null, "parse_test_name": null, "parse_test_options":
+ null, "parse_test_extracted_at": null, "is_totp": null, "is_fido": null, "last_error":
+ null, "value": {"secure": false, "value": "variable-value"}}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"description": "datadog-sync-cli test", "tags": ["key:value"], "name":
- "Test Private Variable"}'
+ body: '{"name": "TEST_VARIABLE", "description": "test", "type": "variable", "tags":
+ ["check_type:api"], "value": {"secure": false, "value": "TESTVALUELETSSEEdadsddsadsadadsadsad"}}'
headers:
Accept:
- '*/*'
@@ -2220,27 +2303,121 @@ interactions:
Content-Type:
- application/json
method: POST
- uri: https://api.datadoghq.eu/api/v1/synthetics/private-locations
+ uri: https://api.datadoghq.eu/api/v1/synthetics/variables
response:
body:
- string: '{"private_location": {"createdAt": "2023-12-19T16:53:38.972374+00:00",
- "modifiedAt": "2023-12-19T16:53:38.972374+00:00", "description": "datadog-sync-cli
- test", "tags": ["key:value"], "name": "Test Private Variable", "metadata":
- null, "id": "pl:test-private-variable-9fc470dc49d4115924cacc1585bd2c6d", "createdBy":
- "frog@datadoghq.com", "config": {"site": "datadoghq.eu"}}, "result_encryption":
- {"id": "sha256$base64$HCje9BSaPgSwhmA3TL6kYknOgjCW72k8ilCn4PAuins=", "key":
- "-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyhjTDKqgNuqzlTKKEztw\nqQmfi3Vz/BCmaSRmwZenLP/a/GYG2pKR27hHv5fQB3v08W/BC1VA2XmuCR+EJiYo\nMWfjvLw65sv+S52Vsx4z0EuP5k1qmRyeRDPPENBxAypfLMbt1F6rTxI42ionaHSJ\nBWC8emJYOjAex5shz2I/aj3P3oht8ePr5Jj6A2jkewhBUvfcXQopAy21KhAtEEQB\n7NfG/JWSo9TEqEA4QxGEEqo4rHSHgRQVxtXINzDSp/M5136wVsLsTRF0bSLXSdrf\nRCZje4OdR5Ij9HdhB4F+2KW22Fm3vJlvPCG1C2ZtEDz3xzv9+hcz/rV7WrBMua3j\nZTei5EMTSOt0hIL/DmdId4LmWTc2fYWxe2nYUuAgPw+o+jaju5E5htFbd4JRqyEu\nmMJra8f0BWH80mEDiB1DqfsbVFNYmjG5pVJR7OEV4GRNw9CmwRhcwaXpjouYFrsy\nKvRRdAhLigC+FUDtsLZkgM4T6g4VOjgUTMuRAYgouyyjniuRTn4sKE/t0zfP6/0t\nS/izsjItIat+0RzkO7BY22ga9h1/orqFwgCtwX+WYDHSzo2oMku1tup16WP3Y2jj\n2MJGpHPhDkBoCKRXq34xGxHGoing0zCqmjk1h5WTZdVrppTjJo5sxK0ZGlOXdsk2\nGgiZrQVfZjtotyWUyJnC758CAwEAAQ==\n-----END
- PUBLIC KEY-----\n"}}'
+ string: '{"id": "b994f767-c190-4dae-9924-0048a6a63336", "name": "TEST_VARIABLE",
+ "description": "test", "type": "variable", "tags": ["check_type:api"], "parse_test_public_id":
+ null, "parse_test_name": null, "parse_test_options": null, "parse_test_extracted_at":
+ null, "is_totp": null, "is_fido": null, "last_error": null, "value": {"secure":
+ false, "value": "TESTVALUELETSSEEdadsddsadsadadsadsad"}}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"name": "HTTP Test", "status": "paused", "type": "api", "tags": [], "config":
- {"request": {"url": "https://google.com", "method": "GET"}, "assertions": [{"operator":
- "lessThan", "type": "responseTime", "target": 1000}, {"operator": "is", "type":
- "statusCode", "target": 301}, {"operator": "is", "property": "content-type",
- "type": "header", "target": "text/html; charset=UTF-8"}]}, "message": "Test
+ body: '{"name": "TF_TESTACCDATADOGSYNTHETICSTESTMULTISTEPAPI_BASIC_LOCAL_1670404656",
+ "description": "a global variable", "type": "variable", "tags": ["foo:bar",
+ "baz"], "value": {"secure": false, "value": "variable-value"}}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: POST
+ uri: https://api.datadoghq.eu/api/v1/synthetics/variables
+ response:
+ body:
+ string: '{"id": "81b56828-4aee-4a07-886d-c2d0b7816626", "name": "TF_TESTACCDATADOGSYNTHETICSTESTMULTISTEPAPI_BASIC_LOCAL_1670404656",
+ "description": "a global variable", "type": "variable", "tags": ["foo:bar",
+ "baz"], "parse_test_public_id": null, "parse_test_name": null, "parse_test_options":
+ null, "parse_test_extracted_at": null, "is_totp": null, "is_fido": null, "last_error":
+ null, "value": {"secure": false, "value": "variable-value"}}'
+ headers: {}
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"name": "EXAMPLE_VARIABLE", "description": "Description of the variable",
+ "type": "variable", "tags": ["foo:bar", "env:test"], "value": {"secure": false,
+ "value": "variable-value"}}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: POST
+ uri: https://api.datadoghq.eu/api/v1/synthetics/variables
+ response:
+ body:
+ string: '{"id": "ec1fc3a9-8a79-4048-b3f7-38298fef4bd9", "name": "EXAMPLE_VARIABLE",
+ "description": "Description of the variable", "type": "variable", "tags":
+ ["foo:bar", "env:test"], "parse_test_public_id": null, "parse_test_name":
+ null, "parse_test_options": null, "parse_test_extracted_at": null, "is_totp":
+ null, "is_fido": null, "last_error": null, "value": {"secure": false, "value":
+ "variable-value"}}'
+ headers: {}
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"name": "TEST_SECRETS", "description": "", "type": "variable", "tags":
+ [], "value": {"secure": true, "value": "SECRET"}}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: POST
+ uri: https://api.datadoghq.eu/api/v1/synthetics/variables
+ response:
+ body:
+ string: '{"id": "a7460a49-dbd4-4d88-925f-f3505a6c4af3", "name": "TEST_SECRETS",
+ "description": "", "type": "variable", "tags": [], "parse_test_public_id":
+ null, "parse_test_name": null, "parse_test_options": null, "parse_test_extracted_at":
+ null, "is_totp": null, "is_fido": null, "last_error": null, "value": {"secure":
+ true}}'
+ headers: {}
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"data": {"type": "users", "attributes": {"name": "test-user", "email":
+ "new@example.com", "disabled": false, "allowed_login_methods": []}, "id": "16646c0f-a0fc-11ee-ac60-ced34c8fb548"}}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: PATCH
+ uri: https://api.datadoghq.eu/api/v2/users/16646c0f-a0fc-11ee-ac60-ced34c8fb548
+ response:
+ body:
+ string: '{"data": {"type": "users", "id": "16646c0f-a0fc-11ee-ac60-ced34c8fb548",
+ "attributes": {"name": "test-user", "handle": "new@example.com", "created_at":
+ "2023-12-22T18:58:26.294705+00:00", "modified_at": "2023-12-26T19:37:45.141489+00:00",
+ "email": "new@example.com", "icon": "https://secure.gravatar.com/avatar/b681d72feaf8bf6a93d9a8ab86679ec3?s=48&d=retro",
+ "title": null, "verified": false, "service_account": false, "disabled": false,
+ "allowed_login_methods": [], "status": "Pending"}, "relationships": {"roles":
+ {"data": []}, "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}}}'
+ headers: {}
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"name": "HTTP Test", "status": "paused", "type": "api", "tags": [], "config":
+ {"request": {"url": "https://google.com", "method": "GET"}, "assertions": [{"operator":
+ "lessThan", "type": "responseTime", "target": 1000}, {"operator": "is", "type":
+ "statusCode", "target": 301}, {"operator": "is", "property": "content-type",
+ "type": "header", "target": "text/html; charset=UTF-8"}]}, "message": "Test
synthetics ", "options": {"retry": {"count": 1, "interval": 300}, "tick_every":
604800, "monitor_options": {"include_tags": true, "notify_audit": false, "new_host_delay":
300, "on_missing_data": "show_no_data", "renotify_interval": 120}, "monitor_priority":
@@ -2257,9 +2434,9 @@ interactions:
uri: https://api.datadoghq.eu/api/v1/synthetics/tests
response:
body:
- string: '{"public_id": "q6t-wfn-646", "name": "HTTP Test", "status": "paused",
- "type": "api", "tags": [], "created_at": "2023-12-19T16:53:39.938077+00:00",
- "modified_at": "2023-12-19T16:53:39.938077+00:00", "config": {"request": {"url":
+ string: '{"public_id": "xc2-r2r-75g", "name": "HTTP Test", "status": "paused",
+ "type": "api", "tags": [], "created_at": "2023-12-26T19:37:45.720175+00:00",
+ "modified_at": "2023-12-26T19:37:45.720175+00:00", "config": {"request": {"url":
"https://google.com", "method": "GET"}, "assertions": [{"operator": "lessThan",
"type": "responseTime", "target": 1000}, {"operator": "is", "type": "statusCode",
"target": 301}, {"operator": "is", "property": "content-type", "type": "header",
@@ -2268,10 +2445,10 @@ interactions:
{"include_tags": true, "notify_audit": false, "new_host_delay": 300, "on_missing_data":
"show_no_data", "renotify_interval": 120}, "monitor_priority": 3, "min_location_failed":
1, "min_failure_duration": 120}, "locations": ["aws:ca-central-1"], "subtype":
- "http", "created_by": {"name": "Frog", "handle": "frog@datadoghq.com", "email":
- "frog@datadoghq.com"}, "deleted_at": null, "monitor_id": 14510190, "org_id":
- 1000044987, "modified_by": {"name": "Frog", "handle": "frog@datadoghq.com",
- "email": "frog@datadoghq.com"}}'
+ "http", "created_by": {"name": "CI Service Account", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com"}, "deleted_at": null, "monitor_id": 14605717,
+ "org_id": 1000144613, "modified_by": {"name": "CI Service Account", "handle":
+ "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com"}}'
headers: {}
status:
code: 200
@@ -2304,9 +2481,9 @@ interactions:
uri: https://api.datadoghq.eu/api/v1/synthetics/tests
response:
body:
- string: '{"public_id": "2um-zt6-cby", "name": "Test-Trigger_Synthetics_tests_returns_OK_response-1666783270",
- "status": "live", "type": "api", "tags": ["testing:api"], "created_at": "2023-12-19T16:53:40.791365+00:00",
- "modified_at": "2023-12-19T16:53:40.791365+00:00", "config": {"request": {"certificate":
+ string: '{"public_id": "fun-hq6-tqi", "name": "Test-Trigger_Synthetics_tests_returns_OK_response-1666783270",
+ "status": "live", "type": "api", "tags": ["testing:api"], "created_at": "2023-12-26T19:37:46.553692+00:00",
+ "modified_at": "2023-12-26T19:37:46.553692+00:00", "config": {"request": {"certificate":
{"cert": {"updatedAt": "2020-10-16T09:23:24.857Z", "filename": "cert-filename"},
"key": {"updatedAt": "2020-10-16T09:23:24.857Z", "filename": "key-filename"}},
"url": "https://datadoghq.com", "headers": {"unique": "testtriggersyntheticstestsreturnsokresponse1666783270"},
@@ -2321,9 +2498,10 @@ interactions:
10}, "min_location_failed": 1, "allow_insecure": true, "follow_redirects":
true, "min_failure_duration": 10, "monitor_priority": 5, "monitor_name": "Test-Trigger_Synthetics_tests_returns_OK_response-1666783270",
"tick_every": 60}, "locations": ["aws:us-east-2"], "subtype": "http", "created_by":
- {"name": "Frog", "handle": "frog@datadoghq.com", "email": "frog@datadoghq.com"},
- "deleted_at": null, "monitor_id": 14510191, "org_id": 1000044987, "modified_by":
- {"name": "Frog", "handle": "frog@datadoghq.com", "email": "frog@datadoghq.com"}}'
+ {"name": "CI Service Account", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com"}, "deleted_at": null, "monitor_id": 14605718,
+ "org_id": 1000144613, "modified_by": {"name": "CI Service Account", "handle":
+ "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com"}}'
headers: {}
status:
code: 200
@@ -2347,18 +2525,18 @@ interactions:
uri: https://api.datadoghq.eu/api/v1/synthetics/tests
response:
body:
- string: '{"public_id": "ppw-qzr-pk4", "name": "TCP Test", "status": "live",
- "type": "api", "tags": ["foo:bar", "foo", "env:test"], "created_at": "2023-12-19T16:53:42.434533+00:00",
- "modified_at": "2023-12-19T16:53:42.434533+00:00", "config": {"request": {"host":
+ string: '{"public_id": "5fu-ndx-75u", "name": "TCP Test", "status": "live",
+ "type": "api", "tags": ["foo:bar", "foo", "env:test"], "created_at": "2023-12-26T19:37:47.120523+00:00",
+ "modified_at": "2023-12-26T19:37:47.120523+00:00", "config": {"request": {"host":
"example.org", "port": 443}, "assertions": [{"operator": "lessThan", "type":
"responseTime", "target": 2000}]}, "message": "Notify @pagerduty", "options":
{"monitor_options": {"notify_audit": false, "include_tags": true, "new_host_delay":
300, "on_missing_data": "show_no_data", "renotify_interval": 0}, "tick_every":
900, "min_location_failed": 1}, "locations": ["aws:eu-central-1"], "subtype":
- "tcp", "created_by": {"name": "Frog", "handle": "frog@datadoghq.com", "email":
- "frog@datadoghq.com"}, "deleted_at": null, "monitor_id": 14510192, "org_id":
- 1000044987, "modified_by": {"name": "Frog", "handle": "frog@datadoghq.com",
- "email": "frog@datadoghq.com"}}'
+ "tcp", "created_by": {"name": "CI Service Account", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com"}, "deleted_at": null, "monitor_id": 14605719,
+ "org_id": 1000144613, "modified_by": {"name": "CI Service Account", "handle":
+ "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com"}}'
headers: {}
status:
code: 200
@@ -2382,41 +2560,18 @@ interactions:
uri: https://api.datadoghq.eu/api/v1/synthetics/tests
response:
body:
- string: '{"public_id": "xiz-gdx-4ht", "name": "SSL Test", "status": "live",
- "type": "api", "tags": ["foo:bar", "foo", "env:test"], "created_at": "2023-12-19T16:53:42.957300+00:00",
- "modified_at": "2023-12-19T16:53:42.957300+00:00", "config": {"request": {"host":
+ string: '{"public_id": "cau-k3f-nhx", "name": "SSL Test", "status": "live",
+ "type": "api", "tags": ["foo:bar", "foo", "env:test"], "created_at": "2023-12-26T19:37:47.962936+00:00",
+ "modified_at": "2023-12-26T19:37:47.962936+00:00", "config": {"request": {"host":
"example.org", "port": 443}, "assertions": [{"operator": "isInMoreThan", "type":
"certificate", "target": 30}]}, "message": "Notify @pagerduty", "options":
{"accept_self_signed": true, "monitor_options": {"notify_audit": false, "include_tags":
true, "new_host_delay": 300, "on_missing_data": "show_no_data", "renotify_interval":
0}, "min_location_failed": 1, "tick_every": 900}, "locations": ["aws:eu-central-1"],
- "subtype": "ssl", "created_by": {"name": "Frog", "handle": "frog@datadoghq.com",
- "email": "frog@datadoghq.com"}, "deleted_at": null, "monitor_id": 14510193,
- "org_id": 1000044987, "modified_by": {"name": "Frog", "handle": "frog@datadoghq.com",
- "email": "frog@datadoghq.com"}}'
- headers: {}
- status:
- code: 200
- message: OK
-- request:
- body: '{"name": "TEST_VARIABLE", "description": "test", "type": "variable", "tags":
- ["check_type:api"], "value": {"secure": false, "value": "TESTVALUELETSSEEdadsddsadsadadsadsad"}}'
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: POST
- uri: https://api.datadoghq.eu/api/v1/synthetics/variables
- response:
- body:
- string: '{"id": "b2ddc900-615c-4d4e-94c0-3e3f7a5a8479", "name": "TEST_VARIABLE",
- "description": "test", "type": "variable", "tags": ["check_type:api"], "parse_test_public_id":
- null, "parse_test_name": null, "parse_test_options": null, "parse_test_extracted_at":
- null, "is_totp": null, "is_fido": null, "last_error": null, "value": {"secure":
- false, "value": "TESTVALUELETSSEEdadsddsadsadadsadsad"}}'
+ "subtype": "ssl", "created_by": {"name": "CI Service Account", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com"}, "deleted_at": null, "monitor_id": 14605720,
+ "org_id": 1000144613, "modified_by": {"name": "CI Service Account", "handle":
+ "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com"}}'
headers: {}
status:
code: 200
@@ -2440,18 +2595,18 @@ interactions:
uri: https://api.datadoghq.eu/api/v1/synthetics/tests
response:
body:
- string: '{"public_id": "asu-8wx-azj", "name": "DNS Test", "status": "live",
- "type": "api", "tags": ["foo:bar", "foo", "env:test"], "created_at": "2023-12-19T16:53:43.985048+00:00",
- "modified_at": "2023-12-19T16:53:43.985048+00:00", "config": {"request": {"host":
+ string: '{"public_id": "3tj-xf6-kej", "name": "DNS Test", "status": "live",
+ "type": "api", "tags": ["foo:bar", "foo", "env:test"], "created_at": "2023-12-26T19:37:48.911167+00:00",
+ "modified_at": "2023-12-26T19:37:48.911167+00:00", "config": {"request": {"host":
"example.org"}, "assertions": [{"operator": "is", "property": "A", "type":
"recordSome", "target": "0.0.0.0"}]}, "message": "Notify @pagerduty", "options":
{"monitor_options": {"notify_audit": false, "include_tags": true, "new_host_delay":
300, "on_missing_data": "show_no_data", "renotify_interval": 0}, "tick_every":
900, "min_location_failed": 1}, "locations": ["aws:eu-central-1"], "subtype":
- "dns", "created_by": {"name": "Frog", "handle": "frog@datadoghq.com", "email":
- "frog@datadoghq.com"}, "deleted_at": null, "monitor_id": 14510194, "org_id":
- 1000044987, "modified_by": {"name": "Frog", "handle": "frog@datadoghq.com",
- "email": "frog@datadoghq.com"}}'
+ "dns", "created_by": {"name": "CI Service Account", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com"}, "deleted_at": null, "monitor_id": 14605722,
+ "org_id": 1000144613, "modified_by": {"name": "CI Service Account", "handle":
+ "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com"}}'
headers: {}
status:
code: 200
@@ -2480,9 +2635,9 @@ interactions:
uri: https://api.datadoghq.eu/api/v1/synthetics/tests
response:
body:
- string: '{"public_id": "bsb-uvh-xzh", "name": "Multistep API Test", "status":
+ string: '{"public_id": "yt2-2u2-uwv", "name": "Multistep API Test", "status":
"live", "type": "api", "tags": ["check_type:api", "env:test", "test:update"],
- "created_at": "2023-12-19T16:53:44.793339+00:00", "modified_at": "2023-12-19T16:53:44.793339+00:00",
+ "created_at": "2023-12-26T19:37:49.767590+00:00", "modified_at": "2023-12-26T19:37:49.767590+00:00",
"config": {"steps": [{"retry": {"count": 0, "interval": 300}, "name": "Test
on datadoghq.com", "request": {"url": "https://datadoghq.com", "headers":
{"content-type": "text/html"}, "method": "GET"}, "subtype": "http", "allowFailure":
@@ -2493,113 +2648,26 @@ interactions:
true, "new_host_delay": 300, "on_missing_data": "show_no_data", "renotify_interval":
0}, "retry": {"count": 0, "interval": 300}, "min_location_failed": 1, "min_failure_duration":
0, "tick_every": 604800}, "locations": ["aws:sa-east-1"], "subtype": "multi",
- "created_by": {"name": "Frog", "handle": "frog@datadoghq.com", "email": "frog@datadoghq.com"},
- "deleted_at": null, "monitor_id": 14510195, "org_id": 1000044987, "modified_by":
- {"name": "Frog", "handle": "frog@datadoghq.com", "email": "frog@datadoghq.com"}}'
- headers: {}
- status:
- code: 200
- message: OK
-- request:
- body: '{"name": "TF_TESTACCDATADOGSYNTHETICSTESTMULTISTEPAPI_BASIC_LOCAL_1686121345",
- "description": "a global variable", "type": "variable", "tags": ["foo:bar",
- "baz"], "value": {"secure": false, "value": "variable-value"}}'
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: POST
- uri: https://api.datadoghq.eu/api/v1/synthetics/variables
- response:
- body:
- string: '{"id": "a71e1eaf-3a01-449b-88f2-71ef1a511e75", "name": "TF_TESTACCDATADOGSYNTHETICSTESTMULTISTEPAPI_BASIC_LOCAL_1686121345",
- "description": "a global variable", "type": "variable", "tags": ["foo:bar",
- "baz"], "parse_test_public_id": null, "parse_test_name": null, "parse_test_options":
- null, "parse_test_extracted_at": null, "is_totp": null, "is_fido": null, "last_error":
- null, "value": {"secure": false, "value": "variable-value"}}'
- headers: {}
- status:
- code: 200
- message: OK
-- request:
- body: '{"name": "TF_TESTACCDATADOGSYNTHETICSTESTMULTISTEPAPI_BASIC_LOCAL_1670405911",
- "description": "a global variable", "type": "variable", "tags": ["foo:bar",
- "baz"], "value": {"secure": false, "value": "variable-value"}}'
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: POST
- uri: https://api.datadoghq.eu/api/v1/synthetics/variables
- response:
- body:
- string: '{"id": "6cdca534-f659-4c91-bc15-804dbb6dab9a", "name": "TF_TESTACCDATADOGSYNTHETICSTESTMULTISTEPAPI_BASIC_LOCAL_1670405911",
- "description": "a global variable", "type": "variable", "tags": ["foo:bar",
- "baz"], "parse_test_public_id": null, "parse_test_name": null, "parse_test_options":
- null, "parse_test_extracted_at": null, "is_totp": null, "is_fido": null, "last_error":
- null, "value": {"secure": false, "value": "variable-value"}}'
- headers: {}
- status:
- code: 200
- message: OK
-- request:
- body: '{"name": "TF_TESTACCDATADOGSYNTHETICSTESTMULTISTEPAPI_BASIC_LOCAL_1670404656",
- "description": "a global variable", "type": "variable", "tags": ["foo:bar",
- "baz"], "value": {"secure": false, "value": "variable-value"}}'
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: POST
- uri: https://api.datadoghq.eu/api/v1/synthetics/variables
- response:
- body:
- string: '{"id": "2a480695-e0d5-4d02-84d7-1be4022d756c", "name": "TF_TESTACCDATADOGSYNTHETICSTESTMULTISTEPAPI_BASIC_LOCAL_1670404656",
- "description": "a global variable", "type": "variable", "tags": ["foo:bar",
- "baz"], "parse_test_public_id": null, "parse_test_name": null, "parse_test_options":
- null, "parse_test_extracted_at": null, "is_totp": null, "is_fido": null, "last_error":
- null, "value": {"secure": false, "value": "variable-value"}}'
- headers: {}
- status:
- code: 200
- message: OK
-- request:
- body: '{"name": "EXAMPLE_VARIABLE", "description": "Description of the variable",
- "type": "variable", "tags": ["foo:bar", "env:test"], "value": {"secure": false,
- "value": "variable-value"}}'
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: POST
- uri: https://api.datadoghq.eu/api/v1/synthetics/variables
- response:
- body:
- string: '{"id": "da753a0b-80e8-49a8-a0ae-302f5cd654b0", "name": "EXAMPLE_VARIABLE",
- "description": "Description of the variable", "type": "variable", "tags":
- ["foo:bar", "env:test"], "parse_test_public_id": null, "parse_test_name":
- null, "parse_test_options": null, "parse_test_extracted_at": null, "is_totp":
- null, "is_fido": null, "last_error": null, "value": {"secure": false, "value":
- "variable-value"}}'
+ "created_by": {"name": "CI Service Account", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com"}, "deleted_at": null, "monitor_id": 14605723,
+ "org_id": 1000144613, "modified_by": {"name": "CI Service Account", "handle":
+ "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com"}}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"name": "TEST_SECRETS", "description": "", "type": "variable", "tags":
- [], "value": {"secure": true, "value": "SECRET"}}'
+ body: '{"data": {"type": "incidents", "attributes": {"incident_type_uuid": null,
+ "title": "Example-Incident", "customer_impact_start": null, "customer_impact_end":
+ null, "customer_impacted": false, "detected": "2023-12-11T18:39:17.200357+00:00",
+ "time_to_detect": 0, "time_to_repair": 0, "archived": null, "fields": {"severity":
+ {"type": "dropdown", "value": "UNKNOWN"}, "state": {"type": "dropdown", "value":
+ "resolved"}, "detection_method": {"type": "dropdown", "value": "unknown"}, "root_cause":
+ {"type": "textbox", "value": null}, "summary": {"type": "textbox", "value":
+ null}, "services": {"type": "autocomplete", "value": null}, "teams": {"type":
+ "autocomplete", "value": null}}, "field_analytics": null, "severity": "UNKNOWN",
+ "state": "resolved", "non_datadog_creator": null, "visibility": "organization",
+ "case_id": null}, "relationships": {"commander_user": {"data": null}}}}'
headers:
Accept:
- '*/*'
@@ -2608,21 +2676,60 @@ interactions:
Content-Type:
- application/json
method: POST
- uri: https://api.datadoghq.eu/api/v1/synthetics/variables
+ uri: https://api.datadoghq.eu/api/v2/incidents
response:
body:
- string: '{"id": "c56cfd52-030e-4508-9262-9a3a1ac7b2b5", "name": "TEST_SECRETS",
- "description": "", "type": "variable", "tags": [], "parse_test_public_id":
- null, "parse_test_name": null, "parse_test_options": null, "parse_test_extracted_at":
- null, "is_totp": null, "is_fido": null, "last_error": null, "value": {"secure":
- true}}'
+ string: '{"data": {"type": "incidents", "id": "b96b70c7-8568-5db1-b555-b8a681127ffd",
+ "attributes": {"public_id": 4, "incident_type_uuid": null, "title": "Example-Incident",
+ "resolved": null, "customer_impact_scope": null, "customer_impact_start":
+ null, "customer_impact_end": null, "customer_impacted": false, "notification_handles":
+ null, "last_modified_by": {"data": {"type": "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "attributes": {"uuid": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com", "name": "CI Service Account", "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},
+ "last_modified_by_uuid": null, "created": "2023-12-26T19:37:50.884313+00:00",
+ "modified": "2023-12-26T19:37:50.884313+00:00", "commander": null, "detected":
+ "2023-12-11T18:39:17.200357+00:00", "created_by": {"data": {"type": "users",
+ "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "attributes": {"uuid": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com",
+ "name": "CI Service Account", "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},
+ "created_by_uuid": null, "creation_idempotency_key": null, "customer_impact_duration":
+ 0, "time_to_detect": 0, "time_to_repair": 0, "time_to_internal_response":
+ 1299513, "time_to_resolve": 0, "archived": null, "fields": {"severity": {"type":
+ "dropdown", "value": "UNKNOWN"}, "state": {"type": "dropdown", "value": "resolved"},
+ "detection_method": {"type": "dropdown", "value": "unknown"}, "root_cause":
+ {"type": "textbox", "value": null}, "summary": {"type": "textbox", "value":
+ null}, "services": {"type": "autocomplete", "value": null}, "teams": {"type":
+ "autocomplete", "value": null}}, "field_analytics": null, "severity": "UNKNOWN",
+ "state": "resolved", "non_datadog_creator": null, "visibility": "organization",
+ "case_id": null}, "relationships": {"created_by_user": {"data": {"type": "users",
+ "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec"}}, "last_modified_by_user": {"data":
+ {"type": "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec"}}, "commander_user":
+ {"data": null}, "user_defined_fields": {"data": [{"type": "user_defined_field",
+ "id": "5662d4c3-9f55-58de-a137-be5c36824dcb"}, {"type": "user_defined_field",
+ "id": "8b6cbb45-142c-53e4-ad43-d17ff3db131e"}, {"type": "user_defined_field",
+ "id": "fbbeb16b-d661-5e24-bd71-de6500529770"}, {"type": "user_defined_field",
+ "id": "ec1ffa8a-0acb-59ec-8d69-fccd56ec50bb"}, {"type": "user_defined_field",
+ "id": "1ab83a4e-3450-5b5b-9868-5bde5dc61c34"}, {"type": "user_defined_field",
+ "id": "c1221926-b4cd-5a73-b058-ddcaecd5b966"}, {"type": "user_defined_field",
+ "id": "3d8d459b-3735-53d5-aca7-cdd005c92a45"}]}, "integrations": {"data":
+ []}, "attachments": {"data": []}, "responders": {"data": []}, "impacts": {"data":
+ []}}}}'
headers: {}
status:
- code: 200
- message: OK
+ code: 201
+ message: Created
- request:
- body: '{"data": {"type": "users", "attributes": {"name": "test-user", "email":
- "new@example.com", "disabled": false, "allowed_login_methods": []}, "id": "5a322106-c891-11eb-873a-da7ad0900005"}}'
+ body: '{"data": {"type": "incidents", "attributes": {"incident_type_uuid": null,
+ "title": "Example-Incident", "customer_impact_start": null, "customer_impact_end":
+ null, "customer_impacted": false, "detected": "2023-12-11T18:39:17.200357+00:00",
+ "time_to_detect": 0, "time_to_repair": 0, "archived": null, "fields": {"severity":
+ {"type": "dropdown", "value": "UNKNOWN"}, "state": {"type": "dropdown", "value":
+ "resolved"}, "detection_method": {"type": "dropdown", "value": "unknown"}, "root_cause":
+ {"type": "textbox", "value": null}, "summary": {"type": "textbox", "value":
+ null}, "services": {"type": "autocomplete", "value": null}, "teams": {"type":
+ "autocomplete", "value": null}}, "field_analytics": null, "severity": "UNKNOWN",
+ "state": "resolved", "non_datadog_creator": null, "visibility": "organization",
+ "case_id": null}, "relationships": {"commander_user": {"data": null}}}}'
headers:
Accept:
- '*/*'
@@ -2631,23 +2738,53 @@ interactions:
Content-Type:
- application/json
method: PATCH
- uri: https://api.datadoghq.eu/api/v2/users/5a322106-c891-11eb-873a-da7ad0900005
+ uri: https://api.datadoghq.eu/api/v2/incidents/b96b70c7-8568-5db1-b555-b8a681127ffd
response:
body:
- string: '{"data": {"type": "users", "id": "5a322106-c891-11eb-873a-da7ad0900005",
- "attributes": {"name": "test-user", "handle": "new@example.com", "created_at":
- "2021-06-08T19:40:17.395117+00:00", "modified_at": "2023-12-19T16:53:47.046902+00:00",
- "email": "new@example.com", "icon": "https://secure.gravatar.com/avatar/b681d72feaf8bf6a93d9a8ab86679ec3?s=48&d=retro",
- "title": null, "verified": false, "service_account": false, "disabled": false,
- "allowed_login_methods": [], "status": "Pending"}, "relationships": {"roles":
- {"data": []}, "org": {"data": {"type": "orgs", "id": "13865f06-bfcc-11eb-8e11-da7ad0900005"}}}}}'
+ string: '{"data": {"type": "incidents", "id": "b96b70c7-8568-5db1-b555-b8a681127ffd",
+ "attributes": {"public_id": 4, "incident_type_uuid": null, "title": "Example-Incident",
+ "resolved": "2023-12-26T19:37:52.196888+00:00", "customer_impact_scope": null,
+ "customer_impact_start": null, "customer_impact_end": null, "customer_impacted":
+ false, "notification_handles": null, "last_modified_by": {"data": {"type":
+ "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "attributes": {"uuid":
+ "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com", "name": "CI Service Account", "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},
+ "last_modified_by_uuid": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "created":
+ "2023-12-26T19:37:50.884313+00:00", "modified": "2023-12-26T19:37:52.202782+00:00",
+ "commander": null, "detected": "2023-12-11T18:39:17.200357+00:00", "created_by":
+ {"data": {"type": "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "attributes":
+ {"uuid": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com", "name": "CI Service Account", "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},
+ "created_by_uuid": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "creation_idempotency_key":
+ null, "customer_impact_duration": 0, "time_to_detect": 0, "time_to_repair":
+ 0, "time_to_internal_response": 1299513, "time_to_resolve": 1, "archived":
+ null, "fields": {"severity": {"type": "dropdown", "value": "UNKNOWN"}, "state":
+ {"type": "dropdown", "value": "resolved"}, "detection_method": {"type": "dropdown",
+ "value": "unknown"}, "root_cause": {"type": "textbox", "value": null}, "summary":
+ {"type": "textbox", "value": null}, "services": {"type": "autocomplete", "value":
+ null}, "teams": {"type": "autocomplete", "value": null}}, "field_analytics":
+ null, "severity": "UNKNOWN", "state": "resolved", "non_datadog_creator": null,
+ "visibility": "organization", "case_id": null}, "relationships": {"created_by_user":
+ {"data": {"type": "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec"}},
+ "last_modified_by_user": {"data": {"type": "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec"}},
+ "commander_user": {"data": null}, "user_defined_fields": {"data": [{"type":
+ "user_defined_field", "id": "5662d4c3-9f55-58de-a137-be5c36824dcb"}, {"type":
+ "user_defined_field", "id": "8b6cbb45-142c-53e4-ad43-d17ff3db131e"}, {"type":
+ "user_defined_field", "id": "fbbeb16b-d661-5e24-bd71-de6500529770"}, {"type":
+ "user_defined_field", "id": "ec1ffa8a-0acb-59ec-8d69-fccd56ec50bb"}, {"type":
+ "user_defined_field", "id": "1ab83a4e-3450-5b5b-9868-5bde5dc61c34"}, {"type":
+ "user_defined_field", "id": "c1221926-b4cd-5a73-b058-ddcaecd5b966"}, {"type":
+ "user_defined_field", "id": "3d8d459b-3735-53d5-aca7-cdd005c92a45"}]}, "integrations":
+ {"data": []}, "attachments": {"data": []}, "responders": {"data": [{"type":
+ "incident_responders", "id": "97ec239b-17a1-508a-9104-01f7fa56a952"}]}, "impacts":
+ {"data": []}}}}'
headers: {}
status:
code: 200
message: OK
- request:
body: '{"name": "TEST_FROM_HTTP", "description": "", "type": "variable", "tags":
- [], "parse_test_public_id": "q6t-wfn-646", "parse_test_options": {"type": "http_header",
+ [], "parse_test_public_id": "xc2-r2r-75g", "parse_test_options": {"type": "http_header",
"field": "content-type", "parser": {"type": "raw"}}, "value": {"value": "",
"secure": false, "options": {}}}'
headers:
@@ -2661,9 +2798,9 @@ interactions:
uri: https://api.datadoghq.eu/api/v1/synthetics/variables
response:
body:
- string: '{"id": "1c56de3d-e4c9-4cf0-bd9b-84ce650a4180", "name": "TEST_FROM_HTTP",
+ string: '{"id": "ae21f137-1c0e-4080-996d-524fe113da0e", "name": "TEST_FROM_HTTP",
"description": "", "type": "variable", "tags": [], "parse_test_public_id":
- "q6t-wfn-646", "parse_test_name": null, "parse_test_options": {"type": "http_header",
+ "xc2-r2r-75g", "parse_test_name": null, "parse_test_options": {"type": "http_header",
"field": "content-type", "parser": {"type": "raw"}}, "parse_test_extracted_at":
null, "is_totp": null, "is_fido": null, "last_error": null, "value": {"value":
"", "secure": false, "options": {}}}'
@@ -2672,41 +2809,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"type": "composite", "name": "Composite monitor", "message": "test", "tags":
- [], "query": "( 14510183 && 14510181 ) || !14510183", "options": {"notify_audit":
- false, "locked": false, "include_tags": false, "new_host_delay": 300, "notify_no_data":
- false, "renotify_interval": 0, "escalation_message": "", "silenced": {}}, "multi":
- false, "restricted_roles": null, "priority": null}'
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Content-Type:
- - application/json
- method: POST
- uri: https://api.datadoghq.eu/api/v1/monitor
- response:
- body:
- string: '{"id": 14510196, "org_id": 1000044987, "type": "composite", "name":
- "Composite monitor", "message": "test", "tags": [], "query": "( 14510183 &&
- 14510181 ) || !14510183", "options": {"notify_audit": false, "locked": false,
- "include_tags": false, "new_host_delay": 300, "notify_no_data": false, "renotify_interval":
- 0, "escalation_message": "", "silenced": {}}, "multi": false, "created_at":
- 1703004827000, "created": "2023-12-19T16:53:47.890404+00:00", "modified":
- "2023-12-19T16:53:47.890404+00:00", "deleted": null, "restricted_roles": null,
- "priority": null, "overall_state_modified": null, "overall_state": "No Data",
- "creator": {"name": "Frog", "handle": "frog@datadoghq.com", "email": "frog@datadoghq.com",
- "id": 1000219667}}'
- headers: {}
- status:
- code: 200
- message: OK
-- request:
- body: '{"name": "Random monitor slo", "tags": [], "monitor_tags": [], "thresholds":
- [{"timeframe": "7d", "target": 99.9, "target_display": "99.9"}], "type": "monitor",
- "type_id": 0, "description": "", "timeframe": "7d", "target_threshold": 99.9,
- "monitor_ids": [14510183]}'
+ body: '{"data": {"type": "users", "attributes": {"name": "Frog", "email": "frog@datadoghq.com",
+ "disabled": false, "allowed_login_methods": []}, "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec"}}'
headers:
Accept:
- '*/*'
@@ -2714,26 +2818,1691 @@ interactions:
- gzip, deflate
Content-Type:
- application/json
- method: POST
- uri: https://api.datadoghq.eu/api/v1/slo
+ method: PATCH
+ uri: https://api.datadoghq.eu/api/v2/users/c565c834-9e9a-11ee-aa8a-52121f0cd5ec
response:
body:
- string: '{"data": [{"id": "2056b4c971c15e528efffc8fc78178a4", "name": "Random
- monitor slo", "tags": [], "monitor_tags": [], "thresholds": [{"timeframe":
- "7d", "target": 99.9, "target_display": "99.9"}], "type": "monitor", "type_id":
- 0, "description": "", "timeframe": "7d", "target_threshold": 99.9, "monitor_ids":
- [14510183], "creator": {"name": "Frog", "handle": "frog@datadoghq.com", "email":
- "frog@datadoghq.com"}, "created_at": 1703004828, "modified_at": 1703004828}],
- "error": null}'
+ string: '{"data": {"type": "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "attributes": {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "created_at": "2023-12-19T18:16:46.899841+00:00", "modified_at": "2023-12-26T19:37:53.198907+00:00",
+ "email": "frog@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro",
+ "title": null, "verified": true, "service_account": true, "disabled": false,
+ "allowed_login_methods": [], "status": "Active"}, "relationships": {"roles":
+ {"data": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}},
+ "included": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005",
+ "attributes": {"name": "Datadog Admin Role", "created_at": "2023-12-19T18:05:48.353537+00:00",
+ "modified_at": "2023-12-22T18:58:25.532811+00:00"}, "relationships": {"permissions":
+ {"data": [{"type": "permissions", "id": "f1666372-d87d-11e8-acac-6be484ba794a"},
+ {"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": "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":
+ "72d1e2fe-1cd8-11ed-a26b-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": "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": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type":
+ "permissions", "id": "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions",
+ "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id":
+ "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}]}}},
+ {"type": "permissions", "id": "f1666372-d87d-11e8-acac-6be484ba794a", "attributes":
+ {"name": "standard", "display_name": "Standard Access", "description": "Deprecated.
+ Standard Access has been replaced by more specific permissions.", "created":
+ "2018-10-25T17:46:46.732810+00:00", "group_name": "General", "display_type":
+ "other", "restricted": false}}, {"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": "other", "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": "other", "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": "other", "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": "Dashboards Public Share", "description": "Generate public
+ and authenticated links to share dashboards or embeddable graphs externally.",
+ "created": "2019-09-10T14:41:53.150548+00:00", "group_name": "Dashboards",
+ "display_type": "other", "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 hosts. 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":
+ "other", "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": "other", "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": "other", "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": "other", "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 Data Scanner configurations.", "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 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": "other", "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": "Pipeline 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": "Pipeline
+ 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": "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": "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":
+ "Workflow Automation", "display_type": "other", "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":
+ "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": "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": "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 custom
+ reports from a dashboard. These reports will display any viewable data regardless
+ of any granular restrictions (restriction queries, scoped indexes) applied
+ to the report''s creator.", "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": "other", "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": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "attributes": {"name": "watchdog_insights_read",
+ "display_name": "Watchdog Insights Read", "description": "Deprecated. View
+ Watchdog Insights.", "created": "2022-08-15T20:25:48.321553+00:00", "group_name":
+ "Watchdog", "display_type": "read", "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": "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": "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":
+ "CI Visibility", "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": "CI Visibility", "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": "CI Visibility", "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": "CI Visibility",
+ "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":
+ "Enable or disable Intelligent Test Runner.", "created": "2022-12-13T16:02:28.826271+00:00",
+ "group_name": "CI Visibility", "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": "Edit Intelligent Test Runner
+ settings, such as modifying ITR excluded branch list.", "created": "2022-12-13T16:02:28.830112+00:00",
+ "group_name": "CI Visibility", "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 CSPM Findings.",
+ "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": "CI Visibility",
+ "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. This does not
+ restrict access to the cloud cost data source in dashboards and notebooks.",
+ "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.", "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": "CI Visibility",
+ "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": "CI
+ Visibility", "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": "CI
+ Visibility", "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": "Pipeline
+ 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": "Pipeline 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":
+ "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": "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": "CI Visibility", "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": "CI Visibility", "display_type": "read", "restricted": true}},
+ {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005", "attributes":
+ {"name": "appsec_vm_read", "display_name": "Vulnerability Management Read",
+ "description": "View 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}}]}'
+ headers: {}
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"data": {"type": "users", "attributes": {"name": "Kevin Zou", "email":
+ "kevin.zou@datadoghq.com", "disabled": false, "allowed_login_methods": []},
+ "id": "29e24184-a0fc-11ee-8daf-aea76f621e57"}}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: PATCH
+ uri: https://api.datadoghq.eu/api/v2/users/29e24184-a0fc-11ee-8daf-aea76f621e57
+ response:
+ body:
+ string: '{"data": {"type": "users", "id": "29e24184-a0fc-11ee-8daf-aea76f621e57",
+ "attributes": {"name": "Kevin Zou", "handle": "kevin.zou@datadoghq.com", "created_at":
+ "2023-12-22T18:58:58.996081+00:00", "modified_at": "2023-12-26T19:37:53.670047+00:00",
+ "email": "kevin.zou@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/927e28676d353bcee29248ed2ca7ad9c?s=48&d=retro",
+ "title": null, "verified": false, "service_account": false, "disabled": false,
+ "allowed_login_methods": [], "status": "Pending"}, "relationships": {"roles":
+ {"data": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}},
+ "included": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005",
+ "attributes": {"name": "Datadog Admin Role", "created_at": "2023-12-19T18:05:48.353537+00:00",
+ "modified_at": "2023-12-22T18:58:25.532811+00:00"}, "relationships": {"permissions":
+ {"data": [{"type": "permissions", "id": "f1666372-d87d-11e8-acac-6be484ba794a"},
+ {"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": "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":
+ "72d1e2fe-1cd8-11ed-a26b-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": "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": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type":
+ "permissions", "id": "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions",
+ "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id":
+ "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}]}}},
+ {"type": "permissions", "id": "f1666372-d87d-11e8-acac-6be484ba794a", "attributes":
+ {"name": "standard", "display_name": "Standard Access", "description": "Deprecated.
+ Standard Access has been replaced by more specific permissions.", "created":
+ "2018-10-25T17:46:46.732810+00:00", "group_name": "General", "display_type":
+ "other", "restricted": false}}, {"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": "other", "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": "other", "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": "other", "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": "Dashboards Public Share", "description": "Generate public
+ and authenticated links to share dashboards or embeddable graphs externally.",
+ "created": "2019-09-10T14:41:53.150548+00:00", "group_name": "Dashboards",
+ "display_type": "other", "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 hosts. 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":
+ "other", "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": "other", "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": "other", "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": "other", "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 Data Scanner configurations.", "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 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": "other", "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": "Pipeline 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": "Pipeline
+ 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": "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": "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":
+ "Workflow Automation", "display_type": "other", "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":
+ "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": "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": "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 custom
+ reports from a dashboard. These reports will display any viewable data regardless
+ of any granular restrictions (restriction queries, scoped indexes) applied
+ to the report''s creator.", "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": "other", "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": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "attributes": {"name": "watchdog_insights_read",
+ "display_name": "Watchdog Insights Read", "description": "Deprecated. View
+ Watchdog Insights.", "created": "2022-08-15T20:25:48.321553+00:00", "group_name":
+ "Watchdog", "display_type": "read", "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": "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": "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":
+ "CI Visibility", "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": "CI Visibility", "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": "CI Visibility", "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": "CI Visibility",
+ "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":
+ "Enable or disable Intelligent Test Runner.", "created": "2022-12-13T16:02:28.826271+00:00",
+ "group_name": "CI Visibility", "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": "Edit Intelligent Test Runner
+ settings, such as modifying ITR excluded branch list.", "created": "2022-12-13T16:02:28.830112+00:00",
+ "group_name": "CI Visibility", "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 CSPM Findings.",
+ "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": "CI Visibility",
+ "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. This does not
+ restrict access to the cloud cost data source in dashboards and notebooks.",
+ "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.", "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": "CI Visibility",
+ "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": "CI
+ Visibility", "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": "CI
+ Visibility", "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": "Pipeline
+ 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": "Pipeline 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":
+ "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": "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": "CI Visibility", "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": "CI Visibility", "display_type": "read", "restricted": true}},
+ {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005", "attributes":
+ {"name": "appsec_vm_read", "display_name": "Vulnerability Management Read",
+ "description": "View 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}}]}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"name": "Composite monitor - Child 2", "tags": [], "monitor_tags": [],
- "thresholds": [{"timeframe": "7d", "target": 99.0, "target_display": "99."}],
- "type": "monitor", "type_id": 0, "description": "Updated Description Test",
- "timeframe": "7d", "target_threshold": 99.0, "monitor_ids": [14510184, 14510183]}'
+ body: '{"data": {"type": "users", "attributes": {"name": "Noueman Khalikine",
+ "email": "noueman.khalikine@datadoghq.com", "disabled": false, "allowed_login_methods":
+ []}, "id": "2a4ba4d1-a0fc-11ee-ac60-ced34c8fb548"}}'
headers:
Accept:
- '*/*'
@@ -2741,27 +4510,843 @@ interactions:
- gzip, deflate
Content-Type:
- application/json
- method: POST
- uri: https://api.datadoghq.eu/api/v1/slo
+ method: PATCH
+ uri: https://api.datadoghq.eu/api/v2/users/2a4ba4d1-a0fc-11ee-ac60-ced34c8fb548
response:
body:
- string: '{"data": [{"id": "2fa9470a541e56b085e94458c8181f62", "name": "Composite
- monitor - Child 2", "tags": [], "monitor_tags": [], "thresholds": [{"timeframe":
- "7d", "target": 99.0, "target_display": "99."}], "type": "monitor", "type_id":
- 0, "description": "Updated Description Test", "timeframe": "7d", "target_threshold":
- 99.0, "monitor_ids": [14510184, 14510183], "creator": {"name": "Frog", "handle":
- "frog@datadoghq.com", "email": "frog@datadoghq.com"}, "created_at": 1703004828,
- "modified_at": 1703004828}], "error": null}'
+ string: '{"data": {"type": "users", "id": "2a4ba4d1-a0fc-11ee-ac60-ced34c8fb548",
+ "attributes": {"name": "Noueman Khalikine", "handle": "noueman.khalikine@datadoghq.com",
+ "created_at": "2023-12-22T18:58:59.686746+00:00", "modified_at": "2023-12-26T19:37:54.169244+00:00",
+ "email": "noueman.khalikine@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/92d6421ea95d9f7b8d60c8270c95d84a?s=48&d=retro",
+ "title": null, "verified": false, "service_account": false, "disabled": false,
+ "allowed_login_methods": [], "status": "Pending"}, "relationships": {"roles":
+ {"data": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}},
+ "included": [{"type": "roles", "id": "3cdfc26c-9e99-11ee-8e21-da7ad0900005",
+ "attributes": {"name": "Datadog Admin Role", "created_at": "2023-12-19T18:05:48.353537+00:00",
+ "modified_at": "2023-12-22T18:58:25.532811+00:00"}, "relationships": {"permissions":
+ {"data": [{"type": "permissions", "id": "f1666372-d87d-11e8-acac-6be484ba794a"},
+ {"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": "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":
+ "72d1e2fe-1cd8-11ed-a26b-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": "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": "55769e70-2c9a-11ee-a7df-da7ad0900005"}, {"type":
+ "permissions", "id": "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions",
+ "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": "permissions", "id":
+ "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}]}}},
+ {"type": "permissions", "id": "f1666372-d87d-11e8-acac-6be484ba794a", "attributes":
+ {"name": "standard", "display_name": "Standard Access", "description": "Deprecated.
+ Standard Access has been replaced by more specific permissions.", "created":
+ "2018-10-25T17:46:46.732810+00:00", "group_name": "General", "display_type":
+ "other", "restricted": false}}, {"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": "other", "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": "other", "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": "other", "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": "Dashboards Public Share", "description": "Generate public
+ and authenticated links to share dashboards or embeddable graphs externally.",
+ "created": "2019-09-10T14:41:53.150548+00:00", "group_name": "Dashboards",
+ "display_type": "other", "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 hosts. 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":
+ "other", "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": "other", "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": "other", "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": "other", "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 Data Scanner configurations.", "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 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": "other", "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": "Pipeline 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": "Pipeline
+ 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": "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": "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":
+ "Workflow Automation", "display_type": "other", "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":
+ "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": "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": "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 custom
+ reports from a dashboard. These reports will display any viewable data regardless
+ of any granular restrictions (restriction queries, scoped indexes) applied
+ to the report''s creator.", "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": "other", "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": "72d1e2fe-1cd8-11ed-a26b-da7ad0900005", "attributes": {"name": "watchdog_insights_read",
+ "display_name": "Watchdog Insights Read", "description": "Deprecated. View
+ Watchdog Insights.", "created": "2022-08-15T20:25:48.321553+00:00", "group_name":
+ "Watchdog", "display_type": "read", "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": "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": "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":
+ "CI Visibility", "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": "CI Visibility", "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": "CI Visibility", "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": "CI Visibility",
+ "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":
+ "Enable or disable Intelligent Test Runner.", "created": "2022-12-13T16:02:28.826271+00:00",
+ "group_name": "CI Visibility", "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": "Edit Intelligent Test Runner
+ settings, such as modifying ITR excluded branch list.", "created": "2022-12-13T16:02:28.830112+00:00",
+ "group_name": "CI Visibility", "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 CSPM Findings.",
+ "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": "CI Visibility",
+ "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. This does not
+ restrict access to the cloud cost data source in dashboards and notebooks.",
+ "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.", "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": "CI Visibility",
+ "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": "CI
+ Visibility", "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": "CI
+ Visibility", "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": "Pipeline
+ 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": "Pipeline 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":
+ "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": "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": "CI Visibility", "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": "CI Visibility", "display_type": "read", "restricted": true}},
+ {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005", "attributes":
+ {"name": "appsec_vm_read", "display_name": "Vulnerability Management Read",
+ "description": "View 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}}]}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"type": "slo alert", "name": "Test slo monitor", "message": "Random message",
- "tags": [], "query": "burn_rate(\"b1e2084a1f04586dab7ff2be7bb7afee\").over(\"7d\").long_window(\"1h\").short_window(\"5m\")
- > 1", "options": {"thresholds": {"critical": 1.0}, "notify_no_data": false,
- "notify_audit": false, "new_host_delay": 300, "include_tags": true, "silenced":
- {}}, "multi": false, "restricted_roles": null, "priority": null}'
+ body: '{"data": {"id": "2abdf182-a0fc-11ee-a6a8-065d78846176", "type": "users"}}'
headers:
Accept:
- '*/*'
@@ -2770,18 +5355,18 @@ interactions:
Content-Type:
- application/json
method: POST
- uri: https://api.datadoghq.eu/api/v1/monitor
+ uri: https://api.datadoghq.eu/api/v2/roles/389e37f0-a426-11ee-96a2-da7ad0900005/users
response:
body:
- string: '{"id": 14510197, "org_id": 1000044987, "type": "slo alert", "name":
- "Test slo monitor", "message": "Random message", "tags": [], "query": "burn_rate(\"b1e2084a1f04586dab7ff2be7bb7afee\").over(\"7d\").long_window(\"1h\").short_window(\"5m\")
- > 1", "options": {"thresholds": {"critical": 1.0}, "notify_no_data": false,
- "notify_audit": false, "new_host_delay": 300, "include_tags": true, "silenced":
- {}}, "multi": false, "created_at": 1703004829000, "created": "2023-12-19T16:53:49.348558+00:00",
- "modified": "2023-12-19T16:53:49.348558+00:00", "deleted": null, "restricted_roles":
- null, "priority": null, "overall_state_modified": null, "overall_state": "No
- Data", "creator": {"name": "Frog", "handle": "frog@datadoghq.com", "email":
- "frog@datadoghq.com", "id": 1000219667}}'
+ string: '{"data": [{"type": "users", "id": "2abdf182-a0fc-11ee-a6a8-065d78846176",
+ "attributes": {"name": "None+ updated", "handle": "test-user-example@datadoghq.com",
+ "created_at": "2023-12-22T18:59:00.435831+00:00", "modified_at": "2023-12-26T19:35:21.667518+00:00",
+ "email": "test-user-example@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/034ab28ed9a3b29bccdb4d7b94cd7e03?s=48&d=retro",
+ "title": null, "verified": false, "service_account": false, "disabled": true,
+ "allowed_login_methods": [], "status": "Disabled"}, "relationships": {"roles":
+ {"data": [{"type": "roles", "id": "389e37f0-a426-11ee-96a2-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}}],
+ "meta": {"page": {"total_count": 1}}}'
headers: {}
status:
code: 200
@@ -2789,7 +5374,7 @@ interactions:
- request:
body: '{"data": {"type": "users", "attributes": {"name": "None+ updated", "email":
"test-user-example@datadoghq.com", "disabled": false, "allowed_login_methods":
- []}, "id": "e0c5d064-c7b0-11eb-944d-da7ad0900005"}}'
+ []}, "id": "2abdf182-a0fc-11ee-a6a8-065d78846176"}}'
headers:
Accept:
- '*/*'
@@ -2798,20 +5383,20 @@ interactions:
Content-Type:
- application/json
method: PATCH
- uri: https://api.datadoghq.eu/api/v2/users/e0c5d064-c7b0-11eb-944d-da7ad0900005
+ uri: https://api.datadoghq.eu/api/v2/users/2abdf182-a0fc-11ee-a6a8-065d78846176
response:
body:
- string: '{"data": {"type": "users", "id": "e0c5d064-c7b0-11eb-944d-da7ad0900005",
+ string: '{"data": {"type": "users", "id": "2abdf182-a0fc-11ee-a6a8-065d78846176",
"attributes": {"name": "None+ updated", "handle": "test-user-example@datadoghq.com",
- "created_at": "2021-06-07T16:53:26.412706+00:00", "modified_at": "2023-12-19T16:53:49.775210+00:00",
+ "created_at": "2023-12-22T18:59:00.435831+00:00", "modified_at": "2023-12-26T19:37:54.934657+00:00",
"email": "test-user-example@datadoghq.com", "icon": "https://secure.gravatar.com/avatar/034ab28ed9a3b29bccdb4d7b94cd7e03?s=48&d=retro",
"title": null, "verified": false, "service_account": false, "disabled": false,
"allowed_login_methods": [], "status": "Pending"}, "relationships": {"roles":
- {"data": [{"type": "roles", "id": "33844e56-9e88-11ee-97ed-da7ad0900005"}]},
- "org": {"data": {"type": "orgs", "id": "13865f06-bfcc-11eb-8e11-da7ad0900005"}}}},
- "included": [{"type": "roles", "id": "33844e56-9e88-11ee-97ed-da7ad0900005",
- "attributes": {"name": "Datadog Read Only Role", "created_at": "2023-12-19T16:03:51.210119+00:00",
- "modified_at": "2023-12-19T16:03:51.252287+00:00"}, "relationships": {"permissions":
+ {"data": [{"type": "roles", "id": "389e37f0-a426-11ee-96a2-da7ad0900005"}]},
+ "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}},
+ "included": [{"type": "roles", "id": "389e37f0-a426-11ee-96a2-da7ad0900005",
+ "attributes": {"name": "Datadog Read Only Role", "created_at": "2023-12-26T19:37:36.066101+00:00",
+ "modified_at": "2023-12-26T19:37:36.109725+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",
@@ -3014,13 +5599,229 @@ interactions:
status:
code: 200
message: OK
+- request:
+ body: '{"type": "composite", "name": "Composite monitor", "message": "test", "tags":
+ [], "query": "( 14605711 && 14605710 ) || !14605711", "options": {"notify_audit":
+ false, "locked": false, "include_tags": false, "new_host_delay": 300, "notify_no_data":
+ false, "renotify_interval": 0, "escalation_message": "", "silenced": {}}, "multi":
+ false, "restricted_roles": null, "priority": null}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: POST
+ uri: https://api.datadoghq.eu/api/v1/monitor
+ response:
+ body:
+ string: '{"id": 14605730, "org_id": 1000144613, "type": "composite", "name":
+ "Composite monitor", "message": "test", "tags": [], "query": "( 14605711 &&
+ 14605710 ) || !14605711", "options": {"notify_audit": false, "locked": false,
+ "include_tags": false, "new_host_delay": 300, "notify_no_data": false, "renotify_interval":
+ 0, "escalation_message": "", "silenced": {}}, "multi": false, "created_at":
+ 1703619475000, "created": "2023-12-26T19:37:55.330122+00:00", "modified":
+ "2023-12-26T19:37:55.330122+00:00", "deleted": null, "restricted_roles": null,
+ "priority": null, "overall_state_modified": null, "overall_state": "No Data",
+ "creator": {"name": "CI Service Account", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com", "id": 1001177794}}'
+ headers: {}
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"name": "Random monitor slo", "tags": [], "monitor_tags": [], "thresholds":
+ [{"timeframe": "7d", "target": 99.9, "target_display": "99.9"}], "type": "monitor",
+ "type_id": 0, "description": "", "timeframe": "7d", "target_threshold": 99.9,
+ "monitor_ids": [14605711]}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: POST
+ uri: https://api.datadoghq.eu/api/v1/slo
+ response:
+ body:
+ string: '{"data": [{"id": "c56feb058139508997fbf3c5cad197cf", "name": "Random
+ monitor slo", "tags": [], "monitor_tags": [], "thresholds": [{"timeframe":
+ "7d", "target": 99.9, "target_display": "99.9"}], "type": "monitor", "type_id":
+ 0, "description": "", "timeframe": "7d", "target_threshold": 99.9, "monitor_ids":
+ [14605711], "creator": {"name": "CI Service Account", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com"}, "created_at": 1703619475, "modified_at": 1703619475}],
+ "error": null}'
+ headers: {}
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"name": "Composite monitor - Child 2", "tags": [], "monitor_tags": [],
+ "thresholds": [{"timeframe": "7d", "target": 99.0, "target_display": "99."}],
+ "type": "monitor", "type_id": 0, "description": "Updated Description Test",
+ "timeframe": "7d", "target_threshold": 99.0, "monitor_ids": [14605712, 14605711]}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: POST
+ uri: https://api.datadoghq.eu/api/v1/slo
+ response:
+ body:
+ string: '{"data": [{"id": "62aa53ae0b9d5b388725ef3a03ef91be", "name": "Composite
+ monitor - Child 2", "tags": [], "monitor_tags": [], "thresholds": [{"timeframe":
+ "7d", "target": 99.0, "target_display": "99."}], "type": "monitor", "type_id":
+ 0, "description": "Updated Description Test", "timeframe": "7d", "target_threshold":
+ 99.0, "monitor_ids": [14605712, 14605711], "creator": {"name": "CI Service
+ Account", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com"},
+ "created_at": 1703619476, "modified_at": 1703619476}], "error": null}'
+ headers: {}
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"type": "slo alert", "name": "Test slo monitor", "message": "Random message",
+ "tags": [], "query": "burn_rate(\"757d56d2b04c5ca198490666f0391009\").over(\"7d\").long_window(\"1h\").short_window(\"5m\")
+ > 1", "options": {"thresholds": {"critical": 1.0}, "notify_no_data": false,
+ "notify_audit": false, "new_host_delay": 300, "include_tags": true, "silenced":
+ {}}, "multi": false, "restricted_roles": null, "priority": null}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: POST
+ uri: https://api.datadoghq.eu/api/v1/monitor
+ response:
+ body:
+ string: '{"id": 14605732, "org_id": 1000144613, "type": "slo alert", "name":
+ "Test slo monitor", "message": "Random message", "tags": [], "query": "burn_rate(\"757d56d2b04c5ca198490666f0391009\").over(\"7d\").long_window(\"1h\").short_window(\"5m\")
+ > 1", "options": {"thresholds": {"critical": 1.0}, "notify_no_data": false,
+ "notify_audit": false, "new_host_delay": 300, "include_tags": true, "silenced":
+ {}}, "multi": false, "created_at": 1703619476000, "created": "2023-12-26T19:37:56.703265+00:00",
+ "modified": "2023-12-26T19:37:56.703265+00:00", "deleted": null, "restricted_roles":
+ null, "priority": null, "overall_state_modified": null, "overall_state": "No
+ Data", "creator": {"name": "CI Service Account", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com", "id": 1001177794}}'
+ headers: {}
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1686121345",
+ "status": "paused", "type": "api", "tags": ["multistep"], "config": {"assertions":
+ [], "configVariables": [{"id": "06fdd901-505a-465a-822e-18f547e598cf", "name":
+ "VARIABLE_NAME", "type": "global"}], "steps": [{"allowFailure": true, "assertions":
+ [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
+ [{"field": "content-length", "name": "VAR_EXTRACT", "parser": {"type": "regex",
+ "value": ".*"}, "secure": true, "type": "http_header"}], "isCritical": false,
+ "name": "First api step", "request": {"allow_insecure": true, "basicAuth": {"accessKey":
+ "sigv4-access-key", "region": "sigv4-region", "secretKey": "sigv4-secret-key",
+ "serviceName": "sigv4-service-name", "sessionToken": "sigv4-session-token",
+ "type": "sigv4"}, "body": "this is a body", "certificate": {"cert": {"filename":
+ "Provided in Terraform config"}, "key": {"filename": "key"}}, "follow_redirects":
+ true, "headers": {"Accept": "application/json", "X-Datadog-Trace-ID": "123456789"},
+ "method": "GET", "proxy": {"headers": {"Accept": "application/json", "X-Datadog-Trace-ID":
+ "123456789"}, "url": "https://proxy.url"}, "query": {"foo": "bar"}, "timeout":
+ 30, "url": "https://www.datadoghq.com"}, "retry": {"count": 5, "interval": 1000},
+ "subtype": "http", "id": "3xr-p38-qba"}, {"allowFailure": false, "assertions":
+ [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
+ [], "isCritical": false, "name": "Second api step", "request": {"allow_insecure":
+ true, "basicAuth": {"accessTokenUrl": "https://token.datadoghq.com", "audience":
+ "audience", "clientId": "client-id", "clientSecret": "client-secret", "scope":
+ "scope", "tokenApiAuthentication": "header", "type": "oauth-client"}, "body":
+ "", "follow_redirects": true, "method": "GET", "timeout": 30, "url": "https://docs.datadoghq.com"},
+ "subtype": "http", "id": "3ij-dfg-6tw"}, {"allowFailure": false, "assertions":
+ [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
+ [], "isCritical": false, "name": "Third api step", "request": {"allow_insecure":
+ true, "basicAuth": {"accessTokenUrl": "https://token.datadoghq.com", "audience":
+ "audience", "clientId": "client-id", "clientSecret": "client-secret", "password":
+ "password", "resource": "resource", "scope": "scope", "tokenApiAuthentication":
+ "body", "type": "oauth-rop", "username": "username"}, "body": "", "follow_redirects":
+ true, "method": "GET", "timeout": 30, "url": "https://docs.datadoghq.com"},
+ "subtype": "http", "id": "it3-n6p-xnp"}, {"allowFailure": false, "assertions":
+ [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
+ [], "isCritical": false, "name": "Fourth api step", "request": {"allow_insecure":
+ true, "basicAuth": {"password": "password", "type": "digest", "username": "username"},
+ "body": "", "follow_redirects": true, "method": "GET", "timeout": 30, "url":
+ "https://docs.datadoghq.com"}, "subtype": "http", "id": "vid-d39-qgr"}]}, "message":
+ "Notify @datadog.user", "options": {"min_location_failed": 1, "restricted_roles":
+ ["3a81548a-a426-11ee-bcb1-da7ad0900005"], "tick_every": 900}, "locations": ["aws:eu-central-1"],
+ "subtype": "multi"}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: POST
+ uri: https://api.datadoghq.eu/api/v1/synthetics/tests
+ response:
+ body:
+ string: '{"public_id": "nd8-dwy-6rh", "name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1686121345",
+ "status": "paused", "type": "api", "tags": ["multistep"], "created_at": "2023-12-26T19:37:59.230028+00:00",
+ "modified_at": "2023-12-26T19:37:59.230028+00:00", "config": {"assertions":
+ [], "configVariables": [{"id": "06fdd901-505a-465a-822e-18f547e598cf", "name":
+ "VARIABLE_NAME", "type": "global"}], "steps": [{"allowFailure": true, "assertions":
+ [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
+ [{"field": "content-length", "name": "VAR_EXTRACT", "parser": {"type": "regex",
+ "value": ".*"}, "secure": true, "type": "http_header"}], "isCritical": false,
+ "name": "First api step", "request": {"allow_insecure": true, "basicAuth":
+ {"accessKey": "sigv4-access-key", "region": "sigv4-region", "secretKey": "sigv4-secret-key",
+ "serviceName": "sigv4-service-name", "sessionToken": "sigv4-session-token",
+ "type": "sigv4"}, "body": "this is a body", "certificate": {"cert": {"filename":
+ "Provided in Terraform config"}, "key": {"filename": "key"}}, "follow_redirects":
+ true, "headers": {"Accept": "application/json", "X-Datadog-Trace-ID": "123456789"},
+ "method": "GET", "proxy": {"headers": {"Accept": "application/json", "X-Datadog-Trace-ID":
+ "123456789"}, "url": "https://proxy.url"}, "query": {"foo": "bar"}, "timeout":
+ 30, "url": "https://www.datadoghq.com"}, "retry": {"count": 5, "interval":
+ 1000}, "subtype": "http", "id": "3xr-p38-qba"}, {"allowFailure": false, "assertions":
+ [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
+ [], "isCritical": false, "name": "Second api step", "request": {"allow_insecure":
+ true, "basicAuth": {"accessTokenUrl": "https://token.datadoghq.com", "audience":
+ "audience", "clientId": "client-id", "clientSecret": "client-secret", "scope":
+ "scope", "tokenApiAuthentication": "header", "type": "oauth-client"}, "body":
+ "", "follow_redirects": true, "method": "GET", "timeout": 30, "url": "https://docs.datadoghq.com"},
+ "subtype": "http", "id": "3ij-dfg-6tw"}, {"allowFailure": false, "assertions":
+ [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
+ [], "isCritical": false, "name": "Third api step", "request": {"allow_insecure":
+ true, "basicAuth": {"accessTokenUrl": "https://token.datadoghq.com", "audience":
+ "audience", "clientId": "client-id", "clientSecret": "client-secret", "password":
+ "password", "resource": "resource", "scope": "scope", "tokenApiAuthentication":
+ "body", "type": "oauth-rop", "username": "username"}, "body": "", "follow_redirects":
+ true, "method": "GET", "timeout": 30, "url": "https://docs.datadoghq.com"},
+ "subtype": "http", "id": "it3-n6p-xnp"}, {"allowFailure": false, "assertions":
+ [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
+ [], "isCritical": false, "name": "Fourth api step", "request": {"allow_insecure":
+ true, "basicAuth": {"password": "password", "type": "digest", "username":
+ "username"}, "body": "", "follow_redirects": true, "method": "GET", "timeout":
+ 30, "url": "https://docs.datadoghq.com"}, "subtype": "http", "id": "vid-d39-qgr"}]},
+ "message": "Notify @datadog.user", "options": {"min_location_failed": 1, "restricted_roles":
+ ["3a81548a-a426-11ee-bcb1-da7ad0900005"], "tick_every": 900}, "locations":
+ ["aws:eu-central-1"], "subtype": "multi", "created_by": {"name": "CI Service
+ Account", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com"},
+ "deleted_at": null, "monitor_id": 14605736, "org_id": 1000144613, "modified_by":
+ {"name": "CI Service Account", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com"}}'
+ headers: {}
+ status:
+ code: 200
+ message: OK
- request:
body: '{"name": "Browser Test (cloned)", "status": "live", "type": "browser",
"tags": [], "config": {"variables": [], "setCookie": "", "request": {"url":
"https://docs.datadoghq.com", "headers": {"test": "{{ TEST_VARIABLE }}", "test_two":
"{{ TEST_VAR_LOCAL }}"}, "method": "GET"}, "assertions": [], "configVariables":
[{"pattern": "TEST_VAR_LOCAL", "type": "text", "name": "TEST_VAR_LOCAL", "example":
- "TEST_VAR_LOCAL"}, {"type": "global", "id": "b2ddc900-615c-4d4e-94c0-3e3f7a5a8479",
+ "TEST_VAR_LOCAL"}, {"type": "global", "id": "b994f767-c190-4dae-9924-0048a6a63336",
"name": "TEST_VARIABLE"}]}, "message": "", "options": {"enableSecurityTesting":
false, "retry": {"count": 0, "interval": 300}, "min_location_failed": 1, "min_failure_duration":
0, "noScreenshot": false, "tick_every": 604800, "disableCsp": false, "disableCors":
@@ -3118,14 +5919,14 @@ interactions:
uri: https://api.datadoghq.eu/api/v1/synthetics/tests
response:
body:
- string: '{"public_id": "jkp-y9b-48j", "name": "Browser Test (cloned)", "status":
- "live", "type": "browser", "tags": [], "created_at": "2023-12-19T16:53:54.634206+00:00",
- "modified_at": "2023-12-19T16:53:54.634206+00:00", "config": {"variables":
+ string: '{"public_id": "hmi-svc-itn", "name": "Browser Test (cloned)", "status":
+ "live", "type": "browser", "tags": [], "created_at": "2023-12-26T19:38:05.018622+00:00",
+ "modified_at": "2023-12-26T19:38:05.018622+00:00", "config": {"variables":
[], "setCookie": "", "request": {"url": "https://docs.datadoghq.com", "headers":
{"test": "{{ TEST_VARIABLE }}", "test_two": "{{ TEST_VAR_LOCAL }}"}, "method":
"GET"}, "assertions": [], "configVariables": [{"pattern": "TEST_VAR_LOCAL",
"type": "text", "name": "TEST_VAR_LOCAL", "example": "TEST_VAR_LOCAL"}, {"type":
- "global", "id": "b2ddc900-615c-4d4e-94c0-3e3f7a5a8479", "name": "TEST_VARIABLE"}]},
+ "global", "id": "b994f767-c190-4dae-9924-0048a6a63336", "name": "TEST_VARIABLE"}]},
"message": "", "options": {"enableSecurityTesting": false, "retry": {"count":
0, "interval": 300}, "min_location_failed": 1, "min_failure_duration": 0,
"noScreenshot": false, "tick_every": 604800, "disableCsp": false, "disableCors":
@@ -3134,12 +5935,13 @@ interactions:
"firefox.mobile_small", "firefox.tablet"], "monitor_options": {"notify_audit":
false, "include_tags": true, "new_host_delay": 300, "on_missing_data": "show_no_data",
"renotify_interval": 0}, "ignoreServerCertificateError": false}, "locations":
- ["aws:us-west-1"], "created_by": {"name": "Frog", "handle": "frog@datadoghq.com",
- "email": "frog@datadoghq.com"}, "deleted_at": null, "monitor_id": 14510200,
- "org_id": 1000044987, "modified_by": {"name": "Frog", "handle": "frog@datadoghq.com",
- "email": "frog@datadoghq.com"}, "steps": [{"name": "Type text on input \"s\"",
- "params": {"value": "api", "element": {"url": "https://docs.datadoghq.com/",
- "multiLocator": {"ab": "/*[local-name()=\"html\"][1]/*[local-name()=\"body\"][1]/*[local-name()=\"section\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"form\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"span\"][1]/*[local-name()=\"input\"][2]",
+ ["aws:us-west-1"], "created_by": {"name": "CI Service Account", "handle":
+ "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com"}, "deleted_at":
+ null, "monitor_id": 14605740, "org_id": 1000144613, "modified_by": {"name":
+ "CI Service Account", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email":
+ "frog@datadoghq.com"}, "steps": [{"name": "Type text on input \"s\"", "params":
+ {"value": "api", "element": {"url": "https://docs.datadoghq.com/", "multiLocator":
+ {"ab": "/*[local-name()=\"html\"][1]/*[local-name()=\"body\"][1]/*[local-name()=\"section\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"form\"][1]/*[local-name()=\"div\"][1]/*[local-name()=\"span\"][1]/*[local-name()=\"input\"][2]",
"at": "/descendant::*[@name=\"s\"]", "cl": "/descendant::*[contains(concat(''
'', normalize-space(@class), '' ''), \" docssearch-input \") and contains(concat(''
'', normalize-space(@class), '' ''), \" ds-input \")]", "co": "[{\"text\":\"search
@@ -3223,46 +6025,18 @@ interactions:
code: 200
message: OK
- request:
- body: '{"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1686121345",
- "status": "paused", "type": "api", "tags": ["multistep"], "config": {"assertions":
- [], "configVariables": [{"id": "a71e1eaf-3a01-449b-88f2-71ef1a511e75", "name":
- "VARIABLE_NAME", "type": "global"}], "steps": [{"allowFailure": true, "assertions":
- [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
- [{"field": "content-length", "name": "VAR_EXTRACT", "parser": {"type": "regex",
- "value": ".*"}, "secure": true, "type": "http_header"}], "isCritical": false,
- "name": "First api step", "request": {"allow_insecure": true, "basicAuth": {"accessKey":
- "sigv4-access-key", "region": "sigv4-region", "secretKey": "sigv4-secret-key",
- "serviceName": "sigv4-service-name", "sessionToken": "sigv4-session-token",
- "type": "sigv4"}, "body": "this is a body", "certificate": {"cert": {"filename":
- "Provided in Terraform config"}, "key": {"filename": "key"}}, "follow_redirects":
- true, "headers": {"Accept": "application/json", "X-Datadog-Trace-ID": "123456789"},
- "method": "GET", "proxy": {"headers": {"Accept": "application/json", "X-Datadog-Trace-ID":
- "123456789"}, "url": "https://proxy.url"}, "query": {"foo": "bar"}, "timeout":
- 30, "url": "https://www.datadoghq.com"}, "retry": {"count": 5, "interval": 1000},
- "subtype": "http", "id": "3xr-p38-qba"}, {"allowFailure": false, "assertions":
- [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
- [], "isCritical": false, "name": "Second api step", "request": {"allow_insecure":
- true, "basicAuth": {"accessTokenUrl": "https://token.datadoghq.com", "audience":
- "audience", "clientId": "client-id", "clientSecret": "client-secret", "scope":
- "scope", "tokenApiAuthentication": "header", "type": "oauth-client"}, "body":
- "", "follow_redirects": true, "method": "GET", "timeout": 30, "url": "https://docs.datadoghq.com"},
- "subtype": "http", "id": "3ij-dfg-6tw"}, {"allowFailure": false, "assertions":
- [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
- [], "isCritical": false, "name": "Third api step", "request": {"allow_insecure":
- true, "basicAuth": {"accessTokenUrl": "https://token.datadoghq.com", "audience":
- "audience", "clientId": "client-id", "clientSecret": "client-secret", "password":
- "password", "resource": "resource", "scope": "scope", "tokenApiAuthentication":
- "body", "type": "oauth-rop", "username": "username"}, "body": "", "follow_redirects":
- true, "method": "GET", "timeout": 30, "url": "https://docs.datadoghq.com"},
- "subtype": "http", "id": "it3-n6p-xnp"}, {"allowFailure": false, "assertions":
- [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
- [], "isCritical": false, "name": "Fourth api step", "request": {"allow_insecure":
- true, "basicAuth": {"password": "password", "type": "digest", "username": "username"},
- "body": "", "follow_redirects": true, "method": "GET", "timeout": 30, "url":
- "https://docs.datadoghq.com"}, "subtype": "http", "id": "vid-d39-qgr"}]}, "message":
- "Notify @datadog.user", "options": {"min_location_failed": 1, "restricted_roles":
- ["24d549e4-9e8f-11ee-bcac-da7ad0900005"], "tick_every": 900}, "locations": ["aws:eu-central-1"],
- "subtype": "multi"}'
+ body: '{"data": {"type": "incidents", "attributes": {"incident_type_uuid": null,
+ "title": "Test Incident", "customer_impact_start": null, "customer_impact_end":
+ null, "customer_impacted": false, "detected": "2023-12-11T18:32:09.000380+00:00",
+ "time_to_detect": 0, "time_to_repair": 0, "archived": null, "fields": {"severity":
+ {"type": "dropdown", "value": "UNKNOWN"}, "state": {"type": "dropdown", "value":
+ "active"}, "detection_method": {"type": "dropdown", "value": "unknown"}, "root_cause":
+ {"type": "textbox", "value": null}, "summary": {"type": "textbox", "value":
+ null}, "services": {"type": "autocomplete", "value": null}, "teams": {"type":
+ "autocomplete", "value": null}}, "field_analytics": null, "severity": "UNKNOWN",
+ "state": "active", "non_datadog_creator": null, "visibility": "organization",
+ "case_id": null}, "relationships": {"commander_user": {"data": {"type": "users",
+ "id": "dc00e597-9e99-11ee-aa09-5628ff9a83db"}}}}}'
headers:
Accept:
- '*/*'
@@ -3271,60 +6045,125 @@ interactions:
Content-Type:
- application/json
method: POST
- uri: https://api.datadoghq.eu/api/v1/synthetics/tests
+ uri: https://api.datadoghq.eu/api/v2/incidents
response:
body:
- string: '{"public_id": "46s-tjh-9bw", "name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1686121345",
- "status": "paused", "type": "api", "tags": ["multistep"], "created_at": "2023-12-19T16:53:57.163087+00:00",
- "modified_at": "2023-12-19T16:53:57.163087+00:00", "config": {"assertions":
- [], "configVariables": [{"id": "a71e1eaf-3a01-449b-88f2-71ef1a511e75", "name":
- "VARIABLE_NAME", "type": "global"}], "steps": [{"allowFailure": true, "assertions":
- [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
- [{"field": "content-length", "name": "VAR_EXTRACT", "parser": {"type": "regex",
- "value": ".*"}, "secure": true, "type": "http_header"}], "isCritical": false,
- "name": "First api step", "request": {"allow_insecure": true, "basicAuth":
- {"accessKey": "sigv4-access-key", "region": "sigv4-region", "secretKey": "sigv4-secret-key",
- "serviceName": "sigv4-service-name", "sessionToken": "sigv4-session-token",
- "type": "sigv4"}, "body": "this is a body", "certificate": {"cert": {"filename":
- "Provided in Terraform config"}, "key": {"filename": "key"}}, "follow_redirects":
- true, "headers": {"Accept": "application/json", "X-Datadog-Trace-ID": "123456789"},
- "method": "GET", "proxy": {"headers": {"Accept": "application/json", "X-Datadog-Trace-ID":
- "123456789"}, "url": "https://proxy.url"}, "query": {"foo": "bar"}, "timeout":
- 30, "url": "https://www.datadoghq.com"}, "retry": {"count": 5, "interval":
- 1000}, "subtype": "http", "id": "3xr-p38-qba"}, {"allowFailure": false, "assertions":
- [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
- [], "isCritical": false, "name": "Second api step", "request": {"allow_insecure":
- true, "basicAuth": {"accessTokenUrl": "https://token.datadoghq.com", "audience":
- "audience", "clientId": "client-id", "clientSecret": "client-secret", "scope":
- "scope", "tokenApiAuthentication": "header", "type": "oauth-client"}, "body":
- "", "follow_redirects": true, "method": "GET", "timeout": 30, "url": "https://docs.datadoghq.com"},
- "subtype": "http", "id": "3ij-dfg-6tw"}, {"allowFailure": false, "assertions":
- [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
- [], "isCritical": false, "name": "Third api step", "request": {"allow_insecure":
- true, "basicAuth": {"accessTokenUrl": "https://token.datadoghq.com", "audience":
- "audience", "clientId": "client-id", "clientSecret": "client-secret", "password":
- "password", "resource": "resource", "scope": "scope", "tokenApiAuthentication":
- "body", "type": "oauth-rop", "username": "username"}, "body": "", "follow_redirects":
- true, "method": "GET", "timeout": 30, "url": "https://docs.datadoghq.com"},
- "subtype": "http", "id": "it3-n6p-xnp"}, {"allowFailure": false, "assertions":
- [{"operator": "is", "target": 200, "type": "statusCode"}], "extractedValues":
- [], "isCritical": false, "name": "Fourth api step", "request": {"allow_insecure":
- true, "basicAuth": {"password": "password", "type": "digest", "username":
- "username"}, "body": "", "follow_redirects": true, "method": "GET", "timeout":
- 30, "url": "https://docs.datadoghq.com"}, "subtype": "http", "id": "vid-d39-qgr"}]},
- "message": "Notify @datadog.user", "options": {"min_location_failed": 1, "restricted_roles":
- ["24d549e4-9e8f-11ee-bcac-da7ad0900005"], "tick_every": 900}, "locations":
- ["aws:eu-central-1"], "subtype": "multi", "created_by": {"name": "Frog", "handle":
- "frog@datadoghq.com", "email": "frog@datadoghq.com"}, "deleted_at": null,
- "monitor_id": 14510201, "org_id": 1000044987, "modified_by": {"name": "Frog",
- "handle": "frog@datadoghq.com", "email": "frog@datadoghq.com"}}'
+ string: '{"data": {"type": "incidents", "id": "cddc3af9-6e80-5838-9e88-8658a3b05904",
+ "attributes": {"public_id": 5, "incident_type_uuid": null, "title": "Test
+ Incident", "resolved": null, "customer_impact_scope": null, "customer_impact_start":
+ null, "customer_impact_end": null, "customer_impacted": false, "notification_handles":
+ null, "last_modified_by": {"data": {"type": "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "attributes": {"uuid": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com", "name": "Frog", "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},
+ "last_modified_by_uuid": null, "created": "2023-12-26T19:38:06.378997+00:00",
+ "modified": "2023-12-26T19:38:06.378997+00:00", "commander": {"data": {"type":
+ "users", "id": "dc00e597-9e99-11ee-aa09-5628ff9a83db", "attributes": {"uuid":
+ "dc00e597-9e99-11ee-aa09-5628ff9a83db", "handle": "aldrick.castro@datadoghq.com",
+ "email": "aldrick.castro@datadoghq.com", "name": "Aldrick Castro", "icon":
+ "https://secure.gravatar.com/avatar/c4b2f071a7e83e98302afbc9889cfc18?s=48&d=retro"}}},
+ "detected": "2023-12-11T18:32:09.000380+00:00", "created_by": {"data": {"type":
+ "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "attributes": {"uuid":
+ "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com", "name": "Frog", "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},
+ "created_by_uuid": null, "creation_idempotency_key": null, "customer_impact_duration":
+ 0, "time_to_detect": 0, "time_to_repair": 0, "time_to_internal_response":
+ 1299957, "time_to_resolve": 0, "archived": null, "fields": {"severity": {"type":
+ "dropdown", "value": "UNKNOWN"}, "state": {"type": "dropdown", "value": "active"},
+ "detection_method": {"type": "dropdown", "value": "unknown"}, "root_cause":
+ {"type": "textbox", "value": null}, "summary": {"type": "textbox", "value":
+ null}, "services": {"type": "autocomplete", "value": null}, "teams": {"type":
+ "autocomplete", "value": null}}, "field_analytics": null, "severity": "UNKNOWN",
+ "state": "active", "non_datadog_creator": null, "visibility": "organization",
+ "case_id": null}, "relationships": {"created_by_user": {"data": {"type": "users",
+ "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec"}}, "last_modified_by_user": {"data":
+ {"type": "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec"}}, "commander_user":
+ {"data": {"type": "users", "id": "dc00e597-9e99-11ee-aa09-5628ff9a83db"}},
+ "user_defined_fields": {"data": [{"type": "user_defined_field", "id": "5662d4c3-9f55-58de-a137-be5c36824dcb"},
+ {"type": "user_defined_field", "id": "8b6cbb45-142c-53e4-ad43-d17ff3db131e"},
+ {"type": "user_defined_field", "id": "fbbeb16b-d661-5e24-bd71-de6500529770"},
+ {"type": "user_defined_field", "id": "ec1ffa8a-0acb-59ec-8d69-fccd56ec50bb"},
+ {"type": "user_defined_field", "id": "1ab83a4e-3450-5b5b-9868-5bde5dc61c34"},
+ {"type": "user_defined_field", "id": "c1221926-b4cd-5a73-b058-ddcaecd5b966"},
+ {"type": "user_defined_field", "id": "3d8d459b-3735-53d5-aca7-cdd005c92a45"}]},
+ "integrations": {"data": []}, "attachments": {"data": []}, "responders": {"data":
+ [{"type": "incident_responders", "id": "c458e617-a754-5c98-8e7a-ac7389eeeb62"}]},
+ "impacts": {"data": []}}}}'
+ headers: {}
+ status:
+ code: 201
+ message: Created
+- request:
+ body: '{"data": {"type": "incidents", "attributes": {"incident_type_uuid": null,
+ "title": "Test Incident", "customer_impact_start": null, "customer_impact_end":
+ null, "customer_impacted": false, "detected": "2023-12-11T18:32:09.000380+00:00",
+ "time_to_detect": 0, "time_to_repair": 0, "archived": null, "fields": {"severity":
+ {"type": "dropdown", "value": "UNKNOWN"}, "state": {"type": "dropdown", "value":
+ "active"}, "detection_method": {"type": "dropdown", "value": "unknown"}, "root_cause":
+ {"type": "textbox", "value": null}, "summary": {"type": "textbox", "value":
+ null}, "services": {"type": "autocomplete", "value": null}, "teams": {"type":
+ "autocomplete", "value": null}}, "field_analytics": null, "severity": "UNKNOWN",
+ "state": "active", "non_datadog_creator": null, "visibility": "organization",
+ "case_id": null}, "relationships": {"commander_user": {"data": {"type": "users",
+ "id": "dc00e597-9e99-11ee-aa09-5628ff9a83db"}}}}}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: PATCH
+ uri: https://api.datadoghq.eu/api/v2/incidents/cddc3af9-6e80-5838-9e88-8658a3b05904
+ response:
+ body:
+ string: '{"data": {"type": "incidents", "id": "cddc3af9-6e80-5838-9e88-8658a3b05904",
+ "attributes": {"public_id": 5, "incident_type_uuid": null, "title": "Test
+ Incident", "resolved": null, "customer_impact_scope": null, "customer_impact_start":
+ null, "customer_impact_end": null, "customer_impacted": false, "notification_handles":
+ null, "last_modified_by": {"data": {"type": "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "attributes": {"uuid": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com", "name": "Frog", "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},
+ "last_modified_by_uuid": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "created":
+ "2023-12-26T19:38:06.378997+00:00", "modified": "2023-12-26T19:38:07.971915+00:00",
+ "commander": {"data": {"type": "users", "id": "dc00e597-9e99-11ee-aa09-5628ff9a83db",
+ "attributes": {"uuid": "dc00e597-9e99-11ee-aa09-5628ff9a83db", "handle": "aldrick.castro@datadoghq.com",
+ "email": "aldrick.castro@datadoghq.com", "name": "Aldrick Castro", "icon":
+ "https://secure.gravatar.com/avatar/c4b2f071a7e83e98302afbc9889cfc18?s=48&d=retro"}}},
+ "detected": "2023-12-11T18:32:09.000380+00:00", "created_by": {"data": {"type":
+ "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "attributes": {"uuid":
+ "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com", "name": "CI Service Account", "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},
+ "created_by_uuid": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "creation_idempotency_key":
+ null, "customer_impact_duration": 0, "time_to_detect": 0, "time_to_repair":
+ 0, "time_to_internal_response": 1299957, "time_to_resolve": 0, "archived":
+ null, "fields": {"severity": {"type": "dropdown", "value": "UNKNOWN"}, "state":
+ {"type": "dropdown", "value": "active"}, "detection_method": {"type": "dropdown",
+ "value": "unknown"}, "root_cause": {"type": "textbox", "value": null}, "summary":
+ {"type": "textbox", "value": null}, "services": {"type": "autocomplete", "value":
+ null}, "teams": {"type": "autocomplete", "value": null}}, "field_analytics":
+ null, "severity": "UNKNOWN", "state": "active", "non_datadog_creator": null,
+ "visibility": "organization", "case_id": null}, "relationships": {"created_by_user":
+ {"data": {"type": "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec"}},
+ "last_modified_by_user": {"data": {"type": "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec"}},
+ "commander_user": {"data": {"type": "users", "id": "dc00e597-9e99-11ee-aa09-5628ff9a83db"}},
+ "user_defined_fields": {"data": [{"type": "user_defined_field", "id": "5662d4c3-9f55-58de-a137-be5c36824dcb"},
+ {"type": "user_defined_field", "id": "8b6cbb45-142c-53e4-ad43-d17ff3db131e"},
+ {"type": "user_defined_field", "id": "fbbeb16b-d661-5e24-bd71-de6500529770"},
+ {"type": "user_defined_field", "id": "ec1ffa8a-0acb-59ec-8d69-fccd56ec50bb"},
+ {"type": "user_defined_field", "id": "1ab83a4e-3450-5b5b-9868-5bde5dc61c34"},
+ {"type": "user_defined_field", "id": "c1221926-b4cd-5a73-b058-ddcaecd5b966"},
+ {"type": "user_defined_field", "id": "3d8d459b-3735-53d5-aca7-cdd005c92a45"}]},
+ "integrations": {"data": []}, "attachments": {"data": []}, "responders": {"data":
+ [{"type": "incident_responders", "id": "c458e617-a754-5c98-8e7a-ac7389eeeb62"},
+ {"type": "incident_responders", "id": "66e22a48-8af8-5695-8647-db6512c31c9b"}]},
+ "impacts": {"data": []}}}}'
headers: {}
status:
code: 200
message: OK
- request:
body: '{"type": "slo alert", "name": "Check monitor slo", "message": "Message",
- "tags": [], "query": "error_budget(\"2056b4c971c15e528efffc8fc78178a4\").over(\"7d\")
+ "tags": [], "query": "error_budget(\"c56feb058139508997fbf3c5cad197cf\").over(\"7d\")
> 90", "options": {"thresholds": {"critical": 90.0}, "notify_no_data": false,
"notify_audit": false, "new_host_delay": 300, "include_tags": true, "silenced":
{}}, "multi": false, "restricted_roles": null, "priority": null}'
@@ -3339,15 +6178,15 @@ interactions:
uri: https://api.datadoghq.eu/api/v1/monitor
response:
body:
- string: '{"id": 14510202, "org_id": 1000044987, "type": "slo alert", "name":
- "Check monitor slo", "message": "Message", "tags": [], "query": "error_budget(\"2056b4c971c15e528efffc8fc78178a4\").over(\"7d\")
+ string: '{"id": 14605742, "org_id": 1000144613, "type": "slo alert", "name":
+ "Check monitor slo", "message": "Message", "tags": [], "query": "error_budget(\"c56feb058139508997fbf3c5cad197cf\").over(\"7d\")
> 90", "options": {"thresholds": {"critical": 90.0}, "notify_no_data": false,
"notify_audit": false, "new_host_delay": 300, "include_tags": true, "silenced":
- {}}, "multi": false, "created_at": 1703004837000, "created": "2023-12-19T16:53:57.711336+00:00",
- "modified": "2023-12-19T16:53:57.711336+00:00", "deleted": null, "restricted_roles":
+ {}}, "multi": false, "created_at": 1703619488000, "created": "2023-12-26T19:38:08.503534+00:00",
+ "modified": "2023-12-26T19:38:08.503534+00:00", "deleted": null, "restricted_roles":
null, "priority": null, "overall_state_modified": null, "overall_state": "No
- Data", "creator": {"name": "Frog", "handle": "frog@datadoghq.com", "email":
- "frog@datadoghq.com", "id": 1000219667}}'
+ Data", "creator": {"name": "CI Service Account", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com", "id": 1001177794}}'
headers: {}
status:
code: 200
@@ -3357,18 +6196,18 @@ interactions:
false, "template_variables": [], "widgets": [{"id": 2497183012091650, "definition":
{"title": "New group", "type": "group", "layout_type": "ordered", "widgets":
[{"id": 5316294948508728, "definition": {"title": "", "title_size": "16", "title_align":
- "left", "type": "alert_graph", "alert_id": "14510181", "viz_type": "timeseries"}},
+ "left", "type": "alert_graph", "alert_id": "14605710", "viz_type": "timeseries"}},
{"id": 2269177794822700, "definition": {"title": "", "title_size": "16", "title_align":
- "left", "type": "alert_value", "alert_id": "14510182", "unit": "auto", "text_align":
+ "left", "type": "alert_value", "alert_id": "14605709", "unit": "auto", "text_align":
"left", "precision": 2}}]}}, {"id": 7228117705299642, "definition": {"title":
"", "title_size": "16", "title_align": "left", "type": "query_value", "requests":
[{"response_format": "scalar", "queries": [{"query": "avg:synthetics.http.dns.time{*}",
"data_source": "metrics", "name": "query1", "aggregator": "avg"}]}], "autoscale":
true, "precision": 2}}, {"id": 2397823643167820, "definition": {"title": "",
"title_size": "16", "title_align": "left", "type": "alert_value", "alert_id":
- "14510181", "unit": "auto", "text_align": "left", "precision": 2}}, {"id": 1076364961367720,
+ "14605710", "unit": "auto", "text_align": "left", "precision": 2}}, {"id": 1076364961367720,
"definition": {"title": "", "title_size": "16", "title_align": "left", "type":
- "slo", "slo_id": "2fa9470a541e56b085e94458c8181f62", "view_type": "detail",
+ "slo", "slo_id": "62aa53ae0b9d5b388725ef3a03ef91be", "view_type": "detail",
"view_mode": "overall", "time_windows": ["7d"], "show_error_budget": true, "global_time_target":
"0"}}, {"id": 4123257207386936, "definition": {"title": "", "title_size": "16",
"title_align": "left", "type": "slo", "slo_id": "c4fa01c78d45542cb830598be4f68ad2",
@@ -3386,31 +6225,31 @@ interactions:
uri: https://api.datadoghq.eu/api/v1/dashboard
response:
body:
- string: '{"id": "daj-ywa-p2h", "title": "raw-test", "description": "", "author_handle":
- "frog@datadoghq.com", "author_name": "Frog", "layout_type": "ordered", "url":
- "/dashboard/daj-ywa-p2h/raw-test", "is_read_only": false, "template_variables":
- [], "widgets": [{"id": 2497183012091650, "definition": {"title": "New group",
- "type": "group", "layout_type": "ordered", "widgets": [{"id": 5316294948508728,
+ string: '{"id": "84x-yzm-tcs", "title": "raw-test", "description": "", "author_handle":
+ "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "author_name": "CI Service Account",
+ "layout_type": "ordered", "url": "/dashboard/84x-yzm-tcs/raw-test", "is_read_only":
+ false, "template_variables": [], "widgets": [{"id": 2497183012091650, "definition":
+ {"title": "New group", "type": "group", "layout_type": "ordered", "widgets":
+ [{"id": 5316294948508728, "definition": {"title": "", "title_size": "16",
+ "title_align": "left", "type": "alert_graph", "alert_id": "14605710", "viz_type":
+ "timeseries"}}, {"id": 2269177794822700, "definition": {"title": "", "title_size":
+ "16", "title_align": "left", "type": "alert_value", "alert_id": "14605709",
+ "unit": "auto", "text_align": "left", "precision": 2}}]}}, {"id": 7228117705299642,
+ "definition": {"title": "", "title_size": "16", "title_align": "left", "type":
+ "query_value", "requests": [{"response_format": "scalar", "queries": [{"query":
+ "avg:synthetics.http.dns.time{*}", "data_source": "metrics", "name": "query1",
+ "aggregator": "avg"}]}], "autoscale": true, "precision": 2}}, {"id": 2397823643167820,
"definition": {"title": "", "title_size": "16", "title_align": "left", "type":
- "alert_graph", "alert_id": "14510181", "viz_type": "timeseries"}}, {"id":
- 2269177794822700, "definition": {"title": "", "title_size": "16", "title_align":
- "left", "type": "alert_value", "alert_id": "14510182", "unit": "auto", "text_align":
- "left", "precision": 2}}]}}, {"id": 7228117705299642, "definition": {"title":
- "", "title_size": "16", "title_align": "left", "type": "query_value", "requests":
- [{"response_format": "scalar", "queries": [{"query": "avg:synthetics.http.dns.time{*}",
- "data_source": "metrics", "name": "query1", "aggregator": "avg"}]}], "autoscale":
- true, "precision": 2}}, {"id": 2397823643167820, "definition": {"title": "",
- "title_size": "16", "title_align": "left", "type": "alert_value", "alert_id":
- "14510181", "unit": "auto", "text_align": "left", "precision": 2}}, {"id":
- 1076364961367720, "definition": {"title": "", "title_size": "16", "title_align":
- "left", "type": "slo", "slo_id": "2fa9470a541e56b085e94458c8181f62", "view_type":
- "detail", "view_mode": "overall", "time_windows": ["7d"], "show_error_budget":
+ "alert_value", "alert_id": "14605710", "unit": "auto", "text_align": "left",
+ "precision": 2}}, {"id": 1076364961367720, "definition": {"title": "", "title_size":
+ "16", "title_align": "left", "type": "slo", "slo_id": "62aa53ae0b9d5b388725ef3a03ef91be",
+ "view_type": "detail", "view_mode": "overall", "time_windows": ["7d"], "show_error_budget":
true, "global_time_target": "0"}}, {"id": 4123257207386936, "definition":
{"title": "", "title_size": "16", "title_align": "left", "type": "slo", "slo_id":
"c4fa01c78d45542cb830598be4f68ad2", "view_type": "detail", "view_mode": "overall",
"time_windows": ["7d"], "show_error_budget": true, "global_time_target": "0"}}],
- "notify_list": [], "created_at": "2023-12-19T16:53:59.581380+00:00", "modified_at":
- "2023-12-19T16:53:59.581380+00:00", "reflow_type": "auto", "tags": [], "restricted_roles":
+ "notify_list": [], "created_at": "2023-12-26T19:38:10.699932+00:00", "modified_at":
+ "2023-12-26T19:38:10.699932+00:00", "reflow_type": "auto", "tags": [], "restricted_roles":
[]}'
headers: {}
status:
@@ -3429,17 +6268,17 @@ interactions:
uri: https://api.datadoghq.eu/api/v1/dashboard/lists/manual
response:
body:
- string: '{"author": {"name": "Frog", "handle": "frog@datadoghq.com"}, "created":
- "2023-12-19T16:53:59.977408+00:00", "dashboards": null, "dashboard_count":
- 0, "id": 33964, "is_favorite": false, "modified": "2023-12-19T16:53:59.977414+00:00",
+ string: '{"author": {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec"},
+ "created": "2023-12-26T19:38:11.126043+00:00", "dashboards": null, "dashboard_count":
+ 0, "id": 34030, "is_favorite": false, "modified": "2023-12-26T19:38:11.126072+00:00",
"name": "Test list", "type": "manual_dashboard_list"}'
headers: {}
status:
code: 200
message: OK
- request:
- body: '{"dashboards": [{"id": "daj-ywa-p2h", "type": "custom_timeboard"}, {"id":
- "n5v-rx6-a2v", "type": "custom_screenboard"}]}'
+ body: '{"dashboards": [{"id": "84x-yzm-tcs", "type": "custom_timeboard"}, {"id":
+ "nkw-nry-gr4", "type": "custom_screenboard"}]}'
headers:
Accept:
- '*/*'
@@ -3448,11 +6287,11 @@ interactions:
Content-Type:
- application/json
method: PUT
- uri: https://api.datadoghq.eu/api/v2/dashboard/lists/manual/33964/dashboards
+ uri: https://api.datadoghq.eu/api/v2/dashboard/lists/manual/34030/dashboards
response:
body:
- string: '{"dashboards": [{"type": "custom_timeboard", "id": "daj-ywa-p2h"},
- {"type": "custom_screenboard", "id": "n5v-rx6-a2v"}]}'
+ string: '{"dashboards": [{"type": "custom_timeboard", "id": "84x-yzm-tcs"},
+ {"type": "custom_screenboard", "id": "nkw-nry-gr4"}]}'
headers: {}
status:
code: 200
diff --git a/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_no_resource_diffs.frozen b/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_no_resource_diffs.frozen
new file mode 100644
index 00000000..b4e7257f
--- /dev/null
+++ b/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_no_resource_diffs.frozen
@@ -0,0 +1 @@
+2023-12-22T19:43:31.866330+00:00
\ No newline at end of file
diff --git a/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_cleanup.frozen b/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_cleanup.frozen
new file mode 100644
index 00000000..44481173
--- /dev/null
+++ b/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_cleanup.frozen
@@ -0,0 +1 @@
+2023-12-22T19:43:31.877032+00:00
\ No newline at end of file
diff --git a/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_cleanup.yaml b/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_cleanup.yaml
new file mode 100644
index 00000000..006804ac
--- /dev/null
+++ b/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_cleanup.yaml
@@ -0,0 +1,20 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: DELETE
+ uri: https://api.datadoghq.eu/api/v2/incidents/5ea7d798-0a4f-5777-9fd4-c552032bac4c
+ response:
+ body:
+ string: ''
+ headers: {}
+ status:
+ code: 204
+ message: No Content
+version: 1
diff --git a/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_import.frozen b/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_import.frozen
new file mode 100644
index 00000000..be28d305
--- /dev/null
+++ b/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_import.frozen
@@ -0,0 +1 @@
+2023-12-22T19:43:29.134021+00:00
\ No newline at end of file
diff --git a/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_import.yaml b/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_import.yaml
new file mode 100644
index 00000000..71c0c833
--- /dev/null
+++ b/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_import.yaml
@@ -0,0 +1,79 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: GET
+ uri: https://api.datadoghq.com/api/v2/incidents?page%5Boffset%5D=0&page%5Bsize%5D=100
+ response:
+ body:
+ string: '{"data": [{"type": "incidents", "id": "ccfe999c-e735-5dee-9a2c-aec0078fd0a7",
+ "attributes": {"public_id": 1, "incident_type_uuid": null, "title": "Test
+ Incident", "resolved": null, "customer_impact_scope": null, "customer_impact_start":
+ null, "customer_impact_end": null, "customer_impacted": false, "notification_handles":
+ [], "last_modified_by_uuid": "0dd23ab8-984f-11ee-a259-160bb50d121a", "created":
+ "2023-12-11T18:32:09.013675+00:00", "modified": "2023-12-11T18:32:09.013675+00:00",
+ "detected": "2023-12-11T18:32:09.000380+00:00", "created_by_uuid": "0dd23ab8-984f-11ee-a259-160bb50d121a",
+ "creation_idempotency_key": null, "customer_impact_duration": 0, "time_to_detect":
+ 0, "time_to_repair": 0, "time_to_internal_response": 0, "time_to_resolve":
+ 0, "archived": null, "fields": {"severity": {"type": "dropdown", "value":
+ "UNKNOWN"}, "state": {"type": "dropdown", "value": "active"}, "detection_method":
+ {"type": "dropdown", "value": "unknown"}, "root_cause": {"type": "textbox",
+ "value": null}, "summary": {"type": "textbox", "value": null}, "services":
+ {"type": "autocomplete", "value": null}, "teams": {"type": "autocomplete",
+ "value": null}}, "field_analytics": null, "severity": "UNKNOWN", "state":
+ "active", "non_datadog_creator": null, "visibility": "organization", "case_id":
+ null}, "relationships": {"created_by_user": {"data": {"type": "users", "id":
+ "0dd23ab8-984f-11ee-a259-160bb50d121a"}}, "last_modified_by_user": {"data":
+ {"type": "users", "id": "0dd23ab8-984f-11ee-a259-160bb50d121a"}}, "commander_user":
+ {"data": {"type": "users", "id": "0dd23ab8-984f-11ee-a259-160bb50d121a"}},
+ "user_defined_fields": {"data": [{"type": "user_defined_field", "id": "8e8f5981-3d41-509d-8619-d913ffce9bd7"},
+ {"type": "user_defined_field", "id": "a53f4622-9f24-513a-8a0a-a07b394308ab"},
+ {"type": "user_defined_field", "id": "f40e5f76-862d-5093-b658-de46f6c09d5f"},
+ {"type": "user_defined_field", "id": "c5ed3c02-d2b2-5624-82a1-8ec1a1a685ce"},
+ {"type": "user_defined_field", "id": "b0e362e5-7a16-58e5-ae0a-6a0369e5a4ff"},
+ {"type": "user_defined_field", "id": "2465b7f0-40fa-5d22-a8aa-a7f53dced432"},
+ {"type": "user_defined_field", "id": "5cd92c74-f93c-55ff-a9b7-cb05637fc327"}]},
+ "integrations": {"data": []}, "attachments": {"data": []}, "responders": {"data":
+ [{"type": "incident_responders", "id": "148432c6-8104-52ea-993a-6d8eb2b9d340"}]},
+ "impacts": {"data": []}}}, {"type": "incidents", "id": "6ec747d8-f519-5f38-a401-83c4eb77348d",
+ "attributes": {"public_id": 2, "incident_type_uuid": null, "title": "Example-Incident",
+ "resolved": null, "customer_impact_scope": null, "customer_impact_start":
+ null, "customer_impact_end": null, "customer_impacted": false, "notification_handles":
+ null, "last_modified_by_uuid": "2d0d2076-bfcd-11eb-a4d7-da7ad0900002", "created":
+ "2023-12-11T18:39:17.211433+00:00", "modified": "2023-12-11T18:39:17.211433+00:00",
+ "detected": "2023-12-11T18:39:17.200357+00:00", "created_by_uuid": "2d0d2076-bfcd-11eb-a4d7-da7ad0900002",
+ "creation_idempotency_key": null, "customer_impact_duration": 0, "time_to_detect":
+ 0, "time_to_repair": 0, "time_to_internal_response": 0, "time_to_resolve":
+ 0, "archived": null, "fields": {"severity": {"type": "dropdown", "value":
+ "UNKNOWN"}, "state": {"type": "dropdown", "value": "resolved"}, "detection_method":
+ {"type": "dropdown", "value": "unknown"}, "root_cause": {"type": "textbox",
+ "value": null}, "summary": {"type": "textbox", "value": null}, "services":
+ {"type": "autocomplete", "value": null}, "teams": {"type": "autocomplete",
+ "value": null}}, "field_analytics": null, "severity": "UNKNOWN", "state":
+ "resolved", "non_datadog_creator": null, "visibility": "organization", "case_id":
+ null}, "relationships": {"created_by_user": {"data": {"type": "users", "id":
+ "2d0d2076-bfcd-11eb-a4d7-da7ad0900002"}}, "last_modified_by_user": {"data":
+ {"type": "users", "id": "2d0d2076-bfcd-11eb-a4d7-da7ad0900002"}}, "commander_user":
+ {"data": null}, "user_defined_fields": {"data": [{"type": "user_defined_field",
+ "id": "8e8f5981-3d41-509d-8619-d913ffce9bd7"}, {"type": "user_defined_field",
+ "id": "a53f4622-9f24-513a-8a0a-a07b394308ab"}, {"type": "user_defined_field",
+ "id": "f40e5f76-862d-5093-b658-de46f6c09d5f"}, {"type": "user_defined_field",
+ "id": "c5ed3c02-d2b2-5624-82a1-8ec1a1a685ce"}, {"type": "user_defined_field",
+ "id": "b0e362e5-7a16-58e5-ae0a-6a0369e5a4ff"}, {"type": "user_defined_field",
+ "id": "2465b7f0-40fa-5d22-a8aa-a7f53dced432"}, {"type": "user_defined_field",
+ "id": "5cd92c74-f93c-55ff-a9b7-cb05637fc327"}]}, "integrations": {"data":
+ []}, "attachments": {"data": []}, "responders": {"data": []}, "impacts": {"data":
+ []}}}], "meta": {"pagination": {"offset": 0, "next_offset": 2, "size": 2}}}'
+ headers:
+ Content-Type:
+ - application/json
+ status:
+ code: 200
+ message: OK
+version: 1
diff --git a/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_sync.frozen b/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_sync.frozen
new file mode 100644
index 00000000..73ca0ca0
--- /dev/null
+++ b/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_sync.frozen
@@ -0,0 +1 @@
+2023-12-22T19:43:29.385503+00:00
\ No newline at end of file
diff --git a/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_sync.yaml b/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_sync.yaml
new file mode 100644
index 00000000..5943d8fb
--- /dev/null
+++ b/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_sync.yaml
@@ -0,0 +1,128 @@
+interactions:
+- request:
+ body: '{"data": {"type": "incidents", "attributes": {"incident_type_uuid": null,
+ "title": "Example-Incident", "customer_impact_start": null, "customer_impact_end":
+ null, "customer_impacted": false, "detected": "2023-12-11T18:39:17.200357+00:00",
+ "time_to_detect": 0, "time_to_repair": 0, "archived": null, "fields": {"severity":
+ {"type": "dropdown", "value": "UNKNOWN"}, "state": {"type": "dropdown", "value":
+ "resolved"}, "detection_method": {"type": "dropdown", "value": "unknown"}, "root_cause":
+ {"type": "textbox", "value": null}, "summary": {"type": "textbox", "value":
+ null}, "services": {"type": "autocomplete", "value": null}, "teams": {"type":
+ "autocomplete", "value": null}}, "field_analytics": null, "severity": "UNKNOWN",
+ "state": "resolved", "non_datadog_creator": null, "visibility": "organization",
+ "case_id": null}, "relationships": {"commander_user": {"data": null}}}}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: POST
+ uri: https://api.datadoghq.eu/api/v2/incidents
+ response:
+ body:
+ string: '{"data": {"type": "incidents", "id": "5ea7d798-0a4f-5777-9fd4-c552032bac4c",
+ "attributes": {"public_id": 1, "incident_type_uuid": null, "title": "Example-Incident",
+ "resolved": null, "customer_impact_scope": null, "customer_impact_start":
+ null, "customer_impact_end": null, "customer_impacted": false, "notification_handles":
+ null, "last_modified_by": {"data": {"type": "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "attributes": {"uuid": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com", "name": "Frog", "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},
+ "last_modified_by_uuid": null, "created": "2023-12-22T19:43:30.221707+00:00",
+ "modified": "2023-12-22T19:43:30.221707+00:00", "commander": null, "detected":
+ "2023-12-11T18:39:17.200357+00:00", "created_by": {"data": {"type": "users",
+ "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "attributes": {"uuid": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com",
+ "name": "Frog", "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},
+ "created_by_uuid": null, "creation_idempotency_key": null, "customer_impact_duration":
+ 0, "time_to_detect": 0, "time_to_repair": 0, "time_to_internal_response":
+ 954253, "time_to_resolve": 0, "archived": null, "fields": {"severity": {"type":
+ "dropdown", "value": "UNKNOWN"}, "state": {"type": "dropdown", "value": "resolved"},
+ "detection_method": {"type": "dropdown", "value": "unknown"}, "root_cause":
+ {"type": "textbox", "value": null}, "summary": {"type": "textbox", "value":
+ null}, "services": {"type": "autocomplete", "value": null}, "teams": {"type":
+ "autocomplete", "value": null}}, "field_analytics": null, "severity": "UNKNOWN",
+ "state": "resolved", "non_datadog_creator": null, "visibility": "organization",
+ "case_id": null}, "relationships": {"created_by_user": {"data": {"type": "users",
+ "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec"}}, "last_modified_by_user": {"data":
+ {"type": "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec"}}, "commander_user":
+ {"data": null}, "user_defined_fields": {"data": [{"type": "user_defined_field",
+ "id": "5662d4c3-9f55-58de-a137-be5c36824dcb"}, {"type": "user_defined_field",
+ "id": "8b6cbb45-142c-53e4-ad43-d17ff3db131e"}, {"type": "user_defined_field",
+ "id": "fbbeb16b-d661-5e24-bd71-de6500529770"}, {"type": "user_defined_field",
+ "id": "ec1ffa8a-0acb-59ec-8d69-fccd56ec50bb"}, {"type": "user_defined_field",
+ "id": "1ab83a4e-3450-5b5b-9868-5bde5dc61c34"}, {"type": "user_defined_field",
+ "id": "c1221926-b4cd-5a73-b058-ddcaecd5b966"}, {"type": "user_defined_field",
+ "id": "3d8d459b-3735-53d5-aca7-cdd005c92a45"}]}, "integrations": {"data":
+ []}, "attachments": {"data": []}, "responders": {"data": []}, "impacts": {"data":
+ []}}}}'
+ headers: {}
+ status:
+ code: 201
+ message: Created
+- request:
+ body: '{"data": {"type": "incidents", "attributes": {"incident_type_uuid": null,
+ "title": "Example-Incident", "customer_impact_start": null, "customer_impact_end":
+ null, "customer_impacted": false, "detected": "2023-12-11T18:39:17.200357+00:00",
+ "time_to_detect": 0, "time_to_repair": 0, "archived": null, "fields": {"severity":
+ {"type": "dropdown", "value": "UNKNOWN"}, "state": {"type": "dropdown", "value":
+ "resolved"}, "detection_method": {"type": "dropdown", "value": "unknown"}, "root_cause":
+ {"type": "textbox", "value": null}, "summary": {"type": "textbox", "value":
+ null}, "services": {"type": "autocomplete", "value": null}, "teams": {"type":
+ "autocomplete", "value": null}}, "field_analytics": null, "severity": "UNKNOWN",
+ "state": "resolved", "non_datadog_creator": null, "visibility": "organization",
+ "case_id": null}, "relationships": {"commander_user": {"data": null}}}}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: PATCH
+ uri: https://api.datadoghq.eu/api/v2/incidents/5ea7d798-0a4f-5777-9fd4-c552032bac4c
+ response:
+ body:
+ string: '{"data": {"type": "incidents", "id": "5ea7d798-0a4f-5777-9fd4-c552032bac4c",
+ "attributes": {"public_id": 1, "incident_type_uuid": null, "title": "Example-Incident",
+ "resolved": "2023-12-22T19:43:30.722386+00:00", "customer_impact_scope": null,
+ "customer_impact_start": null, "customer_impact_end": null, "customer_impacted":
+ false, "notification_handles": null, "last_modified_by": {"data": {"type":
+ "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "attributes": {"uuid":
+ "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com", "name": "Frog", "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},
+ "last_modified_by_uuid": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "created":
+ "2023-12-22T19:43:30.221707+00:00", "modified": "2023-12-22T19:43:30.727848+00:00",
+ "commander": null, "detected": "2023-12-11T18:39:17.200357+00:00", "created_by":
+ {"data": {"type": "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "attributes":
+ {"uuid": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com", "name": "Frog", "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},
+ "created_by_uuid": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "creation_idempotency_key":
+ null, "customer_impact_duration": 0, "time_to_detect": 0, "time_to_repair":
+ 0, "time_to_internal_response": 954253, "time_to_resolve": 0, "archived":
+ null, "fields": {"severity": {"type": "dropdown", "value": "UNKNOWN"}, "state":
+ {"type": "dropdown", "value": "resolved"}, "detection_method": {"type": "dropdown",
+ "value": "unknown"}, "root_cause": {"type": "textbox", "value": null}, "summary":
+ {"type": "textbox", "value": null}, "services": {"type": "autocomplete", "value":
+ null}, "teams": {"type": "autocomplete", "value": null}}, "field_analytics":
+ null, "severity": "UNKNOWN", "state": "resolved", "non_datadog_creator": null,
+ "visibility": "organization", "case_id": null}, "relationships": {"created_by_user":
+ {"data": {"type": "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec"}},
+ "last_modified_by_user": {"data": {"type": "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec"}},
+ "commander_user": {"data": null}, "user_defined_fields": {"data": [{"type":
+ "user_defined_field", "id": "5662d4c3-9f55-58de-a137-be5c36824dcb"}, {"type":
+ "user_defined_field", "id": "8b6cbb45-142c-53e4-ad43-d17ff3db131e"}, {"type":
+ "user_defined_field", "id": "fbbeb16b-d661-5e24-bd71-de6500529770"}, {"type":
+ "user_defined_field", "id": "ec1ffa8a-0acb-59ec-8d69-fccd56ec50bb"}, {"type":
+ "user_defined_field", "id": "1ab83a4e-3450-5b5b-9868-5bde5dc61c34"}, {"type":
+ "user_defined_field", "id": "c1221926-b4cd-5a73-b058-ddcaecd5b966"}, {"type":
+ "user_defined_field", "id": "3d8d459b-3735-53d5-aca7-cdd005c92a45"}]}, "integrations":
+ {"data": []}, "attachments": {"data": []}, "responders": {"data": [{"type":
+ "incident_responders", "id": "94f8b6ff-8911-5fb5-baf8-49207fee386e"}]}, "impacts":
+ {"data": []}}}}'
+ headers: {}
+ status:
+ code: 200
+ message: OK
+version: 1
diff --git a/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_update_sync.frozen b/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_update_sync.frozen
new file mode 100644
index 00000000..0986a268
--- /dev/null
+++ b/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_update_sync.frozen
@@ -0,0 +1 @@
+2023-12-22T19:43:30.946752+00:00
\ No newline at end of file
diff --git a/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_update_sync.yaml b/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_update_sync.yaml
new file mode 100644
index 00000000..dae46876
--- /dev/null
+++ b/tests/integration/resources/cassettes/test_incidents/TestIncidentsResources.test_resource_update_sync.yaml
@@ -0,0 +1,66 @@
+interactions:
+- request:
+ body: '{"data": {"type": "incidents", "attributes": {"incident_type_uuid": null,
+ "title": "Example-Incidentupdated", "customer_impact_start": null, "customer_impact_end":
+ null, "customer_impacted": false, "detected": "2023-12-11T18:39:17.200357+00:00",
+ "time_to_detect": 0, "time_to_repair": 0, "archived": null, "fields": {"severity":
+ {"type": "dropdown", "value": "UNKNOWN"}, "state": {"type": "dropdown", "value":
+ "resolved"}, "detection_method": {"type": "dropdown", "value": "unknown"}, "root_cause":
+ {"type": "textbox", "value": null}, "summary": {"type": "textbox", "value":
+ null}, "services": {"type": "autocomplete", "value": null}, "teams": {"type":
+ "autocomplete", "value": null}}, "field_analytics": null, "severity": "UNKNOWN",
+ "state": "resolved", "non_datadog_creator": null, "visibility": "organization",
+ "case_id": null}, "relationships": {"commander_user": {"data": null}}}}'
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Content-Type:
+ - application/json
+ method: PATCH
+ uri: https://api.datadoghq.eu/api/v2/incidents/5ea7d798-0a4f-5777-9fd4-c552032bac4c
+ response:
+ body:
+ string: '{"data": {"type": "incidents", "id": "5ea7d798-0a4f-5777-9fd4-c552032bac4c",
+ "attributes": {"public_id": 1, "incident_type_uuid": null, "title": "Example-Incidentupdated",
+ "resolved": "2023-12-22T19:43:30.722386+00:00", "customer_impact_scope": null,
+ "customer_impact_start": null, "customer_impact_end": null, "customer_impacted":
+ false, "notification_handles": null, "last_modified_by": {"data": {"type":
+ "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "attributes": {"uuid":
+ "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com", "name": "Frog", "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},
+ "last_modified_by_uuid": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "created":
+ "2023-12-22T19:43:30.221707+00:00", "modified": "2023-12-22T19:43:31.562744+00:00",
+ "commander": null, "detected": "2023-12-11T18:39:17.200357+00:00", "created_by":
+ {"data": {"type": "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "attributes":
+ {"uuid": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec",
+ "email": "frog@datadoghq.com", "name": "Frog", "icon": "https://secure.gravatar.com/avatar/28a16dfe36e73b60c1d55872cb0f1172?s=48&d=retro"}}},
+ "created_by_uuid": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "creation_idempotency_key":
+ null, "customer_impact_duration": 0, "time_to_detect": 0, "time_to_repair":
+ 0, "time_to_internal_response": 954253, "time_to_resolve": 0, "archived":
+ null, "fields": {"severity": {"type": "dropdown", "value": "UNKNOWN"}, "state":
+ {"type": "dropdown", "value": "resolved"}, "detection_method": {"type": "dropdown",
+ "value": "unknown"}, "root_cause": {"type": "textbox", "value": null}, "summary":
+ {"type": "textbox", "value": null}, "services": {"type": "autocomplete", "value":
+ null}, "teams": {"type": "autocomplete", "value": null}}, "field_analytics":
+ null, "severity": "UNKNOWN", "state": "resolved", "non_datadog_creator": null,
+ "visibility": "organization", "case_id": null}, "relationships": {"created_by_user":
+ {"data": {"type": "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec"}},
+ "last_modified_by_user": {"data": {"type": "users", "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec"}},
+ "commander_user": {"data": null}, "user_defined_fields": {"data": [{"type":
+ "user_defined_field", "id": "5662d4c3-9f55-58de-a137-be5c36824dcb"}, {"type":
+ "user_defined_field", "id": "8b6cbb45-142c-53e4-ad43-d17ff3db131e"}, {"type":
+ "user_defined_field", "id": "fbbeb16b-d661-5e24-bd71-de6500529770"}, {"type":
+ "user_defined_field", "id": "ec1ffa8a-0acb-59ec-8d69-fccd56ec50bb"}, {"type":
+ "user_defined_field", "id": "1ab83a4e-3450-5b5b-9868-5bde5dc61c34"}, {"type":
+ "user_defined_field", "id": "c1221926-b4cd-5a73-b058-ddcaecd5b966"}, {"type":
+ "user_defined_field", "id": "3d8d459b-3735-53d5-aca7-cdd005c92a45"}]}, "integrations":
+ {"data": []}, "attachments": {"data": []}, "responders": {"data": [{"type":
+ "incident_responders", "id": "94f8b6ff-8911-5fb5-baf8-49207fee386e"}]}, "impacts":
+ {"data": []}}}}'
+ headers: {}
+ status:
+ code: 200
+ message: OK
+version: 1
diff --git a/tests/integration/resources/test_incidents.py b/tests/integration/resources/test_incidents.py
new file mode 100644
index 00000000..1ba54f3a
--- /dev/null
+++ b/tests/integration/resources/test_incidents.py
@@ -0,0 +1,11 @@
+# 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 Incidents
+
+
+class TestIncidentsResources(BaseResourcesTestClass):
+ resource_type = Incidents.resource_type
+ field_to_update = "attributes.title"
diff --git a/tests/integration/test_cli.py b/tests/integration/test_cli.py
index a3e0cf1f..41297b19 100644
--- a/tests/integration/test_cli.py
+++ b/tests/integration/test_cli.py
@@ -29,6 +29,7 @@ class TestCli:
"downtimes",
"service_level_objectives",
"slo_corrections",
+ "incidents",
]
)