From 2a55daf1a0811f0b23be132c19f56640352da0b1 Mon Sep 17 00:00:00 2001 From: Michael Richey <41595765+michael-richey@users.noreply.github.com> Date: Fri, 27 Sep 2024 15:05:35 -0400 Subject: [PATCH] HAMR-164: Add migrate command (#287) * Add migrate command --- datadog_sync/commands/__init__.py | 2 + datadog_sync/commands/_import.py | 2 +- datadog_sync/commands/diffs.py | 8 +- datadog_sync/commands/migrate.py | 27 + datadog_sync/commands/shared/options.py | 43 +- datadog_sync/commands/shared/utils.py | 5 +- datadog_sync/commands/sync.py | 30 +- datadog_sync/constants.py | 1 + datadog_sync/utils/configuration.py | 4 +- .../test_cli/TestCli.test_migrate.frozen | 1 + .../test_cli/TestCli.test_migrate.yaml | 9650 +++++++++++++++++ tests/integration/test_cli.py | 13 + 12 files changed, 9749 insertions(+), 37 deletions(-) create mode 100644 datadog_sync/commands/migrate.py create mode 100644 tests/integration/cassettes/test_cli/TestCli.test_migrate.frozen create mode 100644 tests/integration/cassettes/test_cli/TestCli.test_migrate.yaml diff --git a/datadog_sync/commands/__init__.py b/datadog_sync/commands/__init__.py index 32724782..438bce28 100644 --- a/datadog_sync/commands/__init__.py +++ b/datadog_sync/commands/__init__.py @@ -6,10 +6,12 @@ from datadog_sync.commands.sync import sync from datadog_sync.commands._import import _import from datadog_sync.commands.diffs import diffs +from datadog_sync.commands.migrate import migrate ALL_COMMANDS = [ sync, _import, diffs, + migrate, ] diff --git a/datadog_sync/commands/_import.py b/datadog_sync/commands/_import.py index 4543b2ab..114d9066 100644 --- a/datadog_sync/commands/_import.py +++ b/datadog_sync/commands/_import.py @@ -5,13 +5,13 @@ from click import command -from datadog_sync.constants import Command from datadog_sync.commands.shared.options import ( common_options, destination_auth_options, source_auth_options, ) from datadog_sync.commands.shared.utils import run_cmd +from datadog_sync.constants import Command @command(Command.IMPORT.value, short_help="Import Datadog resources.") diff --git a/datadog_sync/commands/diffs.py b/datadog_sync/commands/diffs.py index 3cf49241..b102beab 100644 --- a/datadog_sync/commands/diffs.py +++ b/datadog_sync/commands/diffs.py @@ -7,19 +7,19 @@ from datadog_sync.commands.shared.options import ( common_options, - source_auth_options, destination_auth_options, - non_import_common_options, + diffs_common_options, + source_auth_options, ) -from datadog_sync.constants import Command from datadog_sync.commands.shared.utils import run_cmd +from datadog_sync.constants import Command @command(Command.DIFFS.value, short_help="Log resource diffs.") @source_auth_options @destination_auth_options @common_options -@non_import_common_options +@diffs_common_options def diffs(**kwargs): """Log Datadog resources diffs.""" run_cmd(Command.DIFFS, **kwargs) diff --git a/datadog_sync/commands/migrate.py b/datadog_sync/commands/migrate.py new file mode 100644 index 00000000..37f23181 --- /dev/null +++ b/datadog_sync/commands/migrate.py @@ -0,0 +1,27 @@ +# 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 click import command + +from datadog_sync.commands.shared.options import ( + common_options, + destination_auth_options, + diffs_common_options, + source_auth_options, + sync_common_options, +) +from datadog_sync.commands.shared.utils import run_cmd +from datadog_sync.constants import Command + + +@command(Command.MIGRATE.value, short_help="Migrate Datadog resources from one datacenter to another.") +@source_auth_options +@destination_auth_options +@common_options +@diffs_common_options +@sync_common_options +def migrate(**kwargs): + """Migrate Datadog resources from one datqaacenter to another.""" + run_cmd(Command.MIGRATE, **kwargs) diff --git a/datadog_sync/commands/shared/options.py b/datadog_sync/commands/shared/options.py index d8b334d1..54627903 100644 --- a/datadog_sync/commands/shared/options.py +++ b/datadog_sync/commands/shared/options.py @@ -94,7 +94,7 @@ def click_config_file_provider(ctx: Context, opts: CustomOptionClass, value: Non type=int, default=60, show_default=True, - help="The HTTP request retry timeout period. Defaults to 60s", + help="The HTTP request retry timeout period in seconds.", cls=CustomOptionClass, ), option( @@ -104,7 +104,7 @@ def click_config_file_provider(ctx: Context, opts: CustomOptionClass, value: Non type=int, default=30, show_default=True, - help="The HTTP request timeout period. Defaults to 30s", + help="The HTTP request timeout period in seconds.", cls=CustomOptionClass, ), option( @@ -126,6 +126,7 @@ def click_config_file_provider(ctx: Context, opts: CustomOptionClass, value: Non "--max-workers", envvar=constants.MAX_WORKERS, default=100, + show_default=True, required=False, type=int, help="Max number of workers when running operations in multi-threads.", @@ -136,6 +137,7 @@ def click_config_file_provider(ctx: Context, opts: CustomOptionClass, value: Non envvar=constants.DD_FILTER_OPERATOR, required=False, default="OR", + show_default=True, help="Filter operator when multiple filters are passed. Supports `AND` or `OR`.", cls=CustomOptionClass, ), @@ -161,7 +163,8 @@ def click_config_file_provider(ctx: Context, opts: CustomOptionClass, value: Non default=True, show_default=True, help="Enables validation of the provided API during client initialization. On import, " - "only source api key is validated. On sync/diffs, only destination api key is validated.", + "only source api key is validated. On sync/diffs, only destination api key is validated. " + "On migrate, both source and destination api keys are validated.", cls=CustomOptionClass, ), option( @@ -169,13 +172,14 @@ def click_config_file_provider(ctx: Context, opts: CustomOptionClass, value: Non type=bool, required=False, default=True, + show_default=True, help="Enables sync-cli metrics being sent to both source and destination", cls=CustomOptionClass, ), ] -_non_import_common_options = [ +_diffs_common_options = [ option( "--skip-failed-resource-connections", type=bool, @@ -199,6 +203,29 @@ def click_config_file_provider(ctx: Context, opts: CustomOptionClass, value: Non ] +_sync_common_options = [ + option( + "--force-missing-dependencies", + required=False, + is_flag=True, + default=False, + show_default=True, + help="Force importing and syncing resources that could be potential dependencies to the requested resources.", + cls=CustomOptionClass, + ), + option( + "--create-global-downtime", + required=False, + is_flag=True, + default=False, + show_default=True, + help="Scheduled downtime is meant to be removed during failover when " + "user determines monitors have enough telemetry to trigger appropriately.", + cls=CustomOptionClass, + ), +] + + def source_auth_options(func: Callable) -> Callable: return _build_options_helper(func, _source_auth_options) @@ -211,8 +238,12 @@ def common_options(func: Callable) -> Callable: return _build_options_helper(func, _common_options) -def non_import_common_options(func: Callable) -> Callable: - return _build_options_helper(func, _non_import_common_options) +def diffs_common_options(func: Callable) -> Callable: + return _build_options_helper(func, _diffs_common_options) + + +def sync_common_options(func: Callable) -> Callable: + return _build_options_helper(func, _sync_common_options) def _build_options_helper(func: Callable, options: List[Callable]) -> Callable: diff --git a/datadog_sync/commands/shared/utils.py b/datadog_sync/commands/shared/utils.py index 0c6a3912..36f7f2fb 100644 --- a/datadog_sync/commands/shared/utils.py +++ b/datadog_sync/commands/shared/utils.py @@ -17,7 +17,7 @@ def run_cmd(cmd: Command, **kwargs): asyncio.run(run_cmd_async(cfg, handler, cmd)) except KeyboardInterrupt: cfg.logger.error("Process interrupted by user") - if cmd == Command.SYNC: + if cmd in [Command.SYNC, Command.MIGRATE]: cfg.logger.info("Writing synced resources to disk before exit...") cfg.state.dump_state() exit(0) @@ -41,6 +41,9 @@ async def run_cmd_async(cfg: Configuration, handler: ResourcesHandler, cmd: Comm await handler.apply_resources() elif cmd == Command.DIFFS: await handler.diffs() + elif cmd == Command.MIGRATE: + await handler.import_resources() + await handler.apply_resources() else: cfg.logger.error(f"Command {cmd.value} not found") return diff --git a/datadog_sync/commands/sync.py b/datadog_sync/commands/sync.py index d8f02d42..7ef6d92f 100644 --- a/datadog_sync/commands/sync.py +++ b/datadog_sync/commands/sync.py @@ -3,41 +3,25 @@ # This product includes software developed at Datadog (https://www.datadoghq.com/). # Copyright 2019 Datadog, Inc. -from click import command, option +from click import command -from datadog_sync.constants import Command from datadog_sync.commands.shared.options import ( - CustomOptionClass, common_options, - source_auth_options, destination_auth_options, - non_import_common_options, + diffs_common_options, + source_auth_options, + sync_common_options, ) from datadog_sync.commands.shared.utils import run_cmd +from datadog_sync.constants import Command @command(Command.SYNC.value, short_help="Sync Datadog resources to destination.") @source_auth_options @destination_auth_options @common_options -@non_import_common_options -@option( - "--force-missing-dependencies", - required=False, - is_flag=True, - default=False, - help="Force importing and syncing resources that could be potential dependencies to the requested resources.", - cls=CustomOptionClass, -) -@option( - "--create-global-downtime", - required=False, - is_flag=True, - default=False, - help="Scheduled downtime is meant to be removed during failover when " - "user determines monitors have enough telemetry to trigger appropriately.", - cls=CustomOptionClass, -) +@diffs_common_options +@sync_common_options def sync(**kwargs): """Sync Datadog resources to destination.""" run_cmd(Command.SYNC, **kwargs) diff --git a/datadog_sync/constants.py b/datadog_sync/constants.py index 99365324..cd2e2aa7 100644 --- a/datadog_sync/constants.py +++ b/datadog_sync/constants.py @@ -38,6 +38,7 @@ class Command(Enum): IMPORT = "import" SYNC = "sync" DIFFS = "diffs" + MIGRATE = "migrate" # Origin diff --git a/datadog_sync/utils/configuration.py b/datadog_sync/utils/configuration.py index 1056beb2..e55b1045 100644 --- a/datadog_sync/utils/configuration.py +++ b/datadog_sync/utils/configuration.py @@ -57,12 +57,12 @@ async def init_async(self, cmd: Command): # Validate the clients. For import we only validate the source client # For sync/diffs we validate the destination client. if self.validate: - if cmd in [Command.SYNC, Command.DIFFS]: + if cmd in [Command.SYNC, Command.DIFFS, Command.MIGRATE]: try: await _validate_client(self.destination_client) except Exception: exit(1) - if cmd == Command.IMPORT: + if cmd in [Command.IMPORT, Command.MIGRATE]: try: await _validate_client(self.source_client) except Exception: diff --git a/tests/integration/cassettes/test_cli/TestCli.test_migrate.frozen b/tests/integration/cassettes/test_cli/TestCli.test_migrate.frozen new file mode 100644 index 00000000..4581eb9e --- /dev/null +++ b/tests/integration/cassettes/test_cli/TestCli.test_migrate.frozen @@ -0,0 +1 @@ +2024-09-27T13:50:02.487728-04:00 \ No newline at end of file diff --git a/tests/integration/cassettes/test_cli/TestCli.test_migrate.yaml b/tests/integration/cassettes/test_cli/TestCli.test_migrate.yaml new file mode 100644 index 00000000..204e002f --- /dev/null +++ b/tests/integration/cassettes/test_cli/TestCli.test_migrate.yaml @@ -0,0 +1,9650 @@ +interactions: +- 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:custom-location-0bf64e97eec8416e292447a0a902f5c6", + "name": "Custom Location"}, {"id": "pl:custom-location-with-restricted-roles-946ecd8f86d8de1b74926a3c18e3e7fe", + "name": "Custom location with restricted roles"}]}' + 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:custom-location-0bf64e97eec8416e292447a0a902f5c6 + response: + body: + string: '{"createdAt": "2024-02-01T21:13:10.694645+00:00", "modifiedAt": "2024-02-01T21:13:10.694645+00:00", + "description": "Random location for test", "tags": ["test:foo"], "name": "Custom + Location", "metadata": {"restricted_roles": []}, "id": "pl:custom-location-0bf64e97eec8416e292447a0a902f5c6", + "createdBy": "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/private-locations/pl:custom-location-with-restricted-roles-946ecd8f86d8de1b74926a3c18e3e7fe + response: + body: + string: '{"createdAt": "2024-02-01T21:45:46.664961+00:00", "modifiedAt": "2024-02-01T21:46:11.374936+00:00", + "description": "", "tags": [], "name": "Custom location with restricted roles", + "metadata": {"restricted_roles": ["fa017a35-bfcb-11eb-a4d7-da7ad0900002"]}, + "id": "pl:custom-location-with-restricted-roles-946ecd8f86d8de1b74926a3c18e3e7fe", + "createdBy": "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/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/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: '{"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/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": 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": "de0e73c2-3d23-11ee-aa7d-da7ad0900002"}, {"type": "permissions", + "id": "de0eb666-3d23-11ee-aa7e-da7ad0900002"}, {"type": "permissions", "id": + "5356dfd2-3dee-11ee-b07b-da7ad0900002"}, {"type": "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, + {"type": "permissions", "id": "263eff86-6925-11ee-acc0-da7ad0900002"}, {"type": + "permissions", "id": "50c270de-69ee-11ee-9151-da7ad0900002"}, {"type": "permissions", + "id": "7c7836fc-6f6e-11ee-8cdd-da7ad0900002"}, {"type": "permissions", "id": + "10098bc8-984b-11ee-9b69-da7ad0900002"}, {"type": "permissions", "id": "10091e90-984b-11ee-9b68-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": "de0e73c2-3d23-11ee-aa7d-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": + 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/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": "de0e73c2-3d23-11ee-aa7d-da7ad0900002", "attributes": + {"name": "security_monitoring_suppressions_read", "display_name": "Security + Suppressions Read", "description": "Read Rule Suppressions.", "created": "2023-08-17T17:31:15.369551+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "de0eb666-3d23-11ee-aa7e-da7ad0900002", + "attributes": {"name": "security_monitoring_suppressions_write", "display_name": + "Security Suppressions Write", "description": "Write Rule Suppressions.", + "created": "2023-08-17T17:31:15.369551+00:00", "group_name": "Cloud Security + Platform", "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": "263eff86-6925-11ee-acc0-da7ad0900002", "attributes": {"name": "ndm_netflow_port_mappings_write", + "display_name": "NDM Netflow Port Mappings Write", "description": "Write NDM + Netflow port mappings.", "created": "2023-10-12T17:31:17.142666+00:00", "group_name": + "Network Device Monitoring", "display_type": "write", "restricted": false}}, + {"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}}, {"type": + "permissions", "id": "10098bc8-984b-11ee-9b69-da7ad0900002", "attributes": + {"name": "error_tracking_settings_write", "display_name": "Error Tracking + Settings Write", "description": "Enable/disable Error Tracking, edit inclusion + filters, and edit rate limit.", "created": "2023-12-11T17:31:05.405902+00:00", + "group_name": "Error Tracking", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "10091e90-984b-11ee-9b68-da7ad0900002", "attributes": + {"name": "error_tracking_exclusion_filters_write", "display_name": "Error + Tracking Exclusion Filters Write", "description": "Add or change Error Tracking + exclusion filters.", "created": "2023-12-11T17:31:05.405902+00:00", "group_name": + "Error Tracking", "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/v2/users?page%5Bnumber%5D=0&page%5Bsize%5D=500 + 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": "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": + "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": "de0e73c2-3d23-11ee-aa7d-da7ad0900002"}, {"type": "permissions", "id": + "de0eb666-3d23-11ee-aa7e-da7ad0900002"}, {"type": "permissions", "id": "5356dfd2-3dee-11ee-b07b-da7ad0900002"}, + {"type": "permissions", "id": "a8b4d6e8-4ea4-11ee-b482-da7ad0900002"}, {"type": + "permissions", "id": "263eff86-6925-11ee-acc0-da7ad0900002"}, {"type": "permissions", + "id": "50c270de-69ee-11ee-9151-da7ad0900002"}, {"type": "permissions", "id": + "7c7836fc-6f6e-11ee-8cdd-da7ad0900002"}, {"type": "permissions", "id": "10098bc8-984b-11ee-9b69-da7ad0900002"}, + {"type": "permissions", "id": "10091e90-984b-11ee-9b68-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": + "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": + "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": "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": "de0e73c2-3d23-11ee-aa7d-da7ad0900002", "attributes": + {"name": "security_monitoring_suppressions_read", "display_name": "Security + Suppressions Read", "description": "Read Rule Suppressions.", "created": "2023-08-17T17:31:15.369551+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "de0eb666-3d23-11ee-aa7e-da7ad0900002", + "attributes": {"name": "security_monitoring_suppressions_write", "display_name": + "Security Suppressions Write", "description": "Write Rule Suppressions.", + "created": "2023-08-17T17:31:15.369551+00:00", "group_name": "Cloud Security + Platform", "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": "263eff86-6925-11ee-acc0-da7ad0900002", "attributes": {"name": "ndm_netflow_port_mappings_write", + "display_name": "NDM Netflow Port Mappings Write", "description": "Write NDM + Netflow port mappings.", "created": "2023-10-12T17:31:17.142666+00:00", "group_name": + "Network Device Monitoring", "display_type": "write", "restricted": false}}, + {"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}}, {"type": + "permissions", "id": "10098bc8-984b-11ee-9b69-da7ad0900002", "attributes": + {"name": "error_tracking_settings_write", "display_name": "Error Tracking + Settings Write", "description": "Enable/disable Error Tracking, edit inclusion + filters, and edit rate limit.", "created": "2023-12-11T17:31:05.405902+00:00", + "group_name": "Error Tracking", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "10091e90-984b-11ee-9b68-da7ad0900002", "attributes": + {"name": "error_tracking_exclusion_filters_write", "display_name": "Error + Tracking Exclusion Filters Write", "description": "Add or change Error Tracking + exclusion filters.", "created": "2023-12-11T17:31:05.405902+00:00", "group_name": + "Error Tracking", "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": "de0e73c2-3d23-11ee-aa7d-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 + 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/variables + response: + body: + string: '{"variables": [{"id": "24a74917-d729-4729-a809-0d05cf159e25", "name": + "TF_TESTACCDATADOGSYNTHETICSTESTMULTISTEPAPI_BASIC_LOCAL_1686121345", "description": + "a global variable", "type": "variable", "tags": ["foo:bar", "baz"], "created_at": + "2023-06-07T07:02:27.297319+00:00", "modified_at": "2023-06-07T07:02:27.297319+00:00", + "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"}, "creator": {"email": + "frog@datadoghq.com", "handle": "frog@datadoghq.com", "name": "Frog"}, "editor": + {"email": "frog@datadoghq.com", "handle": "frog@datadoghq.com", "name": "Frog"}}, + {"id": "56683f0a-ffb7-4920-99ef-0ab6a23b3105", "name": "TF_TESTACCDATADOGSYNTHETICSTESTMULTISTEPAPI_BASIC_LOCAL_1670405911", + "description": "a global variable", "type": "variable", "tags": ["foo:bar", + "baz"], "created_at": "2022-12-07T09:38:33.277732+00:00", "modified_at": "2022-12-07T09:38:33.277732+00:00", + "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"}, "creator": {"email": + "frog@datadoghq.com", "handle": "frog@datadoghq.com", "name": "Frog"}, "editor": + {"email": "frog@datadoghq.com", "handle": "frog@datadoghq.com", "name": "Frog"}}, + {"id": "7478e601-cbe3-4a7d-babf-d48702b6b833", "name": "TEST_VARIABLE", "description": + "test", "type": "variable", "tags": ["check_type:api"], "created_at": "2021-06-03T18:18:16.703730+00:00", + "modified_at": "2021-06-03T18:36:04.287393+00:00", "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"}, "creator": {"email": + "sherzod.karimov@datadoghq.com", "handle": "sherzod.karimov@datadoghq.com", + "name": "Sherzod Karimov"}, "editor": {"email": "sherzod.karimov@datadoghq.com", + "handle": "sherzod.karimov@datadoghq.com", "name": "Sherzod Karimov"}}, {"id": + "759ce860-7050-4894-a678-415b5d318301", "name": "TF_TESTACCDATADOGSYNTHETICSTESTMULTISTEPAPI_BASIC_LOCAL_1670404656", + "description": "a global variable", "type": "variable", "tags": ["foo:bar", + "baz"], "created_at": "2022-12-07T09:17:38.930557+00:00", "modified_at": "2022-12-07T09:17:38.930557+00:00", + "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"}, "creator": {"email": + "frog@datadoghq.com", "handle": "frog@datadoghq.com", "name": "Frog"}, "editor": + {"email": "frog@datadoghq.com", "handle": "frog@datadoghq.com", "name": "Frog"}}, + {"id": "7dfd62d2-e1bf-466d-b47b-f337d4a82877", "name": "EXAMPLE_VARIABLE", + "description": "Description of the variable", "type": "variable", "tags": + ["foo:bar", "env:test"], "created_at": "2021-06-08T18:26:23.679434+00:00", + "modified_at": "2021-06-08T18:26:23.679434+00:00", "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"}, "creator": {"email": "sherzod.karimov@datadoghq.com", + "handle": "sherzod.karimov@datadoghq.com", "name": "Sherzod Karimov"}, "editor": + {"email": "sherzod.karimov@datadoghq.com", "handle": "sherzod.karimov@datadoghq.com", + "name": "Sherzod Karimov"}}, {"id": "cd272ea4-7cc2-4b88-bc1f-e271c96b695f", + "name": "TEST_FROM_HTTP", "description": "", "type": "variable", "tags": [], + "created_at": "2021-07-13T21:43:15.652450+00:00", "modified_at": "2023-03-13T16:26:02.063894+00:00", + "parse_test_public_id": "9kt-p3e-he4", "parse_test_name": "HTTP Test", "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": {}}, "creator": {"email": + "sherzod.karimov@datadoghq.com", "handle": "sherzod.karimov@datadoghq.com", + "name": "Sherzod Karimov"}, "editor": {"email": "sherzod.karimov@datadoghq.com", + "handle": "sherzod.karimov@datadoghq.com", "name": "Sherzod Karimov"}}, {"id": + "d1474d27-babb-4cbd-a30d-8396f8e90883", "name": "TEST_SECRETS", "description": + "", "type": "variable", "tags": [], "created_at": "2021-09-22T12:37:59.793993+00:00", + "modified_at": "2021-09-22T12:37:59.793993+00:00", "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}, "creator": {"email": "noueman.khalikine@datadoghq.com", "handle": "noueman.khalikine@datadoghq.com", + "name": "Noueman Khalikine"}, "editor": {"email": "noueman.khalikine@datadoghq.com", + "handle": "noueman.khalikine@datadoghq.com", "name": "Noueman Khalikine"}}]}' + 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/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/monitor?page=0&page_size=1000 + 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": + "2024-01-30T20:05:08+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/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": + 0}, {"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/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/dashboard + response: + body: + string: '{"dashboards": [{"id": "euw-cp8-hy6", "title": "raw-test", "description": + "", "layout_type": "ordered", "url": "/dashboard/euw-cp8-hy6/raw-test", "is_read_only": + false, "created_at": "2021-06-01T20:18:57.486260+00:00", "modified_at": "2023-11-27T21:30:12.468262+00:00", + "author_handle": "sherzod.karimov@datadoghq.com", "deleted_at": null}, {"id": + "tuw-te2-pdj", "title": "datadog-sync-cli Test Dashboard", "description": + "", "layout_type": "ordered", "url": "/dashboard/tuw-te2-pdj/datadog-sync-cli-test-dashboard", + "is_read_only": false, "created_at": "2021-06-30T11:45:57.574935+00:00", "modified_at": + "2021-06-30T11:46:46.923260+00:00", "author_handle": "noueman.khalikine@datadoghq.com", + "deleted_at": null}, {"id": "dns-jst-h98", "title": "Test screenboard", "description": + "Created using the Datadog provider in Terraform", "layout_type": "free", + "url": "/dashboard/dns-jst-h98/test-screenboard", "is_read_only": false, "created_at": + "2021-06-08T18:26:23.515662+00:00", "modified_at": "2021-06-22T19:35:38.981348+00:00", + "author_handle": "sherzod.karimov@datadoghq.com", "deleted_at": null}]}' + 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/euw-cp8-hy6 + response: + body: + string: '{"id": "euw-cp8-hy6", "title": "raw-test", "description": "", "author_handle": + "sherzod.karimov@datadoghq.com", "author_name": "Sherzod Karimov", "layout_type": + "ordered", "url": "/dashboard/euw-cp8-hy6/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": "36230659", "viz_type": + "timeseries"}}, {"id": 2269177794822700, "definition": {"title": "", "title_size": + "16", "title_align": "left", "type": "alert_value", "alert_id": "37284965", + "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": "36230659", "unit": "auto", "text_align": "left", + "precision": 2}}, {"id": 1076364961367720, "definition": {"title": "", "title_size": + "16", "title_align": "left", "type": "slo", "slo_id": "ae04001ea55f52f6ae4b85d9b1023909", + "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": "2021-06-01T20:18:57.486260+00:00", "modified_at": + "2023-11-27T21:30:12.468262+00:00", "reflow_type": "auto", "tags": [], "restricted_roles": + []}' + 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/tuw-te2-pdj + response: + body: + string: '{"id": "tuw-te2-pdj", "title": "datadog-sync-cli Test Dashboard", "description": + "", "author_handle": "noueman.khalikine@datadoghq.com", "author_name": "Noueman + Khalikine", "layout_type": "ordered", "url": "/dashboard/tuw-te2-pdj/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": + "2021-06-30T11:45:57.574935+00:00", "modified_at": "2021-06-30T11:46:46.923260+00:00", + "reflow_type": "fixed", "restricted_roles": []}' + 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/dns-jst-h98 + response: + body: + string: '{"id": "dns-jst-h98", "title": "Test screenboard", "description": "Created + using the Datadog provider in Terraform", "author_handle": "sherzod.karimov@datadoghq.com", + "author_name": "Sherzod Karimov", "layout_type": "free", "url": "/dashboard/dns-jst-h98/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": + "Widget Title", "title_align": "left", "time": {"live_span": "1h"}, "query": + "*", "type": "event_stream", "event_size": "l"}, "layout": {"y": 5, "x": 5, + "height": 43, "width": 32}, "id": 4066667513687323}, {"definition": {"title_size": + "16", "title": "Widget Title", "title_align": "left", "time": {"live_span": + "1h"}, "query": "*", "type": "event_timeline"}, "layout": {"y": 73, "x": 42, + "height": 9, "width": 65}, "id": 68713679518613}, {"definition": {"color": + "#d00", "text": "free text content", "type": "free_text", "font_size": "88", + "text_align": "left"}, "layout": {"y": 5, "x": 42, "height": 20, "width": + 30}, "id": 1117617615518455}, {"definition": {"url": "http://google.com", + "type": "iframe"}, "layout": {"y": 8, "x": 111, "height": 46, "width": 39}, + "id": 3098118775539428}, {"definition": {"url": "https://images.pexels.com/photos/67636/rose-blue-flower-rose-blooms-67636.jpeg?auto=compress&cs=tinysrgb&h=350", + "sizing": "fit", "margin": "small", "type": "image"}, "layout": {"y": 7, "x": + 77, "height": 20, "width": 30}, "id": 651713243056399}, {"definition": {"logset": + "", "sort": {"column": "time", "order": "desc"}, "show_message_column": true, + "show_date_column": true, "message_display": "expanded-md", "indexes": ["main"], + "query": "error", "type": "log_stream", "columns": ["core_host", "core_service", + "tag_source"]}, "layout": {"y": 51, "x": 5, "height": 36, "width": 32}, "id": + 5458329230004343}, {"definition": {"sort": "status,asc", "count": 50, "title_size": + "16", "title": "Widget Title", "title_align": "left", "hide_zero_counts": + true, "start": 0, "summary_type": "monitors", "query": "type:metric", "color_preference": + "text", "show_last_triggered": false, "display_format": "countsAndList", "type": + "manage_status"}, "layout": {"y": 55, "x": 112, "height": 40, "width": 30}, + "id": 1112741664700765}, {"definition": {"span_name": "cassandra.query", "title_size": + "13", "service": "alerting-cassandra", "title": "alerting-cassandra #env:datad0g.com", + "size_format": "large", "show_hits": true, "show_latency": false, "title_align": + "center", "show_errors": true, "show_breakdown": true, "env": "datad0g.com", + "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": "2021-06-08T18:26:23.515662+00:00", "modified_at": "2021-06-22T19:35:38.981348+00:00", + "template_variable_presets": [{"template_variables": [{"name": "var_1", "value": + "host.dc"}, {"name": "var_2", "value": "my_service"}], "name": "preset_1"}], + "restricted_roles": []}' + 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.eu/api/v2/permissions + response: + body: + string: '{"data": [{"type": "permissions", "id": "f1624684-d87d-11e8-acac-efb4dbffab1c", + "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-25T17:46:46.704903+00:00", "group_name": + "General", "display_type": "other", "restricted": false}}, {"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": + "1ad6fd30-2844-11eb-a18d-5f72a244f27a", "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:44:13.810028+00:00", + "group_name": "Integrations", "display_type": "other", "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": "80b47bb2-8b69-11ec-a597-da7ad0900005", + "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:18.877166+00:00", + "group_name": "Case and Incident Management", "display_type": "other", "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": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "attributes": + {"name": "security_monitoring_suppressions_read", "display_name": "Security + Suppressions Read", "description": "Read Rule Suppressions.", "created": "2023-08-17T16:25:26.209216+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", + "attributes": {"name": "security_monitoring_suppressions_write", "display_name": + "Security Suppressions Write", "description": "Write Rule Suppressions.", + "created": "2023-08-17T16:25:26.209216+00:00", "group_name": "Cloud Security + Platform", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "attributes": {"name": "static_analysis_settings_write", + "display_name": "Static Analysis Settings Write", "description": "Edit Static + Analysis settings.", "created": "2023-08-18T16:25:56.688500+00:00", "group_name": + "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": "09a13d52-691c-11ee-b7a4-da7ad0900005", "attributes": {"name": "ndm_netflow_port_mappings_write", + "display_name": "NDM Netflow Port Mappings Write", "description": "Write NDM + Netflow port mappings.", "created": "2023-10-12T16:26:03.661255+00:00", "group_name": + "Network Device Monitoring", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005", "attributes": + {"name": "appsec_vm_read", "display_name": "Vulnerability Management Read", + "description": "View vulnerabilities. This does not restrict access to the + vulnerability data source through the API or inventory SQL.", "created": "2023-10-13T16:25:53.335225+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + true}}, {"type": "permissions", "id": "54f38ef0-6f65-11ee-a094-da7ad0900005", + "attributes": {"name": "debugger_capture_variables", "display_name": "Dynamic + Instrumentation Capture Variables", "description": "Create or modify Dynamic + Instrumentation probes that capture function state: local variables, method + arguments, fields, and return value or thrown exception.", "created": "2023-10-20T16:25:50.268064+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "f2cc9374-9841-11ee-a301-da7ad0900005", "attributes": + {"name": "error_tracking_settings_write", "display_name": "Error Tracking + Settings Write", "description": "Enable/disable Error Tracking, edit inclusion + filters, and edit rate limit.", "created": "2023-12-11T16:25:50.880331+00:00", + "group_name": "Error Tracking", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "attributes": + {"name": "error_tracking_exclusion_filters_write", "display_name": "Error + Tracking Exclusion Filters Write", "description": "Add or change Error Tracking + exclusion filters.", "created": "2023-12-11T16:25:50.880331+00:00", "group_name": + "Error Tracking", "display_type": "write", "restricted": false}}]}' + 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": 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", + "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": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", + "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": + "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", + "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}, {"type": "permissions", "id": + "f2cc9374-9841-11ee-a301-da7ad0900005"}, {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005"}]}}}], + "meta": {"page": {"total_count": 1, "total_filtered_count": 1}}}' + 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=500 + response: + body: + 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": "2024-02-02T21:23:44.343028+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": "2024-02-02T21:24:12.857967+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": [{"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": "2024-02-02T21:24:02.836054+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": "2024-02-02T21:24:13.200599+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": 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": + "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": "2024-02-02T21:24:03.178825+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": []}, "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": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": + "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": "e8c17678-3de3-11ee-a66f-da7ad0900005"}, + {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": + "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": "permissions", + "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", "id": + "54f38ef0-6f65-11ee-a094-da7ad0900005"}, {"type": "permissions", "id": "f2cc9374-9841-11ee-a301-da7ad0900005"}, + {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005"}]}}}, + {"type": "permissions", "id": "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": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "attributes": + {"name": "security_monitoring_suppressions_read", "display_name": "Security + Suppressions Read", "description": "Read Rule Suppressions.", "created": "2023-08-17T16:25:26.209216+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", + "attributes": {"name": "security_monitoring_suppressions_write", "display_name": + "Security Suppressions Write", "description": "Write Rule Suppressions.", + "created": "2023-08-17T16:25:26.209216+00:00", "group_name": "Cloud Security + Platform", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "attributes": {"name": "static_analysis_settings_write", + "display_name": "Static Analysis Settings Write", "description": "Edit Static + Analysis settings.", "created": "2023-08-18T16:25:56.688500+00:00", "group_name": + "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": "09a13d52-691c-11ee-b7a4-da7ad0900005", "attributes": {"name": "ndm_netflow_port_mappings_write", + "display_name": "NDM Netflow Port Mappings Write", "description": "Write NDM + Netflow port mappings.", "created": "2023-10-12T16:26:03.661255+00:00", "group_name": + "Network Device Monitoring", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005", "attributes": + {"name": "appsec_vm_read", "display_name": "Vulnerability Management Read", + "description": "View vulnerabilities. This does not restrict access to the + vulnerability data source through the API or inventory SQL.", "created": "2023-10-13T16:25:53.335225+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + true}}, {"type": "permissions", "id": "54f38ef0-6f65-11ee-a094-da7ad0900005", + "attributes": {"name": "debugger_capture_variables", "display_name": "Dynamic + Instrumentation Capture Variables", "description": "Create or modify Dynamic + Instrumentation probes that capture function state: local variables, method + arguments, fields, and return value or thrown exception.", "created": "2023-10-20T16:25:50.268064+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "f2cc9374-9841-11ee-a301-da7ad0900005", "attributes": + {"name": "error_tracking_settings_write", "display_name": "Error Tracking + Settings Write", "description": "Enable/disable Error Tracking, edit inclusion + filters, and edit rate limit.", "created": "2023-12-11T16:25:50.880331+00:00", + "group_name": "Error Tracking", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "attributes": + {"name": "error_tracking_exclusion_filters_write", "display_name": "Error + Tracking Exclusion Filters Write", "description": "Add or change Error Tracking + exclusion filters.", "created": "2023-12-11T16:25:50.880331+00:00", "group_name": + "Error Tracking", "display_type": "write", "restricted": false}}], "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/v1/synthetics/variables + response: + body: + string: '{"variables": []}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"description": "Random location for test", "tags": ["test:foo", "managed_by:datadog-sync"], + "name": "Custom Location", "metadata": {"restricted_roles": []}}' + 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": "2024-02-02T21:31:34.907875+00:00", + "modifiedAt": "2024-02-02T21:31:34.907875+00:00", "description": "Random location + for test", "tags": ["test:foo", "managed_by:datadog-sync"], "name": "Custom + Location", "metadata": {"restricted_roles": []}, "id": "pl:custom-location-99d39e1d71d67dc354856c3e1717a3d7", + "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: '{"name": "HTTP Test", "status": "paused", "type": "api", "tags": ["managed_by:datadog-sync"], + "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"}' + 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": "9i6-8y4-cmu", "name": "HTTP Test", "status": "paused", + "type": "api", "tags": ["managed_by:datadog-sync"], "created_at": "2024-02-02T21:31:35.559831+00:00", + "modified_at": "2024-02-02T21:31:35.559831+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", "created_by": {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", + "email": "frog@datadoghq.com"}, "deleted_at": null, "monitor_id": 15219213, + "org_id": 1000144613, "modified_by": {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", + "email": "frog@datadoghq.com"}}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"name": "Test-Trigger_Synthetics_tests_returns_OK_response-1666783270", + "status": "live", "type": "api", "tags": ["testing:api", "managed_by:datadog-sync"], + "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"}' + 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": "jg5-imb-deq", "name": "Test-Trigger_Synthetics_tests_returns_OK_response-1666783270", + "status": "live", "type": "api", "tags": ["testing:api", "managed_by:datadog-sync"], + "created_at": "2024-02-02T21:31:35.945097+00:00", "modified_at": "2024-02-02T21:31:35.945097+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", "created_by": + {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": + "frog@datadoghq.com"}, "deleted_at": null, "monitor_id": 15219214, "org_id": + 1000144613, "modified_by": {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", + "email": "frog@datadoghq.com"}}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"name": "TCP Test", "status": "live", "type": "api", "tags": ["foo:bar", + "foo", "env:test", "managed_by:datadog-sync"], "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"}' + 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": "2ir-b6a-b4m", "name": "TCP Test", "status": "live", + "type": "api", "tags": ["foo:bar", "foo", "env:test", "managed_by:datadog-sync"], + "created_at": "2024-02-02T21:31:36.376302+00:00", "modified_at": "2024-02-02T21:31:36.376302+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": + "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com"}, "deleted_at": + null, "monitor_id": 15219215, "org_id": 1000144613, "modified_by": {"name": + "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com"}}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"name": "SSL Test", "status": "live", "type": "api", "tags": ["foo:bar", + "foo", "env:test", "managed_by:datadog-sync"], "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"}' + 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": "ddz-7mp-jwj", "name": "SSL Test", "status": "live", + "type": "api", "tags": ["foo:bar", "foo", "env:test", "managed_by:datadog-sync"], + "created_at": "2024-02-02T21:31:36.937363+00:00", "modified_at": "2024-02-02T21:31:36.937363+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": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com"}, + "deleted_at": null, "monitor_id": 15219216, "org_id": 1000144613, "modified_by": + {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": + "frog@datadoghq.com"}}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"name": "TEST_VARIABLE", "description": "test", "type": "variable", "tags": + ["check_type:api", "managed_by:datadog-sync"], "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": "1b6e578d-9cf8-42c9-ab1f-dad727da34f7", "name": "TEST_VARIABLE", + "description": "test", "type": "variable", "tags": ["check_type:api", "managed_by:datadog-sync"], + "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": "DNS Test", "status": "live", "type": "api", "tags": ["foo:bar", + "foo", "env:test", "managed_by:datadog-sync"], "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"}' + 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": "urd-n7v-hjd", "name": "DNS Test", "status": "live", + "type": "api", "tags": ["foo:bar", "foo", "env:test", "managed_by:datadog-sync"], + "created_at": "2024-02-02T21:31:37.666200+00:00", "modified_at": "2024-02-02T21:31:37.666200+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": + "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com"}, "deleted_at": + null, "monitor_id": 15219217, "org_id": 1000144613, "modified_by": {"name": + "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com"}}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"name": "Multistep API Test", "status": "live", "type": "api", "tags": + ["check_type:api", "env:test", "test:update", "managed_by:datadog-sync"], "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"}' + 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": "xp6-qky-jd7", "name": "Multistep API Test", "status": + "live", "type": "api", "tags": ["check_type:api", "env:test", "test:update", + "managed_by:datadog-sync"], "created_at": "2024-02-02T21:31:38.151662+00:00", + "modified_at": "2024-02-02T21:31:38.151662+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", "created_by": {"name": + "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com"}, + "deleted_at": null, "monitor_id": 15219218, "org_id": 1000144613, "modified_by": + {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "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", "managed_by:datadog-sync"], "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": "05c7c507-88da-4912-98d3-a57c3ddbbcf1", "name": "TF_TESTACCDATADOGSYNTHETICSTESTMULTISTEPAPI_BASIC_LOCAL_1686121345", + "description": "a global variable", "type": "variable", "tags": ["foo:bar", + "baz", "managed_by:datadog-sync"], "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: '{"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: + - '*/*' + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + method: POST + uri: https://api.datadoghq.eu/api/v2/roles + response: + body: + string: '{"data": {"type": "roles", "id": "72e91790-c212-11ee-aa34-da7ad0900005", + "attributes": {"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1686121345", + "created_at": "2024-02-02T21:31:38.813146+00:00", "modified_at": "2024-02-02T21:31:38.844885+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: '{"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": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, + {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + method: POST + uri: https://api.datadoghq.eu/api/v2/roles + response: + body: + string: '{"data": {"type": "roles", "id": "73312a4e-c212-11ee-9457-da7ad0900005", + "attributes": {"name": "Datadog Read Only Role", "created_at": "2024-02-02T21:31:39.285186+00:00", + "modified_at": "2024-02-02T21:31:39.335804+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": "ac2c73f8-3d1a-11ee-8f54-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: '{"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": "2024-02-02T21:31:39.639395+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": "TF_TESTACCDATADOGSYNTHETICSTESTMULTISTEPAPI_BASIC_LOCAL_1670405911", + "description": "a global variable", "type": "variable", "tags": ["foo:bar", + "baz", "managed_by:datadog-sync"], "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": "e9719d22-116b-4ec6-80ea-5d11325e5b55", "name": "TF_TESTACCDATADOGSYNTHETICSTESTMULTISTEPAPI_BASIC_LOCAL_1670405911", + "description": "a global variable", "type": "variable", "tags": ["foo:bar", + "baz", "managed_by:datadog-sync"], "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", "managed_by:datadog-sync"], "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": "5a2fec71-c8a1-4a16-a8ba-61d784302779", "name": "TF_TESTACCDATADOGSYNTHETICSTESTMULTISTEPAPI_BASIC_LOCAL_1670404656", + "description": "a global variable", "type": "variable", "tags": ["foo:bar", + "baz", "managed_by:datadog-sync"], "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", "managed_by:datadog-sync"], + "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": "c020b23d-c075-42aa-8bce-84d89ff60a4c", "name": "EXAMPLE_VARIABLE", + "description": "Description of the variable", "type": "variable", "tags": + ["foo:bar", "env:test", "managed_by:datadog-sync"], "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": + ["managed_by:datadog-sync"], "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": "8d722633-8e5c-44ac-a0f9-174eb22c2086", "name": "TEST_SECRETS", + "description": "", "type": "variable", "tags": ["managed_by:datadog-sync"], + "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: '{"type": "query alert", "name": "Composite monitor - Child 2", "message": + "Test monitor ----------------", "tags": ["test:foo", "test_two:bar", "managed_by:datadog-sync"], + "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": 15219219, "org_id": 1000144613, "type": "query alert", "name": + "Composite monitor - Child 2", "message": "Test monitor ----------------", + "tags": ["test:foo", "test_two:bar", "managed_by:datadog-sync"], "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": 1706909501000, "created": "2024-02-02T21:31:41.114791+00:00", + "modified": "2024-02-02T21:31:41.114791+00:00", "deleted": null, "restricted_roles": + null, "priority": null, "overall_state_modified": null, "overall_state": "No + Data", "creator": {"name": "Frog", "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 1", "message": + "Composite monitor - child 1", "tags": ["test:foo", "managed_by:datadog-sync"], + "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: + - '*/*' + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + method: POST + uri: https://api.datadoghq.eu/api/v1/monitor + response: + body: + string: '{"id": 15219220, "org_id": 1000144613, "type": "query alert", "name": + "Composite monitor - child 1", "message": "Composite monitor - child 1", "tags": + ["test:foo", "managed_by:datadog-sync"], "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": 1706909501000, "created": "2024-02-02T21:31:41.454250+00:00", + "modified": "2024-02-02T21:31:41.454250+00:00", "deleted": null, "restricted_roles": + null, "priority": null, "overall_state_modified": null, "overall_state": "No + Data", "creator": {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", + "email": "frog@datadoghq.com", "id": 1001177794}}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"type": "service check", "name": "Host monitor", "message": "Test host + monitor", "tags": ["service:daimler-health-service", "managed_by:datadog-sync"], + "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: + - '*/*' + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + method: POST + uri: https://api.datadoghq.eu/api/v1/monitor + response: + body: + string: '{"id": 15219221, "org_id": 1000144613, "type": "service check", "name": + "Host monitor", "message": "Test host monitor", "tags": ["service:daimler-health-service", + "managed_by:datadog-sync"], "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": 1706909501000, "created": "2024-02-02T21:31:41.752597+00:00", + "modified": "2024-02-02T21:31:41.752597+00:00", "deleted": null, "restricted_roles": + null, "priority": null, "overall_state_modified": null, "overall_state": "No + Data", "creator": {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", + "email": "frog@datadoghq.com", "id": 1001177794}}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"type": "query alert", "name": "Anomaly monitor", "message": "Anomaly + monitor", "tags": ["managed_by:datadog-sync"], "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, "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": 15219222, "org_id": 1000144613, "type": "query alert", "name": + "Anomaly monitor", "message": "Anomaly monitor", "tags": ["managed_by:datadog-sync"], + "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": 1706909502000, "created": "2024-02-02T21:31:42.096157+00:00", + "modified": "2024-02-02T21:31:42.096157+00:00", "deleted": null, "restricted_roles": + null, "priority": null, "overall_state_modified": null, "overall_state": "No + Data", "creator": {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", + "email": "frog@datadoghq.com", "id": 1001177794}}' + 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": ["managed_by:datadog-sync"], "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: POST + uri: https://api.datadoghq.eu/api/v1/monitor + response: + body: + string: '{"id": 15219223, "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": + ["managed_by:datadog-sync"], "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": 1706909502000, + "created": "2024-02-02T21:31:42.423385+00:00", "modified": "2024-02-02T21:31:42.423385+00:00", + "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified": + null, "overall_state": "No Data", "creator": {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", + "email": "frog@datadoghq.com", "id": 1001177794}}' + 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": ["managed_by:datadog-sync"], "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: + - '*/*' + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + method: POST + uri: https://api.datadoghq.eu/api/v1/monitor + response: + body: + string: '{"id": 15219224, "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": ["managed_by:datadog-sync"], "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": 1706909502000, + "created": "2024-02-02T21:31:42.815917+00:00", "modified": "2024-02-02T21:31:42.815917+00:00", + "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified": + null, "overall_state": "No Data", "creator": {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", + "email": "frog@datadoghq.com", "id": 1001177794}}' + 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": ["managed_by:datadog-sync"], + "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: + - '*/*' + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + method: POST + uri: https://api.datadoghq.eu/api/v1/monitor + response: + body: + string: '{"id": 15219225, "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": ["managed_by:datadog-sync"], + "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": 1706909503000, "created": + "2024-02-02T21:31:43.199756+00:00", "modified": "2024-02-02T21:31:43.199756+00:00", + "deleted": null, "restricted_roles": null, "priority": null, "overall_state_modified": + null, "overall_state": "No Data", "creator": {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", + "email": "frog@datadoghq.com", "id": 1001177794}}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"type": "event-v2 alert", "name": "Test event monitor", "message": "Test + event monitor", "tags": ["managed_by:datadog-sync"], "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: + - '*/*' + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + method: POST + uri: https://api.datadoghq.eu/api/v1/monitor + response: + body: + string: '{"id": 15219226, "org_id": 1000144613, "type": "event-v2 alert", "name": + "Test event monitor", "message": "Test event monitor", "tags": ["managed_by:datadog-sync"], + "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": + 1706909503000, "created": "2024-02-02T21:31:43.588639+00:00", "modified": + "2024-02-02T21:31:43.588639+00:00", "deleted": null, "restricted_roles": null, + "priority": null, "overall_state_modified": null, "overall_state": "No Data", + "creator": {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", + "email": "frog@datadoghq.com", "id": 1001177794}}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"name": "SLO test", "tags": ["managed_by:datadog-sync"], "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: + - '*/*' + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + method: POST + uri: https://api.datadoghq.eu/api/v1/slo + response: + body: + string: '{"data": [{"id": "f750e9c9158e52d4a43fa9c047fdb51b", "name": "SLO test", + "tags": ["managed_by:datadog-sync"], "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": + "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com"}, "created_at": + 1706909503, "modified_at": 1706909503}], "error": null}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"name": "Empty Test List"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + method: POST + uri: https://api.datadoghq.eu/api/v1/dashboard/lists/manual + response: + body: + string: '{"author": {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec"}, + "created": "2024-02-02T21:31:44.204022+00:00", "dashboards": null, "dashboard_count": + 0, "id": 35552, "is_favorite": false, "modified": "2024-02-02T21:31:44.204030+00:00", + "name": "Empty Test List", "type": "manual_dashboard_list"}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"dashboards": []}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + method: PUT + uri: https://api.datadoghq.eu/api/v2/dashboard/lists/manual/35552/dashboards + response: + body: + string: '{"dashboards": []}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"name": "Empty Test List"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + method: POST + uri: https://api.datadoghq.eu/api/v1/dashboard/lists/manual + response: + body: + string: '{"author": {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec"}, + "created": "2024-02-02T21:31:44.730975+00:00", "dashboards": null, "dashboard_count": + 0, "id": 35553, "is_favorite": false, "modified": "2024-02-02T21:31:44.730987+00:00", + "name": "Empty Test List", "type": "manual_dashboard_list"}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"dashboards": []}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + method: PUT + uri: https://api.datadoghq.eu/api/v2/dashboard/lists/manual/35553/dashboards + response: + body: + string: '{"dashboards": []}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"title": "Test screenboard", "description": "Created using the Datadog + provider in Terraform", "layout_type": "free", "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": "Widget Title", "title_align": "left", "time": {"live_span": + "1h"}, "query": "*", "type": "event_stream", "event_size": "l"}, "layout": {"y": + 5, "x": 5, "height": 43, "width": 32}, "id": 4066667513687323}, {"definition": + {"title_size": "16", "title": "Widget Title", "title_align": "left", "time": + {"live_span": "1h"}, "query": "*", "type": "event_timeline"}, "layout": {"y": + 73, "x": 42, "height": 9, "width": 65}, "id": 68713679518613}, {"definition": + {"color": "#d00", "text": "free text content", "type": "free_text", "font_size": + "88", "text_align": "left"}, "layout": {"y": 5, "x": 42, "height": 20, "width": + 30}, "id": 1117617615518455}, {"definition": {"url": "http://google.com", "type": + "iframe"}, "layout": {"y": 8, "x": 111, "height": 46, "width": 39}, "id": 3098118775539428}, + {"definition": {"url": "https://images.pexels.com/photos/67636/rose-blue-flower-rose-blooms-67636.jpeg?auto=compress&cs=tinysrgb&h=350", + "sizing": "fit", "margin": "small", "type": "image"}, "layout": {"y": 7, "x": + 77, "height": 20, "width": 30}, "id": 651713243056399}, {"definition": {"logset": + "", "sort": {"column": "time", "order": "desc"}, "show_message_column": true, + "show_date_column": true, "message_display": "expanded-md", "indexes": ["main"], + "query": "error", "type": "log_stream", "columns": ["core_host", "core_service", + "tag_source"]}, "layout": {"y": 51, "x": 5, "height": 36, "width": 32}, "id": + 5458329230004343}, {"definition": {"sort": "status,asc", "count": 50, "title_size": + "16", "title": "Widget Title", "title_align": "left", "hide_zero_counts": true, + "start": 0, "summary_type": "monitors", "query": "type:metric", "color_preference": + "text", "show_last_triggered": false, "display_format": "countsAndList", "type": + "manage_status"}, "layout": {"y": 55, "x": 112, "height": 40, "width": 30}, + "id": 1112741664700765}, {"definition": {"span_name": "cassandra.query", "title_size": + "13", "service": "alerting-cassandra", "title": "alerting-cassandra #env:datad0g.com", + "size_format": "large", "show_hits": true, "show_latency": false, "title_align": + "center", "show_errors": true, "show_breakdown": true, "env": "datad0g.com", + "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": [], + "template_variable_presets": [{"template_variables": [{"name": "var_1", "value": + "host.dc"}, {"name": "var_2", "value": "my_service"}], "name": "preset_1"}], + "restricted_roles": []}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + method: POST + uri: https://api.datadoghq.eu/api/v1/dashboard + response: + body: + string: '{"id": "bew-mmw-yxt", "title": "Test screenboard", "description": "Created + using the Datadog provider in Terraform", "author_handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", + "author_name": "Frog", "layout_type": "free", "url": "/dashboard/bew-mmw-yxt/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": + "Widget Title", "title_align": "left", "time": {"live_span": "1h"}, "query": + "*", "type": "event_stream", "event_size": "l"}, "layout": {"y": 5, "x": 5, + "height": 43, "width": 32}, "id": 4066667513687323}, {"definition": {"title_size": + "16", "title": "Widget Title", "title_align": "left", "time": {"live_span": + "1h"}, "query": "*", "type": "event_timeline"}, "layout": {"y": 73, "x": 42, + "height": 9, "width": 65}, "id": 68713679518613}, {"definition": {"color": + "#d00", "text": "free text content", "type": "free_text", "font_size": "88", + "text_align": "left"}, "layout": {"y": 5, "x": 42, "height": 20, "width": + 30}, "id": 1117617615518455}, {"definition": {"url": "http://google.com", + "type": "iframe"}, "layout": {"y": 8, "x": 111, "height": 46, "width": 39}, + "id": 3098118775539428}, {"definition": {"url": "https://images.pexels.com/photos/67636/rose-blue-flower-rose-blooms-67636.jpeg?auto=compress&cs=tinysrgb&h=350", + "sizing": "fit", "margin": "small", "type": "image"}, "layout": {"y": 7, "x": + 77, "height": 20, "width": 30}, "id": 651713243056399}, {"definition": {"logset": + "", "sort": {"column": "time", "order": "desc"}, "show_message_column": true, + "show_date_column": true, "message_display": "expanded-md", "indexes": ["main"], + "query": "error", "type": "log_stream", "columns": ["core_host", "core_service", + "tag_source"]}, "layout": {"y": 51, "x": 5, "height": 36, "width": 32}, "id": + 5458329230004343}, {"definition": {"sort": "status,asc", "count": 50, "title_size": + "16", "title": "Widget Title", "title_align": "left", "hide_zero_counts": + true, "start": 0, "summary_type": "monitors", "query": "type:metric", "color_preference": + "text", "show_last_triggered": false, "display_format": "countsAndList", "type": + "manage_status"}, "layout": {"y": 55, "x": 112, "height": 40, "width": 30}, + "id": 1112741664700765}, {"definition": {"span_name": "cassandra.query", "title_size": + "13", "service": "alerting-cassandra", "title": "alerting-cassandra #env:datad0g.com", + "size_format": "large", "show_hits": true, "show_latency": false, "title_align": + "center", "show_errors": true, "show_breakdown": true, "env": "datad0g.com", + "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": "2024-02-02T21:31:45.912499+00:00", "modified_at": "2024-02-02T21:31:45.912499+00:00", + "template_variable_presets": [{"template_variables": [{"name": "var_1", "value": + "host.dc"}, {"name": "var_2", "value": "my_service"}], "name": "preset_1"}], + "restricted_roles": []}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"title": "datadog-sync-cli Test Dashboard", "description": "", "layout_type": + "ordered", "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": [], "reflow_type": + "fixed", "restricted_roles": []}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + method: POST + uri: https://api.datadoghq.eu/api/v1/dashboard + response: + body: + string: '{"id": "tkv-amp-k4q", "title": "datadog-sync-cli Test Dashboard", "description": + "", "author_handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "author_name": + "Frog", "layout_type": "ordered", "url": "/dashboard/tkv-amp-k4q/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": + "2024-02-02T21:31:46.428333+00:00", "modified_at": "2024-02-02T21:31:46.428333+00:00", + "reflow_type": "fixed", "restricted_roles": []}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"name": "TEST_FROM_HTTP", "description": "", "type": "variable", "tags": + ["managed_by:datadog-sync"], "parse_test_public_id": "9i6-8y4-cmu", "parse_test_options": + {"type": "http_header", "field": "content-type", "parser": {"type": "raw"}}, + "value": {"value": "", "secure": false, "options": {}}}' + 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": "9136701a-fd89-4d27-9ce7-a5d2fd27d561", "name": "TEST_FROM_HTTP", + "description": "", "type": "variable", "tags": ["managed_by:datadog-sync"], + "parse_test_public_id": "9i6-8y4-cmu", "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": {}}}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"description": "", "tags": ["managed_by:datadog-sync"], "name": "Custom + location with restricted roles", "metadata": {"restricted_roles": ["3cdfc26c-9e99-11ee-8e21-da7ad0900005"]}}' + 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": "2024-02-02T21:31:49.633658+00:00", + "modifiedAt": "2024-02-02T21:31:49.633658+00:00", "description": "", "tags": + ["managed_by:datadog-sync"], "name": "Custom location with restricted roles", + "metadata": {"restricted_roles": ["3cdfc26c-9e99-11ee-8e21-da7ad0900005"]}, + "id": "pl:custom-location-with-restricted-roles-047c288d6c56f52ad5cd7adeaf1ea08b", + "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: '{"data": {"type": "users", "attributes": {"name": "CI Service Account", + "email": "frog@datadoghq.com", "disabled": false, "allowed_login_methods": []}, + "id": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec"}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + method: PATCH + uri: https://api.datadoghq.eu/api/v2/users/c565c834-9e9a-11ee-aa8a-52121f0cd5ec + response: + body: + string: '{"data": {"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": "2024-02-02T21:31:50.564981+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": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", + "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": + "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", + "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}, {"type": "permissions", "id": + "f2cc9374-9841-11ee-a301-da7ad0900005"}, {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005"}]}}}, + {"type": "permissions", "id": "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": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "attributes": + {"name": "security_monitoring_suppressions_read", "display_name": "Security + Suppressions Read", "description": "Read Rule Suppressions.", "created": "2023-08-17T16:25:26.209216+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", + "attributes": {"name": "security_monitoring_suppressions_write", "display_name": + "Security Suppressions Write", "description": "Write Rule Suppressions.", + "created": "2023-08-17T16:25:26.209216+00:00", "group_name": "Cloud Security + Platform", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "attributes": {"name": "static_analysis_settings_write", + "display_name": "Static Analysis Settings Write", "description": "Edit Static + Analysis settings.", "created": "2023-08-18T16:25:56.688500+00:00", "group_name": + "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": "09a13d52-691c-11ee-b7a4-da7ad0900005", "attributes": {"name": "ndm_netflow_port_mappings_write", + "display_name": "NDM Netflow Port Mappings Write", "description": "Write NDM + Netflow port mappings.", "created": "2023-10-12T16:26:03.661255+00:00", "group_name": + "Network Device Monitoring", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005", "attributes": + {"name": "appsec_vm_read", "display_name": "Vulnerability Management Read", + "description": "View vulnerabilities. This does not restrict access to the + vulnerability data source through the API or inventory SQL.", "created": "2023-10-13T16:25:53.335225+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + true}}, {"type": "permissions", "id": "54f38ef0-6f65-11ee-a094-da7ad0900005", + "attributes": {"name": "debugger_capture_variables", "display_name": "Dynamic + Instrumentation Capture Variables", "description": "Create or modify Dynamic + Instrumentation probes that capture function state: local variables, method + arguments, fields, and return value or thrown exception.", "created": "2023-10-20T16:25:50.268064+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "f2cc9374-9841-11ee-a301-da7ad0900005", "attributes": + {"name": "error_tracking_settings_write", "display_name": "Error Tracking + Settings Write", "description": "Enable/disable Error Tracking, edit inclusion + filters, and edit rate limit.", "created": "2023-12-11T16:25:50.880331+00:00", + "group_name": "Error Tracking", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "attributes": + {"name": "error_tracking_exclusion_filters_write", "display_name": "Error + Tracking Exclusion Filters Write", "description": "Add or change Error Tracking + exclusion filters.", "created": "2023-12-11T16:25:50.880331+00:00", "group_name": + "Error Tracking", "display_type": "write", "restricted": false}}]}' + 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": "2024-02-02T21:31:51.072765+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": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", + "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": + "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", + "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}, {"type": "permissions", "id": + "f2cc9374-9841-11ee-a301-da7ad0900005"}, {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005"}]}}}, + {"type": "permissions", "id": "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": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "attributes": + {"name": "security_monitoring_suppressions_read", "display_name": "Security + Suppressions Read", "description": "Read Rule Suppressions.", "created": "2023-08-17T16:25:26.209216+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", + "attributes": {"name": "security_monitoring_suppressions_write", "display_name": + "Security Suppressions Write", "description": "Write Rule Suppressions.", + "created": "2023-08-17T16:25:26.209216+00:00", "group_name": "Cloud Security + Platform", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "attributes": {"name": "static_analysis_settings_write", + "display_name": "Static Analysis Settings Write", "description": "Edit Static + Analysis settings.", "created": "2023-08-18T16:25:56.688500+00:00", "group_name": + "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": "09a13d52-691c-11ee-b7a4-da7ad0900005", "attributes": {"name": "ndm_netflow_port_mappings_write", + "display_name": "NDM Netflow Port Mappings Write", "description": "Write NDM + Netflow port mappings.", "created": "2023-10-12T16:26:03.661255+00:00", "group_name": + "Network Device Monitoring", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005", "attributes": + {"name": "appsec_vm_read", "display_name": "Vulnerability Management Read", + "description": "View vulnerabilities. This does not restrict access to the + vulnerability data source through the API or inventory SQL.", "created": "2023-10-13T16:25:53.335225+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + true}}, {"type": "permissions", "id": "54f38ef0-6f65-11ee-a094-da7ad0900005", + "attributes": {"name": "debugger_capture_variables", "display_name": "Dynamic + Instrumentation Capture Variables", "description": "Create or modify Dynamic + Instrumentation probes that capture function state: local variables, method + arguments, fields, and return value or thrown exception.", "created": "2023-10-20T16:25:50.268064+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "f2cc9374-9841-11ee-a301-da7ad0900005", "attributes": + {"name": "error_tracking_settings_write", "display_name": "Error Tracking + Settings Write", "description": "Enable/disable Error Tracking, edit inclusion + filters, and edit rate limit.", "created": "2023-12-11T16:25:50.880331+00:00", + "group_name": "Error Tracking", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "attributes": + {"name": "error_tracking_exclusion_filters_write", "display_name": "Error + Tracking Exclusion Filters Write", "description": "Add or change Error Tracking + exclusion filters.", "created": "2023-12-11T16:25:50.880331+00:00", "group_name": + "Error Tracking", "display_type": "write", "restricted": false}}]}' + headers: {} + status: + code: 200 + message: OK +- request: + 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: + - '*/*' + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + method: PATCH + uri: https://api.datadoghq.eu/api/v2/users/2a4ba4d1-a0fc-11ee-ac60-ced34c8fb548 + response: + body: + 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": "2024-02-02T21:31:51.541580+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": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", + "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005"}, {"type": "permissions", "id": + "e8c17678-3de3-11ee-a66f-da7ad0900005"}, {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, + {"type": "permissions", "id": "09a13d52-691c-11ee-b7a4-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}, {"type": "permissions", + "id": "54f38ef0-6f65-11ee-a094-da7ad0900005"}, {"type": "permissions", "id": + "f2cc9374-9841-11ee-a301-da7ad0900005"}, {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005"}]}}}, + {"type": "permissions", "id": "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": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "attributes": + {"name": "security_monitoring_suppressions_read", "display_name": "Security + Suppressions Read", "description": "Read Rule Suppressions.", "created": "2023-08-17T16:25:26.209216+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "ac2cf7d8-3d1a-11ee-8f54-da7ad0900005", + "attributes": {"name": "security_monitoring_suppressions_write", "display_name": + "Security Suppressions Write", "description": "Write Rule Suppressions.", + "created": "2023-08-17T16:25:26.209216+00:00", "group_name": "Cloud Security + Platform", "display_type": "write", "restricted": false}}, {"type": "permissions", + "id": "e8c17678-3de3-11ee-a66f-da7ad0900005", "attributes": {"name": "static_analysis_settings_write", + "display_name": "Static Analysis Settings Write", "description": "Edit Static + Analysis settings.", "created": "2023-08-18T16:25:56.688500+00:00", "group_name": + "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": "09a13d52-691c-11ee-b7a4-da7ad0900005", "attributes": {"name": "ndm_netflow_port_mappings_write", + "display_name": "NDM Netflow Port Mappings Write", "description": "Write NDM + Netflow port mappings.", "created": "2023-10-12T16:26:03.661255+00:00", "group_name": + "Network Device Monitoring", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005", "attributes": + {"name": "appsec_vm_read", "display_name": "Vulnerability Management Read", + "description": "View vulnerabilities. This does not restrict access to the + vulnerability data source through the API or inventory SQL.", "created": "2023-10-13T16:25:53.335225+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + true}}, {"type": "permissions", "id": "54f38ef0-6f65-11ee-a094-da7ad0900005", + "attributes": {"name": "debugger_capture_variables", "display_name": "Dynamic + Instrumentation Capture Variables", "description": "Create or modify Dynamic + Instrumentation probes that capture function state: local variables, method + arguments, fields, and return value or thrown exception.", "created": "2023-10-20T16:25:50.268064+00:00", + "group_name": "APM", "display_type": "write", "restricted": false}}, {"type": + "permissions", "id": "f2cc9374-9841-11ee-a301-da7ad0900005", "attributes": + {"name": "error_tracking_settings_write", "display_name": "Error Tracking + Settings Write", "description": "Enable/disable Error Tracking, edit inclusion + filters, and edit rate limit.", "created": "2023-12-11T16:25:50.880331+00:00", + "group_name": "Error Tracking", "display_type": "write", "restricted": false}}, + {"type": "permissions", "id": "f2cbfc5c-9841-11ee-a301-da7ad0900005", "attributes": + {"name": "error_tracking_exclusion_filters_write", "display_name": "Error + Tracking Exclusion Filters Write", "description": "Add or change Error Tracking + exclusion filters.", "created": "2023-12-11T16:25:50.880331+00:00", "group_name": + "Error Tracking", "display_type": "write", "restricted": false}}]}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"name": "Browser Test (cloned)", "status": "live", "type": "browser", + "tags": ["managed_by:datadog-sync"], "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": "1b6e578d-9cf8-42c9-ab1f-dad727da34f7", + "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"], "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: + 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": "mvd-w2r-avf", "name": "Browser Test (cloned)", "status": + "live", "type": "browser", "tags": ["managed_by:datadog-sync"], "created_at": + "2024-02-02T21:31:53.964528+00:00", "modified_at": "2024-02-02T21:31:53.964528+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": "1b6e578d-9cf8-42c9-ab1f-dad727da34f7", "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"], "created_by": {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", + "email": "frog@datadoghq.com"}, "deleted_at": null, "monitor_id": 15219227, + "org_id": 1000144613, "modified_by": {"name": "Frog", "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 + 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}], "stepCount": {"assertions": 0, "subtests": + 0, "total": 6}}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1686121345", + "status": "paused", "type": "api", "tags": ["multistep", "managed_by:datadog-sync"], + "config": {"assertions": [], "configVariables": [{"id": "05c7c507-88da-4912-98d3-a57c3ddbbcf1", + "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": + ["72e91790-c212-11ee-aa34-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": "qv9-xa8-u9s", "name": "tf-TestAccDatadogSyntheticsTestMultistepApi_Basic-local-1686121345", + "status": "paused", "type": "api", "tags": ["multistep", "managed_by:datadog-sync"], + "created_at": "2024-02-02T21:31:56.489134+00:00", "modified_at": "2024-02-02T21:31:56.489134+00:00", + "config": {"assertions": [], "configVariables": [{"id": "05c7c507-88da-4912-98d3-a57c3ddbbcf1", + "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": + ["72e91790-c212-11ee-aa34-da7ad0900005"], "tick_every": 900}, "locations": + ["aws:eu-central-1"], "subtype": "multi", "created_by": {"name": "Frog", "handle": + "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com"}, "deleted_at": + null, "monitor_id": 15219228, "org_id": 1000144613, "modified_by": {"name": + "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "email": "frog@datadoghq.com"}}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"data": {"id": "2abdf182-a0fc-11ee-a6a8-065d78846176", "type": "users"}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + method: POST + uri: https://api.datadoghq.eu/api/v2/roles/73312a4e-c212-11ee-9457-da7ad0900005/users + response: + body: + 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": "2024-02-02T21:24:03.178825+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": "73312a4e-c212-11ee-9457-da7ad0900005"}]}, + "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}}], + "meta": {"page": {"total_count": 1}}}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"data": {"type": "users", "attributes": {"name": "None+ updated", "email": + "test-user-example@datadoghq.com", "disabled": false, "allowed_login_methods": + []}, "id": "2abdf182-a0fc-11ee-a6a8-065d78846176"}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + method: PATCH + uri: https://api.datadoghq.eu/api/v2/users/2abdf182-a0fc-11ee-a6a8-065d78846176 + response: + body: + 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": "2024-02-02T21:31:57.496760+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": "73312a4e-c212-11ee-9457-da7ad0900005"}]}, + "org": {"data": {"type": "orgs", "id": "3cda39a0-9e99-11ee-94d5-da7ad0900005"}}}}, + "included": [{"type": "roles", "id": "73312a4e-c212-11ee-9457-da7ad0900005", + "attributes": {"name": "Datadog Read Only Role", "created_at": "2024-02-02T21:31:39.285186+00:00", + "modified_at": "2024-02-02T21:31:39.335804+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": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005"}, + {"type": "permissions", "id": "94783714-4e9b-11ee-959b-da7ad0900005"}, {"type": + "permissions", "id": "2de35000-69e5-11ee-996b-da7ad0900005"}]}}}, {"type": + "permissions", "id": "4fbb1652-dd15-11e8-9308-77be61fbb2c7", "attributes": + {"name": "logs_read_index_data", "display_name": "Logs Read Index Data", "description": + "Read log data, possibly scoped to one or more indexes. In order to read log + data, a user must have both this permission and Logs Read Data. This permission + can be granted in a limited capacity per index from the Logs interface or + APIs. If granted via the Roles interface or API the permission has global + scope. Restrictions are limited to the Log Management product.", "created": + "2018-10-31T14:00:23.650159+00:00", "group_name": "Log Management", "display_type": + "read", "restricted": false}}, {"type": "permissions", "id": "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": "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": "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": "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": "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": + "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": "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": "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": "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": "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": + "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "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": "ac2c73f8-3d1a-11ee-8f54-da7ad0900005", "attributes": + {"name": "security_monitoring_suppressions_read", "display_name": "Security + Suppressions Read", "description": "Read Rule Suppressions.", "created": "2023-08-17T16:25:26.209216+00:00", + "group_name": "Cloud Security Platform", "display_type": "read", "restricted": + false}}, {"type": "permissions", "id": "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}}]}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"type": "composite", "name": "Composite monitor", "message": "test", "tags": + ["managed_by:datadog-sync"], "query": "( 15219220 && 15219219 ) || !15219220", + "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": 15219230, "org_id": 1000144613, "type": "composite", "name": + "Composite monitor", "message": "test", "tags": ["managed_by:datadog-sync"], + "query": "( 15219220 && 15219219 ) || !15219220", "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": 1706909518000, "created": "2024-02-02T21:31:58.026262+00:00", + "modified": "2024-02-02T21:31:58.026262+00:00", "deleted": null, "restricted_roles": + null, "priority": null, "overall_state_modified": null, "overall_state": "No + Data", "creator": {"name": "Frog", "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": ["managed_by:datadog-sync"], "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": [15219220]}' + 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": "c7e334250f005fe9996905cc4d8f0151", "name": "Random + monitor slo", "tags": ["managed_by:datadog-sync"], "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": [15219220], "creator": {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", + "email": "frog@datadoghq.com"}, "created_at": 1706909518, "modified_at": 1706909518}], + "error": null}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"name": "Composite monitor - Child 2", "tags": ["managed_by:datadog-sync"], + "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": [15219221, + 15219220]}' + 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": "5a9b0fcf285753e3a277a6e68ee97f21", "name": "Composite + monitor - Child 2", "tags": ["managed_by:datadog-sync"], "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": [15219221, 15219220], + "creator": {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", + "email": "frog@datadoghq.com"}, "created_at": 1706909519, "modified_at": 1706909519}], + "error": null}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"type": "slo alert", "name": "Test slo monitor", "message": "Random message", + "tags": ["managed_by:datadog-sync"], "query": "burn_rate(\"f750e9c9158e52d4a43fa9c047fdb51b\").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": 15219231, "org_id": 1000144613, "type": "slo alert", "name": + "Test slo monitor", "message": "Random message", "tags": ["managed_by:datadog-sync"], + "query": "burn_rate(\"f750e9c9158e52d4a43fa9c047fdb51b\").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": 1706909519000, "created": "2024-02-02T21:31:59.591084+00:00", + "modified": "2024-02-02T21:31:59.591084+00:00", "deleted": null, "restricted_roles": + null, "priority": null, "overall_state_modified": null, "overall_state": "No + Data", "creator": {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", + "email": "frog@datadoghq.com", "id": 1001177794}}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"type": "slo alert", "name": "Check monitor slo", "message": "Message", + "tags": ["managed_by:datadog-sync"], "query": "error_budget(\"c7e334250f005fe9996905cc4d8f0151\").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}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + method: POST + uri: https://api.datadoghq.eu/api/v1/monitor + response: + body: + string: '{"id": 15219232, "org_id": 1000144613, "type": "slo alert", "name": + "Check monitor slo", "message": "Message", "tags": ["managed_by:datadog-sync"], + "query": "error_budget(\"c7e334250f005fe9996905cc4d8f0151\").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": 1706909520000, "created": "2024-02-02T21:32:00.018975+00:00", + "modified": "2024-02-02T21:32:00.018975+00:00", "deleted": null, "restricted_roles": + null, "priority": null, "overall_state_modified": null, "overall_state": "No + Data", "creator": {"name": "Frog", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", + "email": "frog@datadoghq.com", "id": 1001177794}}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"title": "raw-test", "description": "", "layout_type": "ordered", "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": "15219219", "viz_type": "timeseries"}}, + {"id": 2269177794822700, "definition": {"title": "", "title_size": "16", "title_align": + "left", "type": "alert_value", "alert_id": "15219222", "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": + "15219219", "unit": "auto", "text_align": "left", "precision": 2}}, {"id": 1076364961367720, + "definition": {"title": "", "title_size": "16", "title_align": "left", "type": + "slo", "slo_id": "5a9b0fcf285753e3a277a6e68ee97f21", "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": [], "reflow_type": "auto", + "tags": [], "restricted_roles": []}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + method: POST + uri: https://api.datadoghq.eu/api/v1/dashboard + response: + body: + string: '{"id": "xia-umt-pw2", "title": "raw-test", "description": "", "author_handle": + "c565c834-9e9a-11ee-aa8a-52121f0cd5ec", "author_name": "Frog", "layout_type": + "ordered", "url": "/dashboard/xia-umt-pw2/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": "15219219", "viz_type": + "timeseries"}}, {"id": 2269177794822700, "definition": {"title": "", "title_size": + "16", "title_align": "left", "type": "alert_value", "alert_id": "15219222", + "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": "15219219", "unit": "auto", "text_align": "left", + "precision": 2}}, {"id": 1076364961367720, "definition": {"title": "", "title_size": + "16", "title_align": "left", "type": "slo", "slo_id": "5a9b0fcf285753e3a277a6e68ee97f21", + "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": "2024-02-02T21:32:01.353876+00:00", "modified_at": + "2024-02-02T21:32:01.353876+00:00", "reflow_type": "auto", "tags": [], "restricted_roles": + []}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"name": "Test list"}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + method: POST + uri: https://api.datadoghq.eu/api/v1/dashboard/lists/manual + response: + body: + string: '{"author": {"name": "CI Service Account", "handle": "c565c834-9e9a-11ee-aa8a-52121f0cd5ec"}, + "created": "2024-02-02T21:32:01.708277+00:00", "dashboards": null, "dashboard_count": + 0, "id": 35554, "is_favorite": false, "modified": "2024-02-02T21:32:01.708284+00:00", + "name": "Test list", "type": "manual_dashboard_list"}' + headers: {} + status: + code: 200 + message: OK +- request: + body: '{"dashboards": [{"id": "xia-umt-pw2", "type": "custom_timeboard"}, {"id": + "bew-mmw-yxt", "type": "custom_screenboard"}]}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Content-Type: + - application/json + method: PUT + uri: https://api.datadoghq.eu/api/v2/dashboard/lists/manual/35554/dashboards + response: + body: + string: '{"dashboards": [{"type": "custom_timeboard", "id": "xia-umt-pw2"}, + {"type": "custom_screenboard", "id": "bew-mmw-yxt"}]}' + headers: {} + status: + code: 200 + message: OK +version: 1 diff --git a/tests/integration/test_cli.py b/tests/integration/test_cli.py index e72a545c..a91d4095 100644 --- a/tests/integration/test_cli.py +++ b/tests/integration/test_cli.py @@ -150,3 +150,16 @@ def test_cleanup(self, runner, caplog): assert "diff:" not in caplog.text assert 0 == ret.exit_code + + def test_migrate(self, runner, caplog): + caplog.set_level(logging.DEBUG) + # Migrate + ret = runner.invoke(cli, ["migrate", "--validate=false", f"--resources={self.resources}"]) + assert 0 == ret.exit_code + + caplog.clear() + # Check diff + ret = runner.invoke(cli, ["diffs", "--validate=false", "--skip-failed-resource-connections=False"]) + # assert diffs are produced + assert caplog.text + assert 0 == ret.exit_code