diff --git a/datadog/resource_datadog_synthetics_test_.go b/datadog/resource_datadog_synthetics_test_.go index ae3dbf004..a6f63a147 100644 --- a/datadog/resource_datadog_synthetics_test_.go +++ b/datadog/resource_datadog_synthetics_test_.go @@ -1097,6 +1097,11 @@ func syntheticsBrowserVariableElem() *schema.Resource { Required: true, ValidateDiagFunc: validators.ValidateEnumValue(datadogV1.NewSyntheticsBrowserVariableTypeFromValue), }, + "secure": { + Description: "Determines whether or not the browser test variable is obfuscated. Can only be used with a browser variable of type `text`", + Type: schema.TypeBool, + Optional: true, + }, }, } } @@ -2114,6 +2119,9 @@ func buildSyntheticsBrowserTestStruct(d *schema.ResourceData) *datadogV1.Synthet if v, ok := variableMap["pattern"]; ok { newVariable.SetPattern(v.(string)) } + if v, ok := variableMap["secure"]; ok && variableType == datadogV1.SYNTHETICSBROWSERVARIABLETYPE_TEXT { + newVariable.SetSecure(v.(bool)) + } config.SetVariables(append(config.GetVariables(), *newVariable)) } @@ -2728,14 +2736,21 @@ func updateSyntheticsBrowserTestLocalState(d *schema.ResourceData, syntheticsTes if v, ok := variable.GetNameOk(); ok { localVariable["name"] = *v } - if v, ok := variable.GetExampleOk(); ok { - localVariable["example"] = *v - } if v, ok := variable.GetIdOk(); ok { localVariable["id"] = *v } + if v, ok := variable.GetSecureOk(); ok { + localVariable["secure"] = *v + } + if v, ok := variable.GetExampleOk(); ok { + localVariable["example"] = *v + } else if localVariable["secure"].(bool) { + localVariable["example"] = d.Get(fmt.Sprintf("browser_variable.%d.example", i)) + } if v, ok := variable.GetPatternOk(); ok { localVariable["pattern"] = *v + } else if localVariable["secure"].(bool) { + localVariable["pattern"] = d.Get(fmt.Sprintf("browser_variable.%d.pattern", i)) } localBrowserVariables[i] = localVariable } diff --git a/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTestBrowserVariables_Basic.freeze b/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTestBrowserVariables_Basic.freeze index d31ba27d2..ae4efb1f2 100644 --- a/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTestBrowserVariables_Basic.freeze +++ b/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTestBrowserVariables_Basic.freeze @@ -1 +1 @@ -2023-04-24T21:34:21.70341+02:00 \ No newline at end of file +2023-05-19T16:11:32.230174-04:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTestBrowserVariables_Basic.yaml b/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTestBrowserVariables_Basic.yaml index e364f2a1f..417b4b5a8 100644 --- a/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTestBrowserVariables_Basic.yaml +++ b/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTestBrowserVariables_Basic.yaml @@ -3,7 +3,7 @@ version: 1 interactions: - request: body: | - {"config":{"assertions":[],"configVariables":[],"request":{"basicAuth":{"password":"web-password","type":"web","username":"web-username"},"method":"GET","timeout":60,"url":"https://www.datadoghq.com"},"variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"}]},"locations":["aws:eu-central-1"],"message":"Notify @datadog.user","name":"tf-TestAccDatadogSyntheticsBrowserTestBrowserVariables_Basic-local-1682364861","options":{"device_ids":["laptop_large"],"min_location_failed":1,"retry":{"count":2,"interval":300},"tick_every":900},"status":"paused","steps":[{"allowFailure":false,"isCritical":false,"name":"first step","noScreenshot":false,"params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl"}],"tags":["foo:bar"],"type":"browser"} + {"config":{"assertions":[],"configVariables":[],"request":{"basicAuth":{"password":"web-password","type":"web","username":"web-username"},"method":"GET","timeout":60,"url":"https://www.datadoghq.com"},"variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"}]},"locations":["aws:eu-central-1"],"message":"Notify @datadog.user","name":"tf-TestAccDatadogSyntheticsBrowserTestBrowserVariables_Basic-local-1684527092","options":{"device_ids":["laptop_large"],"min_location_failed":1,"retry":{"count":2,"interval":300},"tick_every":900},"status":"paused","steps":[{"allowFailure":false,"isCritical":false,"name":"first step","noScreenshot":false,"params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl"}],"tags":["foo:bar"],"type":"browser"} form: {} headers: Accept: @@ -14,7 +14,7 @@ interactions: method: POST response: body: | - {"public_id":"9u9-be2-5an","name":"tf-TestAccDatadogSyntheticsBrowserTestBrowserVariables_Basic-local-1682364861","status":"paused","type":"browser","tags":["foo:bar"],"created_at":"2023-04-24T19:34:23.334567+00:00","modified_at":"2023-04-24T19:34:23.334567+00:00","config":{"assertions":[],"configVariables":[],"request":{"basicAuth":{"password":"web-password","type":"web","username":"web-username"},"method":"GET","timeout":60,"url":"https://www.datadoghq.com"},"variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"}]},"message":"Notify @datadog.user","options":{"device_ids":["laptop_large"],"min_location_failed":1,"retry":{"count":2,"interval":300},"tick_every":900},"locations":["aws:eu-central-1"],"deleted_at":null,"monitor_id":117181267,"org_id":569509,"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":false,"isCritical":false,"noScreenshot":false}]} + {"public_id":"w5j-xws-e3n","name":"tf-TestAccDatadogSyntheticsBrowserTestBrowserVariables_Basic-local-1684527092","status":"paused","type":"browser","tags":["foo:bar"],"created_at":"2023-05-19T20:11:34.310985+00:00","modified_at":"2023-05-19T20:11:34.310985+00:00","config":{"assertions":[],"configVariables":[],"request":{"basicAuth":{"password":"web-password","type":"web","username":"web-username"},"method":"GET","timeout":60,"url":"https://www.datadoghq.com"},"variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"}]},"message":"Notify @datadog.user","options":{"device_ids":["laptop_large"],"min_location_failed":1,"retry":{"count":2,"interval":300},"tick_every":900},"locations":["aws:eu-central-1"],"deleted_at":null,"monitor_id":119582181,"org_id":321813,"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":false,"isCritical":false,"noScreenshot":false}]} headers: Content-Type: - application/json @@ -27,11 +27,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/9u9-be2-5an + url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/w5j-xws-e3n method: GET response: body: | - {"public_id":"9u9-be2-5an","name":"tf-TestAccDatadogSyntheticsBrowserTestBrowserVariables_Basic-local-1682364861","status":"paused","type":"browser","tags":["foo:bar"],"created_at":"2023-04-24T19:34:23.334567+00:00","modified_at":"2023-04-24T19:34:23.334567+00:00","config":{"assertions":[],"configVariables":[],"request":{"basicAuth":{"password":"web-password","type":"web","username":"web-username"},"method":"GET","timeout":60,"url":"https://www.datadoghq.com"},"variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"}]},"message":"Notify @datadog.user","options":{"device_ids":["laptop_large"],"min_location_failed":1,"retry":{"count":2,"interval":300},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117181267,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":false,"isCritical":false,"noScreenshot":false}]} + {"public_id":"w5j-xws-e3n","name":"tf-TestAccDatadogSyntheticsBrowserTestBrowserVariables_Basic-local-1684527092","status":"paused","type":"browser","tags":["foo:bar"],"created_at":"2023-05-19T20:11:34.310985+00:00","modified_at":"2023-05-19T20:11:34.310985+00:00","config":{"assertions":[],"configVariables":[],"request":{"basicAuth":{"password":"web-password","type":"web","username":"web-username"},"method":"GET","timeout":60,"url":"https://www.datadoghq.com"},"variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"}]},"message":"Notify @datadog.user","options":{"device_ids":["laptop_large"],"min_location_failed":1,"retry":{"count":2,"interval":300},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119582181,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":false,"isCritical":false,"noScreenshot":false}]} headers: Content-Type: - application/json @@ -44,11 +44,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/9u9-be2-5an + url: https://api.datadoghq.com/api/v1/synthetics/tests/w5j-xws-e3n method: GET response: body: | - {"public_id":"9u9-be2-5an","name":"tf-TestAccDatadogSyntheticsBrowserTestBrowserVariables_Basic-local-1682364861","status":"paused","type":"browser","tags":["foo:bar"],"created_at":"2023-04-24T19:34:23.334567+00:00","modified_at":"2023-04-24T19:34:23.334567+00:00","config":{"assertions":[],"configVariables":[],"request":{"basicAuth":{"password":"web-password","type":"web","username":"web-username"},"method":"GET","timeout":60,"url":"https://www.datadoghq.com"},"variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"}]},"message":"Notify @datadog.user","options":{"device_ids":["laptop_large"],"min_location_failed":1,"retry":{"count":2,"interval":300},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117181267,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} + {"public_id":"w5j-xws-e3n","name":"tf-TestAccDatadogSyntheticsBrowserTestBrowserVariables_Basic-local-1684527092","status":"paused","type":"browser","tags":["foo:bar"],"created_at":"2023-05-19T20:11:34.310985+00:00","modified_at":"2023-05-19T20:11:34.310985+00:00","config":{"assertions":[],"configVariables":[],"request":{"basicAuth":{"password":"web-password","type":"web","username":"web-username"},"method":"GET","timeout":60,"url":"https://www.datadoghq.com"},"variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"}]},"message":"Notify @datadog.user","options":{"device_ids":["laptop_large"],"min_location_failed":1,"retry":{"count":2,"interval":300},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119582181,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} headers: Content-Type: - application/json @@ -61,11 +61,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/9u9-be2-5an + url: https://api.datadoghq.com/api/v1/synthetics/tests/w5j-xws-e3n method: GET response: body: | - {"public_id":"9u9-be2-5an","name":"tf-TestAccDatadogSyntheticsBrowserTestBrowserVariables_Basic-local-1682364861","status":"paused","type":"browser","tags":["foo:bar"],"created_at":"2023-04-24T19:34:23.334567+00:00","modified_at":"2023-04-24T19:34:23.334567+00:00","config":{"assertions":[],"configVariables":[],"request":{"basicAuth":{"password":"web-password","type":"web","username":"web-username"},"method":"GET","timeout":60,"url":"https://www.datadoghq.com"},"variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"}]},"message":"Notify @datadog.user","options":{"device_ids":["laptop_large"],"min_location_failed":1,"retry":{"count":2,"interval":300},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117181267,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} + {"public_id":"w5j-xws-e3n","name":"tf-TestAccDatadogSyntheticsBrowserTestBrowserVariables_Basic-local-1684527092","status":"paused","type":"browser","tags":["foo:bar"],"created_at":"2023-05-19T20:11:34.310985+00:00","modified_at":"2023-05-19T20:11:34.310985+00:00","config":{"assertions":[],"configVariables":[],"request":{"basicAuth":{"password":"web-password","type":"web","username":"web-username"},"method":"GET","timeout":60,"url":"https://www.datadoghq.com"},"variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"}]},"message":"Notify @datadog.user","options":{"device_ids":["laptop_large"],"min_location_failed":1,"retry":{"count":2,"interval":300},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119582181,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} headers: Content-Type: - application/json @@ -78,11 +78,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/9u9-be2-5an + url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/w5j-xws-e3n method: GET response: body: | - {"public_id":"9u9-be2-5an","name":"tf-TestAccDatadogSyntheticsBrowserTestBrowserVariables_Basic-local-1682364861","status":"paused","type":"browser","tags":["foo:bar"],"created_at":"2023-04-24T19:34:23.334567+00:00","modified_at":"2023-04-24T19:34:23.334567+00:00","config":{"assertions":[],"configVariables":[],"request":{"basicAuth":{"password":"web-password","type":"web","username":"web-username"},"method":"GET","timeout":60,"url":"https://www.datadoghq.com"},"variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"}]},"message":"Notify @datadog.user","options":{"device_ids":["laptop_large"],"min_location_failed":1,"retry":{"count":2,"interval":300},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117181267,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":false,"isCritical":false,"noScreenshot":false}]} + {"public_id":"w5j-xws-e3n","name":"tf-TestAccDatadogSyntheticsBrowserTestBrowserVariables_Basic-local-1684527092","status":"paused","type":"browser","tags":["foo:bar"],"created_at":"2023-05-19T20:11:34.310985+00:00","modified_at":"2023-05-19T20:11:34.310985+00:00","config":{"assertions":[],"configVariables":[],"request":{"basicAuth":{"password":"web-password","type":"web","username":"web-username"},"method":"GET","timeout":60,"url":"https://www.datadoghq.com"},"variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"}]},"message":"Notify @datadog.user","options":{"device_ids":["laptop_large"],"min_location_failed":1,"retry":{"count":2,"interval":300},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119582181,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":false,"isCritical":false,"noScreenshot":false}]} headers: Content-Type: - application/json @@ -91,7 +91,7 @@ interactions: duration: "" - request: body: | - {"public_ids":["9u9-be2-5an"]} + {"public_ids":["w5j-xws-e3n"]} form: {} headers: Accept: @@ -102,7 +102,7 @@ interactions: method: POST response: body: | - {"deleted_tests":[{"public_id":"9u9-be2-5an","deleted_at":"2023-04-24T19:34:25.806055+00:00"}]} + {"deleted_tests":[{"public_id":"w5j-xws-e3n","deleted_at":"2023-05-19T20:11:35.756325+00:00"}]} headers: Content-Type: - application/json @@ -115,7 +115,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/9u9-be2-5an + url: https://api.datadoghq.com/api/v1/synthetics/tests/w5j-xws-e3n method: GET response: body: '{"errors":["Synthetics test not found"]}' diff --git a/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Basic.freeze b/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Basic.freeze index ae3d8198c..b4fed2601 100644 --- a/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Basic.freeze +++ b/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Basic.freeze @@ -1 +1 @@ -2023-04-24T21:31:04.638481+02:00 \ No newline at end of file +2023-05-17T17:05:32.491138-04:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Basic.yaml b/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Basic.yaml index 6a618f8d0..623cc3f9a 100644 --- a/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Basic.yaml +++ b/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Basic.yaml @@ -3,7 +3,7 @@ version: 1 interactions: - request: body: | - {"data":{"attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1682364664"},"relationships":{},"type":"roles"}} + {"data":{"attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1684357532"},"relationships":{},"type":"roles"}} form: {} headers: Accept: @@ -14,7 +14,7 @@ interactions: method: POST response: body: | - {"data":{"type":"roles","id":"8e9cd8e4-e2d6-11ed-a032-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1682364664","created_at":"2023-04-24T19:31:06.186847+00:00","modified_at":"2023-04-24T19:31:06.219734+00:00"},"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"}]}}}} + {"data":{"type":"roles","id":"9052446c-f4f6-11ed-8663-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1684357532","created_at":"2023-05-17T21:05:33.879400+00:00","modified_at":"2023-05-17T21:05:33.924113+00:00"},"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"}]}}}} headers: Content-Type: - application/json @@ -27,11 +27,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/8e9cd8e4-e2d6-11ed-a032-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/9052446c-f4f6-11ed-8663-da7ad0900002 method: GET response: body: | - {"data":{"type":"roles","id":"8e9cd8e4-e2d6-11ed-a032-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1682364664","created_at":"2023-04-24T19:31:06.186847+00:00","modified_at":"2023-04-24T19:31:06.219734+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"}]}}}} + {"data":{"type":"roles","id":"9052446c-f4f6-11ed-8663-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1684357532","created_at":"2023-05-17T21:05:33.879400+00:00","modified_at":"2023-05-17T21:05:33.924113+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"}]}}}} headers: Content-Type: - application/json @@ -48,7 +48,7 @@ interactions: method: GET response: body: | - {"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":"View and edit components in your Datadog organization that do not have explicitly defined permissions. This includes configuring events, facets (except logs), and saved views.","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, mute, 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":"Monitors Manage Downtimes","description":"Set downtimes to suppress alerts from any monitor in an organization. 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, rename, and revoke 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.","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 Configuration","description":"Edit Dynamic Instrumentation configuration.","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 Configuration","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 Configurations Read","description":"View pipeline configurations.","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 Configurations Write","description":"Create, edit, and delete pipeline configurations.","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":"Workflows","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":"Workflows","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":"Workflows","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":"Workflows","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":"Workflows","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":"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":"Workflows","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 Activation Read","description":"View whether Application Security Management is enabled or disabled on services.","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 Activation Write","description":"Enable or disable Application Security Management on services.","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 Write","description":"Create, edit and delete CI Visibility tests and pipelines.","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}}]} + {"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":"View and edit components in your Datadog organization that do not have explicitly defined permissions. This includes configuring Events, Cloud Cost Management, Reference Tables, metadata for metrics, and facets (except Logs).","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, mute, 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":"Monitors Manage Downtimes","description":"Set downtimes to suppress alerts from any monitor in an organization. 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, rename, and revoke 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 Configuration","description":"Edit Dynamic Instrumentation configuration.","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 Configuration","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 Configurations Read","description":"View pipeline configurations.","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 Configurations Write","description":"Create, edit, and delete pipeline configurations.","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":"Workflows","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":"Workflows","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":"Workflows","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":"Workflows","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":"Workflows","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":"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":"Workflows","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 Activation Read","description":"View whether Application Security Management is enabled or disabled on services.","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 Activation Write","description":"Enable or disable Application Security Management on services.","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 Write","description":"Create, edit and delete CI Visibility tests and pipelines.","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 Write","description":"Edit Error Tracking settings.","created":"2023-03-27T16:55:44.263627+00:00","group_name":"Error Tracking","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":"General","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}}]} headers: Content-Type: - application/json @@ -57,7 +57,7 @@ interactions: duration: "" - request: body: | - {"config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"locations":["aws:eu-central-1"],"message":"Notify @datadog.user","name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1682364664","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1682364664-monitor","monitor_options":{"renotify_interval":120},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["8e9cd8e4-e2d6-11ed-a032-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"status":"paused","steps":[{"allowFailure":true,"isCritical":true,"name":"first step","noScreenshot":true,"params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl"}],"tags":["foo:bar","baz"],"type":"browser"} + {"config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"example":"secret","name":"MY_SECRET","pattern":"secret","secure":true,"type":"text"}]},"locations":["aws:eu-central-1"],"message":"Notify @datadog.user","name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1684357532","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1684357532-monitor","monitor_options":{"renotify_interval":120},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9052446c-f4f6-11ed-8663-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"status":"paused","steps":[{"allowFailure":true,"isCritical":true,"name":"first step","noScreenshot":true,"params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl"}],"tags":["foo:bar","baz"],"type":"browser"} form: {} headers: Accept: @@ -68,7 +68,7 @@ interactions: method: POST response: body: | - {"public_id":"s5h-uhn-ip8","name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1682364664","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:31:06.931306+00:00","modified_at":"2023-04-24T19:31:06.931306+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1682364664-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["8e9cd8e4-e2d6-11ed-a032-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"deleted_at":null,"monitor_id":117180976,"org_id":569509,"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} + {"public_id":"b4k-nww-rw2","name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.579751+00:00","modified_at":"2023-05-17T21:05:34.579751+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9052446c-f4f6-11ed-8663-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"deleted_at":null,"monitor_id":119349558,"org_id":321813,"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} headers: Content-Type: - application/json @@ -81,11 +81,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/s5h-uhn-ip8 + url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/b4k-nww-rw2 method: GET response: body: | - {"public_id":"s5h-uhn-ip8","name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1682364664","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:31:06.931306+00:00","modified_at":"2023-04-24T19:31:06.931306+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1682364664-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["8e9cd8e4-e2d6-11ed-a032-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117180976,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} + {"public_id":"b4k-nww-rw2","name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.579751+00:00","modified_at":"2023-05-17T21:05:34.579751+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9052446c-f4f6-11ed-8663-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119349558,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} headers: Content-Type: - application/json @@ -98,11 +98,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/s5h-uhn-ip8 + url: https://api.datadoghq.com/api/v1/synthetics/tests/b4k-nww-rw2 method: GET response: body: | - {"public_id":"s5h-uhn-ip8","name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1682364664","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:31:06.931306+00:00","modified_at":"2023-04-24T19:31:06.931306+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1682364664-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["8e9cd8e4-e2d6-11ed-a032-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117180976,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} + {"public_id":"b4k-nww-rw2","name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.579751+00:00","modified_at":"2023-05-17T21:05:34.579751+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9052446c-f4f6-11ed-8663-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119349558,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} headers: Content-Type: - application/json @@ -115,11 +115,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/8e9cd8e4-e2d6-11ed-a032-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/9052446c-f4f6-11ed-8663-da7ad0900002 method: GET response: body: | - {"data":{"type":"roles","id":"8e9cd8e4-e2d6-11ed-a032-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1682364664","created_at":"2023-04-24T19:31:06.186847+00:00","modified_at":"2023-04-24T19:31:06.219734+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"}]}}}} + {"data":{"type":"roles","id":"9052446c-f4f6-11ed-8663-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1684357532","created_at":"2023-05-17T21:05:33.879400+00:00","modified_at":"2023-05-17T21:05:33.924113+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"}]}}}} headers: Content-Type: - application/json @@ -132,11 +132,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/s5h-uhn-ip8 + url: https://api.datadoghq.com/api/v1/synthetics/tests/b4k-nww-rw2 method: GET response: body: | - {"public_id":"s5h-uhn-ip8","name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1682364664","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:31:06.931306+00:00","modified_at":"2023-04-24T19:31:06.931306+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1682364664-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["8e9cd8e4-e2d6-11ed-a032-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117180976,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} + {"public_id":"b4k-nww-rw2","name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.579751+00:00","modified_at":"2023-05-17T21:05:34.579751+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9052446c-f4f6-11ed-8663-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119349558,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} headers: Content-Type: - application/json @@ -149,11 +149,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/s5h-uhn-ip8 + url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/b4k-nww-rw2 method: GET response: body: | - {"public_id":"s5h-uhn-ip8","name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1682364664","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:31:06.931306+00:00","modified_at":"2023-04-24T19:31:06.931306+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1682364664-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["8e9cd8e4-e2d6-11ed-a032-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117180976,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} + {"public_id":"b4k-nww-rw2","name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.579751+00:00","modified_at":"2023-05-17T21:05:34.579751+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Basic-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9052446c-f4f6-11ed-8663-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119349558,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} headers: Content-Type: - application/json @@ -162,7 +162,7 @@ interactions: duration: "" - request: body: | - {"public_ids":["s5h-uhn-ip8"]} + {"public_ids":["b4k-nww-rw2"]} form: {} headers: Accept: @@ -173,7 +173,7 @@ interactions: method: POST response: body: | - {"deleted_tests":[{"public_id":"s5h-uhn-ip8","deleted_at":"2023-04-24T19:31:08.952289+00:00"}]} + {"deleted_tests":[{"public_id":"b4k-nww-rw2","deleted_at":"2023-05-17T21:05:36.352455+00:00"}]} headers: Content-Type: - application/json @@ -186,7 +186,7 @@ interactions: headers: Accept: - '*/*' - url: https://api.datadoghq.com/api/v2/roles/8e9cd8e4-e2d6-11ed-a032-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/9052446c-f4f6-11ed-8663-da7ad0900002 method: DELETE response: body: "" @@ -202,7 +202,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/8e9cd8e4-e2d6-11ed-a032-da7ad0900002 + url: https://api.datadoghq.com/api/v1/synthetics/tests/9052446c-f4f6-11ed-8663-da7ad0900002 method: GET response: body: '{"errors":["Synthetics test not found"]}' @@ -218,7 +218,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/s5h-uhn-ip8 + url: https://api.datadoghq.com/api/v1/synthetics/tests/b4k-nww-rw2 method: GET response: body: '{"errors":["Synthetics test not found"]}' diff --git a/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Updated.freeze b/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Updated.freeze index 40007bc66..67b7b0e49 100644 --- a/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Updated.freeze +++ b/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Updated.freeze @@ -1 +1 @@ -2023-04-24T21:32:13.851181+02:00 \ No newline at end of file +2023-05-17T17:05:32.491626-04:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Updated.yaml b/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Updated.yaml index fb6eac5ee..ed8178774 100644 --- a/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Updated.yaml +++ b/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Updated.yaml @@ -3,7 +3,7 @@ version: 1 interactions: - request: body: | - {"data":{"attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733"},"relationships":{},"type":"roles"}} + {"data":{"attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532"},"relationships":{},"type":"roles"}} form: {} headers: Accept: @@ -14,7 +14,7 @@ interactions: method: POST response: body: | - {"data":{"type":"roles","id":"b7e9068c-e2d6-11ed-93bb-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733","created_at":"2023-04-24T19:32:15.472766+00:00","modified_at":"2023-04-24T19:32:15.505884+00:00"},"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"}]}}}} + {"data":{"type":"roles","id":"9057911a-f4f6-11ed-9ccf-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532","created_at":"2023-05-17T21:05:33.913497+00:00","modified_at":"2023-05-17T21:05:33.946216+00:00"},"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"}]}}}} headers: Content-Type: - application/json @@ -27,11 +27,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/b7e9068c-e2d6-11ed-93bb-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/9057911a-f4f6-11ed-9ccf-da7ad0900002 method: GET response: body: | - {"data":{"type":"roles","id":"b7e9068c-e2d6-11ed-93bb-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733","created_at":"2023-04-24T19:32:15.472766+00:00","modified_at":"2023-04-24T19:32:15.505884+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"}]}}}} + {"data":{"type":"roles","id":"9057911a-f4f6-11ed-9ccf-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532","created_at":"2023-05-17T21:05:33.913497+00:00","modified_at":"2023-05-17T21:05:33.946216+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"}]}}}} headers: Content-Type: - application/json @@ -48,7 +48,7 @@ interactions: method: GET response: body: | - {"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":"View and edit components in your Datadog organization that do not have explicitly defined permissions. This includes configuring events, facets (except logs), and saved views.","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, mute, 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":"Monitors Manage Downtimes","description":"Set downtimes to suppress alerts from any monitor in an organization. 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, rename, and revoke 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.","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 Configuration","description":"Edit Dynamic Instrumentation configuration.","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 Configuration","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 Configurations Read","description":"View pipeline configurations.","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 Configurations Write","description":"Create, edit, and delete pipeline configurations.","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":"Workflows","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":"Workflows","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":"Workflows","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":"Workflows","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":"Workflows","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":"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":"Workflows","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 Activation Read","description":"View whether Application Security Management is enabled or disabled on services.","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 Activation Write","description":"Enable or disable Application Security Management on services.","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 Write","description":"Create, edit and delete CI Visibility tests and pipelines.","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}}]} + {"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":"View and edit components in your Datadog organization that do not have explicitly defined permissions. This includes configuring Events, Cloud Cost Management, Reference Tables, metadata for metrics, and facets (except Logs).","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, mute, 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":"Monitors Manage Downtimes","description":"Set downtimes to suppress alerts from any monitor in an organization. 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, rename, and revoke 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 Configuration","description":"Edit Dynamic Instrumentation configuration.","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 Configuration","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 Configurations Read","description":"View pipeline configurations.","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 Configurations Write","description":"Create, edit, and delete pipeline configurations.","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":"Workflows","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":"Workflows","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":"Workflows","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":"Workflows","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":"Workflows","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":"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":"Workflows","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 Activation Read","description":"View whether Application Security Management is enabled or disabled on services.","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 Activation Write","description":"Enable or disable Application Security Management on services.","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 Write","description":"Create, edit and delete CI Visibility tests and pipelines.","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 Write","description":"Edit Error Tracking settings.","created":"2023-03-27T16:55:44.263627+00:00","group_name":"Error Tracking","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":"General","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}}]} headers: Content-Type: - application/json @@ -57,7 +57,7 @@ interactions: duration: "" - request: body: | - {"config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"locations":["aws:eu-central-1"],"message":"Notify @datadog.user","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733-monitor","monitor_options":{"renotify_interval":120},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["b7e9068c-e2d6-11ed-93bb-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"status":"paused","steps":[{"allowFailure":true,"isCritical":true,"name":"first step","noScreenshot":true,"params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl"}],"tags":["foo:bar","baz"],"type":"browser"} + {"config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"example":"secret","name":"MY_SECRET","pattern":"secret","secure":true,"type":"text"}]},"locations":["aws:eu-central-1"],"message":"Notify @datadog.user","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532-monitor","monitor_options":{"renotify_interval":120},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9057911a-f4f6-11ed-9ccf-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"status":"paused","steps":[{"allowFailure":true,"isCritical":true,"name":"first step","noScreenshot":true,"params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl"}],"tags":["foo:bar","baz"],"type":"browser"} form: {} headers: Accept: @@ -68,7 +68,7 @@ interactions: method: POST response: body: | - {"public_id":"zzi-urq-te4","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:32:16.302167+00:00","modified_at":"2023-04-24T19:32:16.302167+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["b7e9068c-e2d6-11ed-93bb-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"deleted_at":null,"monitor_id":117181095,"org_id":569509,"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} + {"public_id":"2wr-a28-bcq","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.620504+00:00","modified_at":"2023-05-17T21:05:34.620504+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9057911a-f4f6-11ed-9ccf-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"deleted_at":null,"monitor_id":119349560,"org_id":321813,"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} headers: Content-Type: - application/json @@ -81,11 +81,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/zzi-urq-te4 + url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/2wr-a28-bcq method: GET response: body: | - {"public_id":"zzi-urq-te4","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:32:16.302167+00:00","modified_at":"2023-04-24T19:32:16.302167+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["b7e9068c-e2d6-11ed-93bb-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117181095,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} + {"public_id":"2wr-a28-bcq","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.620504+00:00","modified_at":"2023-05-17T21:05:34.620504+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9057911a-f4f6-11ed-9ccf-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119349560,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} headers: Content-Type: - application/json @@ -98,11 +98,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/zzi-urq-te4 + url: https://api.datadoghq.com/api/v1/synthetics/tests/2wr-a28-bcq method: GET response: body: | - {"public_id":"zzi-urq-te4","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:32:16.302167+00:00","modified_at":"2023-04-24T19:32:16.302167+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["b7e9068c-e2d6-11ed-93bb-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117181095,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} + {"public_id":"2wr-a28-bcq","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.620504+00:00","modified_at":"2023-05-17T21:05:34.620504+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9057911a-f4f6-11ed-9ccf-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119349560,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} headers: Content-Type: - application/json @@ -115,11 +115,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/b7e9068c-e2d6-11ed-93bb-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/9057911a-f4f6-11ed-9ccf-da7ad0900002 method: GET response: body: | - {"data":{"type":"roles","id":"b7e9068c-e2d6-11ed-93bb-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733","created_at":"2023-04-24T19:32:15.472766+00:00","modified_at":"2023-04-24T19:32:15.505884+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"}]}}}} + {"data":{"type":"roles","id":"9057911a-f4f6-11ed-9ccf-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532","created_at":"2023-05-17T21:05:33.913497+00:00","modified_at":"2023-05-17T21:05:33.946216+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"}]}}}} headers: Content-Type: - application/json @@ -132,11 +132,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/zzi-urq-te4 + url: https://api.datadoghq.com/api/v1/synthetics/tests/2wr-a28-bcq method: GET response: body: | - {"public_id":"zzi-urq-te4","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:32:16.302167+00:00","modified_at":"2023-04-24T19:32:16.302167+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["b7e9068c-e2d6-11ed-93bb-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117181095,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} + {"public_id":"2wr-a28-bcq","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.620504+00:00","modified_at":"2023-05-17T21:05:34.620504+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9057911a-f4f6-11ed-9ccf-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119349560,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} headers: Content-Type: - application/json @@ -149,11 +149,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/zzi-urq-te4 + url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/2wr-a28-bcq method: GET response: body: | - {"public_id":"zzi-urq-te4","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:32:16.302167+00:00","modified_at":"2023-04-24T19:32:16.302167+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["b7e9068c-e2d6-11ed-93bb-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117181095,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} + {"public_id":"2wr-a28-bcq","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.620504+00:00","modified_at":"2023-05-17T21:05:34.620504+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9057911a-f4f6-11ed-9ccf-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119349560,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} headers: Content-Type: - application/json @@ -166,11 +166,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/zzi-urq-te4 + url: https://api.datadoghq.com/api/v2/roles/9057911a-f4f6-11ed-9ccf-da7ad0900002 method: GET response: body: | - {"public_id":"zzi-urq-te4","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:32:16.302167+00:00","modified_at":"2023-04-24T19:32:16.302167+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["b7e9068c-e2d6-11ed-93bb-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117181095,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} + {"data":{"type":"roles","id":"9057911a-f4f6-11ed-9ccf-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532","created_at":"2023-05-17T21:05:33.913497+00:00","modified_at":"2023-05-17T21:05:33.946216+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"}]}}}} headers: Content-Type: - application/json @@ -183,11 +183,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/b7e9068c-e2d6-11ed-93bb-da7ad0900002 + url: https://api.datadoghq.com/api/v1/synthetics/tests/2wr-a28-bcq method: GET response: body: | - {"data":{"type":"roles","id":"b7e9068c-e2d6-11ed-93bb-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733","created_at":"2023-04-24T19:32:15.472766+00:00","modified_at":"2023-04-24T19:32:15.505884+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"}]}}}} + {"public_id":"2wr-a28-bcq","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.620504+00:00","modified_at":"2023-05-17T21:05:34.620504+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9057911a-f4f6-11ed-9ccf-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119349560,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} headers: Content-Type: - application/json @@ -200,11 +200,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/zzi-urq-te4 + url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/2wr-a28-bcq method: GET response: body: | - {"public_id":"zzi-urq-te4","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:32:16.302167+00:00","modified_at":"2023-04-24T19:32:16.302167+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["b7e9068c-e2d6-11ed-93bb-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117181095,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} + {"public_id":"2wr-a28-bcq","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.620504+00:00","modified_at":"2023-05-17T21:05:34.620504+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9057911a-f4f6-11ed-9ccf-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119349560,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} headers: Content-Type: - application/json @@ -217,7 +217,7 @@ interactions: headers: Accept: - '*/*' - url: https://api.datadoghq.com/api/v2/roles/b7e9068c-e2d6-11ed-93bb-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/9057911a-f4f6-11ed-9ccf-da7ad0900002 method: DELETE response: body: "" @@ -229,18 +229,18 @@ interactions: duration: "" - request: body: | - {"config":{"assertions":[],"configVariables":[],"request":{"body":"this is an updated body","headers":{"Accept":"application/xml","X-Datadog-Trace-ID":"987654321"},"method":"PUT","timeout":60,"url":"https://docs.datadoghq.com"},"variables":[{"example":"5970","name":"MY_PATTERN_VAR","pattern":"{{numeric(4)}}","type":"text"}]},"locations":["aws:eu-central-1"],"message":"Notify @pagerduty","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733-updated","options":{"ci":{"executionRule":"skipped"},"device_ids":["laptop_large","tablet"],"min_failure_duration":10,"min_location_failed":1,"monitor_options":{"renotify_interval":120},"retry":{"count":3,"interval":500},"rumSettings":{"isEnabled":false},"tick_every":1800},"status":"live","steps":[{"allowFailure":false,"isCritical":false,"name":"first step updated","noScreenshot":false,"params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl"},{"allowFailure":false,"isCritical":false,"name":"press key step","noScreenshot":false,"params":{"modifiers":[],"value":"1"},"timeout":0,"type":"pressKey"}],"tags":["foo:bar","buz"],"type":"browser"} + {"config":{"assertions":[],"configVariables":[],"request":{"body":"this is an updated body","headers":{"Accept":"application/xml","X-Datadog-Trace-ID":"987654321"},"method":"PUT","timeout":60,"url":"https://docs.datadoghq.com"},"variables":[{"example":"5970","name":"MY_PATTERN_VAR","pattern":"{{numeric(4)}}","secure":false,"type":"text"}]},"locations":["aws:eu-central-1"],"message":"Notify @pagerduty","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532-updated","options":{"ci":{"executionRule":"skipped"},"device_ids":["laptop_large","tablet"],"min_failure_duration":10,"min_location_failed":1,"monitor_options":{"renotify_interval":120},"retry":{"count":3,"interval":500},"rumSettings":{"isEnabled":false},"tick_every":1800},"status":"live","steps":[{"allowFailure":false,"isCritical":false,"name":"first step updated","noScreenshot":false,"params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl"},{"allowFailure":false,"isCritical":false,"name":"press key step","noScreenshot":false,"params":{"modifiers":[],"value":"1"},"timeout":0,"type":"pressKey"}],"tags":["foo:bar","buz"],"type":"browser"} form: {} headers: Accept: - application/json Content-Type: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/zzi-urq-te4 + url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/2wr-a28-bcq method: PUT response: body: | - {"public_id":"zzi-urq-te4","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733-updated","status":"live","type":"browser","tags":["foo:bar","buz"],"created_at":"2023-04-24T19:32:16.302167+00:00","modified_at":"2023-04-24T19:32:19.465573+00:00","config":{"assertions":[],"configVariables":[],"request":{"body":"this is an updated body","headers":{"Accept":"application/xml","X-Datadog-Trace-ID":"987654321"},"method":"PUT","timeout":60,"url":"https://docs.datadoghq.com"},"variables":[{"example":"5970","name":"MY_PATTERN_VAR","pattern":"{{numeric(4)}}","type":"text"}]},"message":"Notify @pagerduty","options":{"ci":{"executionRule":"skipped"},"device_ids":["laptop_large","tablet"],"min_failure_duration":10,"min_location_failed":1,"monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"retry":{"count":3,"interval":500},"rumSettings":{"isEnabled":false},"tick_every":1800},"locations":["aws:eu-central-1"],"deleted_at":null,"monitor_id":117181095,"org_id":569509,"steps":[{"name":"first step updated","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":false,"isCritical":false,"noScreenshot":false},{"name":"press key step","params":{"modifiers":[],"value":"1"},"timeout":0,"type":"pressKey","allowFailure":false,"isCritical":false,"noScreenshot":false}]} + {"public_id":"2wr-a28-bcq","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532-updated","status":"live","type":"browser","tags":["foo:bar","buz"],"created_at":"2023-05-17T21:05:34.620504+00:00","modified_at":"2023-05-17T21:05:37.552826+00:00","config":{"assertions":[],"configVariables":[],"request":{"body":"this is an updated body","headers":{"Accept":"application/xml","X-Datadog-Trace-ID":"987654321"},"method":"PUT","timeout":60,"url":"https://docs.datadoghq.com"},"variables":[{"example":"5970","name":"MY_PATTERN_VAR","pattern":"{{numeric(4)}}","secure":false,"type":"text"}]},"message":"Notify @pagerduty","options":{"ci":{"executionRule":"skipped"},"device_ids":["laptop_large","tablet"],"min_failure_duration":10,"min_location_failed":1,"monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"retry":{"count":3,"interval":500},"rumSettings":{"isEnabled":false},"tick_every":1800},"locations":["aws:eu-central-1"],"deleted_at":null,"monitor_id":119349560,"org_id":321813,"steps":[{"name":"first step updated","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":false,"isCritical":false,"noScreenshot":false},{"name":"press key step","params":{"modifiers":[],"value":"1"},"timeout":0,"type":"pressKey","allowFailure":false,"isCritical":false,"noScreenshot":false}]} headers: Content-Type: - application/json @@ -253,11 +253,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/zzi-urq-te4 + url: https://api.datadoghq.com/api/v1/synthetics/tests/2wr-a28-bcq method: GET response: body: | - {"public_id":"zzi-urq-te4","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733-updated","status":"live","type":"browser","tags":["foo:bar","buz"],"created_at":"2023-04-24T19:32:16.302167+00:00","modified_at":"2023-04-24T19:32:19.465573+00:00","config":{"assertions":[],"configVariables":[],"request":{"body":"this is an updated body","headers":{"Accept":"application/xml","X-Datadog-Trace-ID":"987654321"},"method":"PUT","timeout":60,"url":"https://docs.datadoghq.com"},"variables":[{"example":"5970","name":"MY_PATTERN_VAR","pattern":"{{numeric(4)}}","type":"text"}]},"message":"Notify @pagerduty","options":{"ci":{"executionRule":"skipped"},"device_ids":["laptop_large","tablet"],"min_failure_duration":10,"min_location_failed":1,"monitor_options":{"renotify_interval":120},"retry":{"count":3,"interval":500},"rumSettings":{"isEnabled":false},"tick_every":1800},"locations":["aws:eu-central-1"],"monitor_id":117181095,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} + {"public_id":"2wr-a28-bcq","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532-updated","status":"live","type":"browser","tags":["foo:bar","buz"],"created_at":"2023-05-17T21:05:34.620504+00:00","modified_at":"2023-05-17T21:05:37.552826+00:00","config":{"assertions":[],"configVariables":[],"request":{"body":"this is an updated body","headers":{"Accept":"application/xml","X-Datadog-Trace-ID":"987654321"},"method":"PUT","timeout":60,"url":"https://docs.datadoghq.com"},"variables":[{"example":"5970","name":"MY_PATTERN_VAR","pattern":"{{numeric(4)}}","secure":false,"type":"text"}]},"message":"Notify @pagerduty","options":{"ci":{"executionRule":"skipped"},"device_ids":["laptop_large","tablet"],"min_failure_duration":10,"min_location_failed":1,"monitor_options":{"renotify_interval":120},"retry":{"count":3,"interval":500},"rumSettings":{"isEnabled":false},"tick_every":1800},"locations":["aws:eu-central-1"],"monitor_id":119349560,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} headers: Content-Type: - application/json @@ -270,11 +270,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/zzi-urq-te4 + url: https://api.datadoghq.com/api/v1/synthetics/tests/2wr-a28-bcq method: GET response: body: | - {"public_id":"zzi-urq-te4","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733-updated","status":"live","type":"browser","tags":["foo:bar","buz"],"created_at":"2023-04-24T19:32:16.302167+00:00","modified_at":"2023-04-24T19:32:19.465573+00:00","config":{"assertions":[],"configVariables":[],"request":{"body":"this is an updated body","headers":{"Accept":"application/xml","X-Datadog-Trace-ID":"987654321"},"method":"PUT","timeout":60,"url":"https://docs.datadoghq.com"},"variables":[{"example":"5970","name":"MY_PATTERN_VAR","pattern":"{{numeric(4)}}","type":"text"}]},"message":"Notify @pagerduty","options":{"ci":{"executionRule":"skipped"},"device_ids":["laptop_large","tablet"],"min_failure_duration":10,"min_location_failed":1,"monitor_options":{"renotify_interval":120},"retry":{"count":3,"interval":500},"rumSettings":{"isEnabled":false},"tick_every":1800},"locations":["aws:eu-central-1"],"monitor_id":117181095,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} + {"public_id":"2wr-a28-bcq","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532-updated","status":"live","type":"browser","tags":["foo:bar","buz"],"created_at":"2023-05-17T21:05:34.620504+00:00","modified_at":"2023-05-17T21:05:37.552826+00:00","config":{"assertions":[],"configVariables":[],"request":{"body":"this is an updated body","headers":{"Accept":"application/xml","X-Datadog-Trace-ID":"987654321"},"method":"PUT","timeout":60,"url":"https://docs.datadoghq.com"},"variables":[{"example":"5970","name":"MY_PATTERN_VAR","pattern":"{{numeric(4)}}","secure":false,"type":"text"}]},"message":"Notify @pagerduty","options":{"ci":{"executionRule":"skipped"},"device_ids":["laptop_large","tablet"],"min_failure_duration":10,"min_location_failed":1,"monitor_options":{"renotify_interval":120},"retry":{"count":3,"interval":500},"rumSettings":{"isEnabled":false},"tick_every":1800},"locations":["aws:eu-central-1"],"monitor_id":119349560,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} headers: Content-Type: - application/json @@ -287,11 +287,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/zzi-urq-te4 + url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/2wr-a28-bcq method: GET response: body: | - {"public_id":"zzi-urq-te4","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1682364733-updated","status":"live","type":"browser","tags":["foo:bar","buz"],"created_at":"2023-04-24T19:32:16.302167+00:00","modified_at":"2023-04-24T19:32:19.465573+00:00","config":{"assertions":[],"configVariables":[],"request":{"body":"this is an updated body","headers":{"Accept":"application/xml","X-Datadog-Trace-ID":"987654321"},"method":"PUT","timeout":60,"url":"https://docs.datadoghq.com"},"variables":[{"example":"5970","name":"MY_PATTERN_VAR","pattern":"{{numeric(4)}}","type":"text"}]},"message":"Notify @pagerduty","options":{"ci":{"executionRule":"skipped"},"device_ids":["laptop_large","tablet"],"min_failure_duration":10,"min_location_failed":1,"monitor_options":{"renotify_interval":120},"retry":{"count":3,"interval":500},"rumSettings":{"isEnabled":false},"tick_every":1800},"locations":["aws:eu-central-1"],"monitor_id":117181095,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step updated","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":false,"isCritical":false,"noScreenshot":false},{"name":"press key step","params":{"modifiers":[],"value":"1"},"timeout":0,"type":"pressKey","allowFailure":false,"isCritical":false,"noScreenshot":false}]} + {"public_id":"2wr-a28-bcq","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated-local-1684357532-updated","status":"live","type":"browser","tags":["foo:bar","buz"],"created_at":"2023-05-17T21:05:34.620504+00:00","modified_at":"2023-05-17T21:05:37.552826+00:00","config":{"assertions":[],"configVariables":[],"request":{"body":"this is an updated body","headers":{"Accept":"application/xml","X-Datadog-Trace-ID":"987654321"},"method":"PUT","timeout":60,"url":"https://docs.datadoghq.com"},"variables":[{"example":"5970","name":"MY_PATTERN_VAR","pattern":"{{numeric(4)}}","secure":false,"type":"text"}]},"message":"Notify @pagerduty","options":{"ci":{"executionRule":"skipped"},"device_ids":["laptop_large","tablet"],"min_failure_duration":10,"min_location_failed":1,"monitor_options":{"renotify_interval":120},"retry":{"count":3,"interval":500},"rumSettings":{"isEnabled":false},"tick_every":1800},"locations":["aws:eu-central-1"],"monitor_id":119349560,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step updated","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":false,"isCritical":false,"noScreenshot":false},{"name":"press key step","params":{"modifiers":[],"value":"1"},"timeout":0,"type":"pressKey","allowFailure":false,"isCritical":false,"noScreenshot":false}]} headers: Content-Type: - application/json @@ -300,7 +300,7 @@ interactions: duration: "" - request: body: | - {"public_ids":["zzi-urq-te4"]} + {"public_ids":["2wr-a28-bcq"]} form: {} headers: Accept: @@ -311,7 +311,7 @@ interactions: method: POST response: body: | - {"deleted_tests":[{"public_id":"zzi-urq-te4","deleted_at":"2023-04-24T19:32:21.048025+00:00"}]} + {"deleted_tests":[{"public_id":"2wr-a28-bcq","deleted_at":"2023-05-17T21:05:39.056525+00:00"}]} headers: Content-Type: - application/json @@ -324,7 +324,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/zzi-urq-te4 + url: https://api.datadoghq.com/api/v1/synthetics/tests/2wr-a28-bcq method: GET response: body: '{"errors":["Synthetics test not found"]}' diff --git a/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings.freeze b/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings.freeze index 9317d0222..eb83c1672 100644 --- a/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings.freeze +++ b/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings.freeze @@ -1 +1 @@ -2023-04-24T21:33:27.684011+02:00 \ No newline at end of file +2023-05-17T17:05:32.492389-04:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings.yaml b/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings.yaml index ed9ecd240..c32cd4261 100644 --- a/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings.yaml +++ b/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings.yaml @@ -3,7 +3,7 @@ version: 1 interactions: - request: body: | - {"data":{"attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807"},"relationships":{},"type":"roles"}} + {"data":{"attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532"},"relationships":{},"type":"roles"}} form: {} headers: Accept: @@ -14,7 +14,7 @@ interactions: method: POST response: body: | - {"data":{"type":"roles","id":"e3d67a36-e2d6-11ed-b86a-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807","created_at":"2023-04-24T19:33:29.171429+00:00","modified_at":"2023-04-24T19:33:29.209247+00:00"},"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"}]}}}} + {"data":{"type":"roles","id":"9050def6-f4f6-11ed-a0fc-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532","created_at":"2023-05-17T21:05:33.869690+00:00","modified_at":"2023-05-17T21:05:33.907249+00:00"},"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"}]}}}} headers: Content-Type: - application/json @@ -27,11 +27,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/e3d67a36-e2d6-11ed-b86a-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/9050def6-f4f6-11ed-a0fc-da7ad0900002 method: GET response: body: | - {"data":{"type":"roles","id":"e3d67a36-e2d6-11ed-b86a-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807","created_at":"2023-04-24T19:33:29.171429+00:00","modified_at":"2023-04-24T19:33:29.209247+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"}]}}}} + {"data":{"type":"roles","id":"9050def6-f4f6-11ed-a0fc-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532","created_at":"2023-05-17T21:05:33.869690+00:00","modified_at":"2023-05-17T21:05:33.907249+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"}]}}}} headers: Content-Type: - application/json @@ -48,7 +48,7 @@ interactions: method: GET response: body: | - {"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":"View and edit components in your Datadog organization that do not have explicitly defined permissions. This includes configuring events, facets (except logs), and saved views.","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, mute, 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":"Monitors Manage Downtimes","description":"Set downtimes to suppress alerts from any monitor in an organization. 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, rename, and revoke 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.","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 Configuration","description":"Edit Dynamic Instrumentation configuration.","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 Configuration","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 Configurations Read","description":"View pipeline configurations.","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 Configurations Write","description":"Create, edit, and delete pipeline configurations.","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":"Workflows","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":"Workflows","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":"Workflows","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":"Workflows","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":"Workflows","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":"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":"Workflows","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 Activation Read","description":"View whether Application Security Management is enabled or disabled on services.","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 Activation Write","description":"Enable or disable Application Security Management on services.","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 Write","description":"Create, edit and delete CI Visibility tests and pipelines.","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}}]} + {"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":"View and edit components in your Datadog organization that do not have explicitly defined permissions. This includes configuring Events, Cloud Cost Management, Reference Tables, metadata for metrics, and facets (except Logs).","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, mute, 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":"Monitors Manage Downtimes","description":"Set downtimes to suppress alerts from any monitor in an organization. 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, rename, and revoke 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 Configuration","description":"Edit Dynamic Instrumentation configuration.","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 Configuration","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 Configurations Read","description":"View pipeline configurations.","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 Configurations Write","description":"Create, edit, and delete pipeline configurations.","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":"Workflows","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":"Workflows","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":"Workflows","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":"Workflows","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":"Workflows","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":"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":"Workflows","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 Activation Read","description":"View whether Application Security Management is enabled or disabled on services.","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 Activation Write","description":"Enable or disable Application Security Management on services.","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 Write","description":"Create, edit and delete CI Visibility tests and pipelines.","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 Write","description":"Edit Error Tracking settings.","created":"2023-03-27T16:55:44.263627+00:00","group_name":"Error Tracking","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":"General","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}}]} headers: Content-Type: - application/json @@ -57,7 +57,7 @@ interactions: duration: "" - request: body: | - {"config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"locations":["aws:eu-central-1"],"message":"Notify @datadog.user","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807-monitor","monitor_options":{"renotify_interval":120},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["e3d67a36-e2d6-11ed-b86a-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"status":"paused","steps":[{"allowFailure":true,"isCritical":true,"name":"first step","noScreenshot":true,"params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl"}],"tags":["foo:bar","baz"],"type":"browser"} + {"config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"example":"secret","name":"MY_SECRET","pattern":"secret","secure":true,"type":"text"}]},"locations":["aws:eu-central-1"],"message":"Notify @datadog.user","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532-monitor","monitor_options":{"renotify_interval":120},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9050def6-f4f6-11ed-a0fc-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"status":"paused","steps":[{"allowFailure":true,"isCritical":true,"name":"first step","noScreenshot":true,"params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl"}],"tags":["foo:bar","baz"],"type":"browser"} form: {} headers: Accept: @@ -68,7 +68,7 @@ interactions: method: POST response: body: | - {"public_id":"y9n-av7-b7y","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:33:30.227437+00:00","modified_at":"2023-04-24T19:33:30.227437+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["e3d67a36-e2d6-11ed-b86a-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"deleted_at":null,"monitor_id":117181254,"org_id":569509,"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} + {"public_id":"cg7-8aj-hc3","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.556585+00:00","modified_at":"2023-05-17T21:05:34.556585+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9050def6-f4f6-11ed-a0fc-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"deleted_at":null,"monitor_id":119349559,"org_id":321813,"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} headers: Content-Type: - application/json @@ -81,11 +81,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/y9n-av7-b7y + url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/cg7-8aj-hc3 method: GET response: body: | - {"public_id":"y9n-av7-b7y","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:33:30.227437+00:00","modified_at":"2023-04-24T19:33:30.227437+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["e3d67a36-e2d6-11ed-b86a-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117181254,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} + {"public_id":"cg7-8aj-hc3","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.556585+00:00","modified_at":"2023-05-17T21:05:34.556585+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9050def6-f4f6-11ed-a0fc-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119349559,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} headers: Content-Type: - application/json @@ -98,11 +98,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/y9n-av7-b7y + url: https://api.datadoghq.com/api/v1/synthetics/tests/cg7-8aj-hc3 method: GET response: body: | - {"public_id":"y9n-av7-b7y","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:33:30.227437+00:00","modified_at":"2023-04-24T19:33:30.227437+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["e3d67a36-e2d6-11ed-b86a-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117181254,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} + {"public_id":"cg7-8aj-hc3","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.556585+00:00","modified_at":"2023-05-17T21:05:34.556585+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9050def6-f4f6-11ed-a0fc-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119349559,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} headers: Content-Type: - application/json @@ -115,11 +115,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/e3d67a36-e2d6-11ed-b86a-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/9050def6-f4f6-11ed-a0fc-da7ad0900002 method: GET response: body: | - {"data":{"type":"roles","id":"e3d67a36-e2d6-11ed-b86a-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807","created_at":"2023-04-24T19:33:29.171429+00:00","modified_at":"2023-04-24T19:33:29.209247+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"}]}}}} + {"data":{"type":"roles","id":"9050def6-f4f6-11ed-a0fc-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532","created_at":"2023-05-17T21:05:33.869690+00:00","modified_at":"2023-05-17T21:05:33.907249+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"}]}}}} headers: Content-Type: - application/json @@ -132,11 +132,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/y9n-av7-b7y + url: https://api.datadoghq.com/api/v1/synthetics/tests/cg7-8aj-hc3 method: GET response: body: | - {"public_id":"y9n-av7-b7y","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:33:30.227437+00:00","modified_at":"2023-04-24T19:33:30.227437+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["e3d67a36-e2d6-11ed-b86a-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117181254,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} + {"public_id":"cg7-8aj-hc3","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.556585+00:00","modified_at":"2023-05-17T21:05:34.556585+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9050def6-f4f6-11ed-a0fc-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119349559,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} headers: Content-Type: - application/json @@ -149,11 +149,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/y9n-av7-b7y + url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/cg7-8aj-hc3 method: GET response: body: | - {"public_id":"y9n-av7-b7y","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:33:30.227437+00:00","modified_at":"2023-04-24T19:33:30.227437+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["e3d67a36-e2d6-11ed-b86a-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117181254,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} + {"public_id":"cg7-8aj-hc3","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.556585+00:00","modified_at":"2023-05-17T21:05:34.556585+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9050def6-f4f6-11ed-a0fc-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119349559,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} headers: Content-Type: - application/json @@ -166,11 +166,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/e3d67a36-e2d6-11ed-b86a-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/9050def6-f4f6-11ed-a0fc-da7ad0900002 method: GET response: body: | - {"data":{"type":"roles","id":"e3d67a36-e2d6-11ed-b86a-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807","created_at":"2023-04-24T19:33:29.171429+00:00","modified_at":"2023-04-24T19:33:29.209247+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"}]}}}} + {"data":{"type":"roles","id":"9050def6-f4f6-11ed-a0fc-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532","created_at":"2023-05-17T21:05:33.869690+00:00","modified_at":"2023-05-17T21:05:33.907249+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"}]}}}} headers: Content-Type: - application/json @@ -183,11 +183,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/y9n-av7-b7y + url: https://api.datadoghq.com/api/v1/synthetics/tests/cg7-8aj-hc3 method: GET response: body: | - {"public_id":"y9n-av7-b7y","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:33:30.227437+00:00","modified_at":"2023-04-24T19:33:30.227437+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["e3d67a36-e2d6-11ed-b86a-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117181254,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} + {"public_id":"cg7-8aj-hc3","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.556585+00:00","modified_at":"2023-05-17T21:05:34.556585+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9050def6-f4f6-11ed-a0fc-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119349559,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} headers: Content-Type: - application/json @@ -200,11 +200,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/y9n-av7-b7y + url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/cg7-8aj-hc3 method: GET response: body: | - {"public_id":"y9n-av7-b7y","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:33:30.227437+00:00","modified_at":"2023-04-24T19:33:30.227437+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["e3d67a36-e2d6-11ed-b86a-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117181254,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} + {"public_id":"cg7-8aj-hc3","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.556585+00:00","modified_at":"2023-05-17T21:05:34.556585+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9050def6-f4f6-11ed-a0fc-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119349559,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} headers: Content-Type: - application/json @@ -217,7 +217,7 @@ interactions: headers: Accept: - '*/*' - url: https://api.datadoghq.com/api/v2/roles/e3d67a36-e2d6-11ed-b86a-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/9050def6-f4f6-11ed-a0fc-da7ad0900002 method: DELETE response: body: "" @@ -229,18 +229,18 @@ interactions: duration: "" - request: body: | - {"config":{"assertions":[],"configVariables":[],"request":{"body":"this is an updated body","headers":{"Accept":"application/xml","X-Datadog-Trace-ID":"987654321"},"method":"PUT","timeout":60,"url":"https://docs.datadoghq.com"},"variables":[{"example":"5970","name":"MY_PATTERN_VAR","pattern":"{{numeric(4)}}","type":"text"}]},"locations":["aws:eu-central-1"],"message":"Notify @pagerduty","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807-updated-rumsettings","options":{"ci":{"executionRule":"skipped"},"device_ids":["laptop_large","tablet"],"min_failure_duration":10,"min_location_failed":1,"monitor_options":{"renotify_interval":120},"retry":{"count":3,"interval":500},"rumSettings":{"isEnabled":false},"tick_every":1800},"status":"live","steps":[{"allowFailure":false,"isCritical":false,"name":"first step updated","noScreenshot":false,"params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl"},{"allowFailure":false,"isCritical":false,"name":"press key step","noScreenshot":false,"params":{"modifiers":[],"value":"1"},"timeout":0,"type":"pressKey"}],"tags":["foo:bar","buz"],"type":"browser"} + {"config":{"assertions":[],"configVariables":[],"request":{"body":"this is an updated body","headers":{"Accept":"application/xml","X-Datadog-Trace-ID":"987654321"},"method":"PUT","timeout":60,"url":"https://docs.datadoghq.com"},"variables":[{"example":"5970","name":"MY_PATTERN_VAR","pattern":"{{numeric(4)}}","secure":false,"type":"text"}]},"locations":["aws:eu-central-1"],"message":"Notify @pagerduty","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532-updated-rumsettings","options":{"ci":{"executionRule":"skipped"},"device_ids":["laptop_large","tablet"],"min_failure_duration":10,"min_location_failed":1,"monitor_options":{"renotify_interval":120},"retry":{"count":3,"interval":500},"rumSettings":{"isEnabled":false},"tick_every":1800},"status":"live","steps":[{"allowFailure":false,"isCritical":false,"name":"first step updated","noScreenshot":false,"params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl"},{"allowFailure":false,"isCritical":false,"name":"press key step","noScreenshot":false,"params":{"modifiers":[],"value":"1"},"timeout":0,"type":"pressKey"}],"tags":["foo:bar","buz"],"type":"browser"} form: {} headers: Accept: - application/json Content-Type: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/y9n-av7-b7y + url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/cg7-8aj-hc3 method: PUT response: body: | - {"public_id":"y9n-av7-b7y","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807-updated-rumsettings","status":"live","type":"browser","tags":["foo:bar","buz"],"created_at":"2023-04-24T19:33:30.227437+00:00","modified_at":"2023-04-24T19:33:33.351926+00:00","config":{"assertions":[],"configVariables":[],"request":{"body":"this is an updated body","headers":{"Accept":"application/xml","X-Datadog-Trace-ID":"987654321"},"method":"PUT","timeout":60,"url":"https://docs.datadoghq.com"},"variables":[{"example":"5970","name":"MY_PATTERN_VAR","pattern":"{{numeric(4)}}","type":"text"}]},"message":"Notify @pagerduty","options":{"ci":{"executionRule":"skipped"},"device_ids":["laptop_large","tablet"],"min_failure_duration":10,"min_location_failed":1,"monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"retry":{"count":3,"interval":500},"rumSettings":{"isEnabled":false},"tick_every":1800},"locations":["aws:eu-central-1"],"deleted_at":null,"monitor_id":117181254,"org_id":569509,"steps":[{"name":"first step updated","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":false,"isCritical":false,"noScreenshot":false},{"name":"press key step","params":{"modifiers":[],"value":"1"},"timeout":0,"type":"pressKey","allowFailure":false,"isCritical":false,"noScreenshot":false}]} + {"public_id":"cg7-8aj-hc3","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532-updated-rumsettings","status":"live","type":"browser","tags":["foo:bar","buz"],"created_at":"2023-05-17T21:05:34.556585+00:00","modified_at":"2023-05-17T21:05:37.147788+00:00","config":{"assertions":[],"configVariables":[],"request":{"body":"this is an updated body","headers":{"Accept":"application/xml","X-Datadog-Trace-ID":"987654321"},"method":"PUT","timeout":60,"url":"https://docs.datadoghq.com"},"variables":[{"example":"5970","name":"MY_PATTERN_VAR","pattern":"{{numeric(4)}}","secure":false,"type":"text"}]},"message":"Notify @pagerduty","options":{"ci":{"executionRule":"skipped"},"device_ids":["laptop_large","tablet"],"min_failure_duration":10,"min_location_failed":1,"monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"retry":{"count":3,"interval":500},"rumSettings":{"isEnabled":false},"tick_every":1800},"locations":["aws:eu-central-1"],"deleted_at":null,"monitor_id":119349559,"org_id":321813,"steps":[{"name":"first step updated","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":false,"isCritical":false,"noScreenshot":false},{"name":"press key step","params":{"modifiers":[],"value":"1"},"timeout":0,"type":"pressKey","allowFailure":false,"isCritical":false,"noScreenshot":false}]} headers: Content-Type: - application/json @@ -253,11 +253,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/y9n-av7-b7y + url: https://api.datadoghq.com/api/v1/synthetics/tests/cg7-8aj-hc3 method: GET response: body: | - {"public_id":"y9n-av7-b7y","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807-updated-rumsettings","status":"live","type":"browser","tags":["foo:bar","buz"],"created_at":"2023-04-24T19:33:30.227437+00:00","modified_at":"2023-04-24T19:33:33.351926+00:00","config":{"assertions":[],"configVariables":[],"request":{"body":"this is an updated body","headers":{"Accept":"application/xml","X-Datadog-Trace-ID":"987654321"},"method":"PUT","timeout":60,"url":"https://docs.datadoghq.com"},"variables":[{"example":"5970","name":"MY_PATTERN_VAR","pattern":"{{numeric(4)}}","type":"text"}]},"message":"Notify @pagerduty","options":{"ci":{"executionRule":"skipped"},"device_ids":["laptop_large","tablet"],"min_failure_duration":10,"min_location_failed":1,"monitor_options":{"renotify_interval":120},"retry":{"count":3,"interval":500},"rumSettings":{"isEnabled":false},"tick_every":1800},"locations":["aws:eu-central-1"],"monitor_id":117181254,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} + {"public_id":"cg7-8aj-hc3","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532-updated-rumsettings","status":"live","type":"browser","tags":["foo:bar","buz"],"created_at":"2023-05-17T21:05:34.556585+00:00","modified_at":"2023-05-17T21:05:37.147788+00:00","config":{"assertions":[],"configVariables":[],"request":{"body":"this is an updated body","headers":{"Accept":"application/xml","X-Datadog-Trace-ID":"987654321"},"method":"PUT","timeout":60,"url":"https://docs.datadoghq.com"},"variables":[{"example":"5970","name":"MY_PATTERN_VAR","pattern":"{{numeric(4)}}","secure":false,"type":"text"}]},"message":"Notify @pagerduty","options":{"ci":{"executionRule":"skipped"},"device_ids":["laptop_large","tablet"],"min_failure_duration":10,"min_location_failed":1,"monitor_options":{"renotify_interval":120},"retry":{"count":3,"interval":500},"rumSettings":{"isEnabled":false},"tick_every":1800},"locations":["aws:eu-central-1"],"monitor_id":119349559,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} headers: Content-Type: - application/json @@ -270,11 +270,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/y9n-av7-b7y + url: https://api.datadoghq.com/api/v1/synthetics/tests/cg7-8aj-hc3 method: GET response: body: | - {"public_id":"y9n-av7-b7y","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807-updated-rumsettings","status":"live","type":"browser","tags":["foo:bar","buz"],"created_at":"2023-04-24T19:33:30.227437+00:00","modified_at":"2023-04-24T19:33:33.351926+00:00","config":{"assertions":[],"configVariables":[],"request":{"body":"this is an updated body","headers":{"Accept":"application/xml","X-Datadog-Trace-ID":"987654321"},"method":"PUT","timeout":60,"url":"https://docs.datadoghq.com"},"variables":[{"example":"5970","name":"MY_PATTERN_VAR","pattern":"{{numeric(4)}}","type":"text"}]},"message":"Notify @pagerduty","options":{"ci":{"executionRule":"skipped"},"device_ids":["laptop_large","tablet"],"min_failure_duration":10,"min_location_failed":1,"monitor_options":{"renotify_interval":120},"retry":{"count":3,"interval":500},"rumSettings":{"isEnabled":false},"tick_every":1800},"locations":["aws:eu-central-1"],"monitor_id":117181254,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} + {"public_id":"cg7-8aj-hc3","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532-updated-rumsettings","status":"live","type":"browser","tags":["foo:bar","buz"],"created_at":"2023-05-17T21:05:34.556585+00:00","modified_at":"2023-05-17T21:05:37.147788+00:00","config":{"assertions":[],"configVariables":[],"request":{"body":"this is an updated body","headers":{"Accept":"application/xml","X-Datadog-Trace-ID":"987654321"},"method":"PUT","timeout":60,"url":"https://docs.datadoghq.com"},"variables":[{"example":"5970","name":"MY_PATTERN_VAR","pattern":"{{numeric(4)}}","secure":false,"type":"text"}]},"message":"Notify @pagerduty","options":{"ci":{"executionRule":"skipped"},"device_ids":["laptop_large","tablet"],"min_failure_duration":10,"min_location_failed":1,"monitor_options":{"renotify_interval":120},"retry":{"count":3,"interval":500},"rumSettings":{"isEnabled":false},"tick_every":1800},"locations":["aws:eu-central-1"],"monitor_id":119349559,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} headers: Content-Type: - application/json @@ -287,11 +287,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/y9n-av7-b7y + url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/cg7-8aj-hc3 method: GET response: body: | - {"public_id":"y9n-av7-b7y","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1682364807-updated-rumsettings","status":"live","type":"browser","tags":["foo:bar","buz"],"created_at":"2023-04-24T19:33:30.227437+00:00","modified_at":"2023-04-24T19:33:33.351926+00:00","config":{"assertions":[],"configVariables":[],"request":{"body":"this is an updated body","headers":{"Accept":"application/xml","X-Datadog-Trace-ID":"987654321"},"method":"PUT","timeout":60,"url":"https://docs.datadoghq.com"},"variables":[{"example":"5970","name":"MY_PATTERN_VAR","pattern":"{{numeric(4)}}","type":"text"}]},"message":"Notify @pagerduty","options":{"ci":{"executionRule":"skipped"},"device_ids":["laptop_large","tablet"],"min_failure_duration":10,"min_location_failed":1,"monitor_options":{"renotify_interval":120},"retry":{"count":3,"interval":500},"rumSettings":{"isEnabled":false},"tick_every":1800},"locations":["aws:eu-central-1"],"monitor_id":117181254,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step updated","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":false,"isCritical":false,"noScreenshot":false},{"name":"press key step","params":{"modifiers":[],"value":"1"},"timeout":0,"type":"pressKey","allowFailure":false,"isCritical":false,"noScreenshot":false}]} + {"public_id":"cg7-8aj-hc3","name":"tf-TestAccDatadogSyntheticsBrowserTest_Updated_RumSettings-local-1684357532-updated-rumsettings","status":"live","type":"browser","tags":["foo:bar","buz"],"created_at":"2023-05-17T21:05:34.556585+00:00","modified_at":"2023-05-17T21:05:37.147788+00:00","config":{"assertions":[],"configVariables":[],"request":{"body":"this is an updated body","headers":{"Accept":"application/xml","X-Datadog-Trace-ID":"987654321"},"method":"PUT","timeout":60,"url":"https://docs.datadoghq.com"},"variables":[{"example":"5970","name":"MY_PATTERN_VAR","pattern":"{{numeric(4)}}","secure":false,"type":"text"}]},"message":"Notify @pagerduty","options":{"ci":{"executionRule":"skipped"},"device_ids":["laptop_large","tablet"],"min_failure_duration":10,"min_location_failed":1,"monitor_options":{"renotify_interval":120},"retry":{"count":3,"interval":500},"rumSettings":{"isEnabled":false},"tick_every":1800},"locations":["aws:eu-central-1"],"monitor_id":119349559,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step updated","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":false,"isCritical":false,"noScreenshot":false},{"name":"press key step","params":{"modifiers":[],"value":"1"},"timeout":0,"type":"pressKey","allowFailure":false,"isCritical":false,"noScreenshot":false}]} headers: Content-Type: - application/json @@ -300,7 +300,7 @@ interactions: duration: "" - request: body: | - {"public_ids":["y9n-av7-b7y"]} + {"public_ids":["cg7-8aj-hc3"]} form: {} headers: Accept: @@ -311,7 +311,7 @@ interactions: method: POST response: body: | - {"deleted_tests":[{"public_id":"y9n-av7-b7y","deleted_at":"2023-04-24T19:33:34.979605+00:00"}]} + {"deleted_tests":[{"public_id":"cg7-8aj-hc3","deleted_at":"2023-05-17T21:05:38.731307+00:00"}]} headers: Content-Type: - application/json @@ -324,7 +324,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/y9n-av7-b7y + url: https://api.datadoghq.com/api/v1/synthetics/tests/cg7-8aj-hc3 method: GET response: body: '{"errors":["Synthetics test not found"]}' diff --git a/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_importBasic.freeze b/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_importBasic.freeze index 1ca65e83a..58899faf0 100644 --- a/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_importBasic.freeze +++ b/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_importBasic.freeze @@ -1 +1 @@ -2023-04-24T21:34:35.992062+02:00 \ No newline at end of file +2023-05-17T17:05:32.491613-04:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_importBasic.yaml b/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_importBasic.yaml index 126a8d424..a048c7ca1 100644 --- a/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_importBasic.yaml +++ b/datadog/tests/cassettes/TestAccDatadogSyntheticsBrowserTest_importBasic.yaml @@ -3,7 +3,7 @@ version: 1 interactions: - request: body: | - {"data":{"attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1682364875"},"relationships":{},"type":"roles"}} + {"data":{"attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1684357532"},"relationships":{},"type":"roles"}} form: {} headers: Accept: @@ -14,7 +14,7 @@ interactions: method: POST response: body: | - {"data":{"type":"roles","id":"0ca09316-e2d7-11ed-8925-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1682364875","created_at":"2023-04-24T19:34:37.604301+00:00","modified_at":"2023-04-24T19:34:37.634026+00:00"},"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"}]}}}} + {"data":{"type":"roles","id":"9062e498-f4f6-11ed-bfe1-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1684357532","created_at":"2023-05-17T21:05:33.988337+00:00","modified_at":"2023-05-17T21:05:34.024163+00:00"},"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"}]}}}} headers: Content-Type: - application/json @@ -27,28 +27,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/0ca09316-e2d7-11ed-8925-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/9062e498-f4f6-11ed-bfe1-da7ad0900002 method: GET response: body: | - {"data":{"type":"roles","id":"0ca09316-e2d7-11ed-8925-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1682364875","created_at":"2023-04-24T19:34:37.604301+00:00","modified_at":"2023-04-24T19:34:37.634026+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"}]}}}} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v2/permissions - method: GET - response: - body: | - {"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":"View and edit components in your Datadog organization that do not have explicitly defined permissions. This includes configuring events, facets (except logs), and saved views.","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, mute, 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":"Monitors Manage Downtimes","description":"Set downtimes to suppress alerts from any monitor in an organization. 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, rename, and revoke 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.","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 Configuration","description":"Edit Dynamic Instrumentation configuration.","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 Configuration","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 Configurations Read","description":"View pipeline configurations.","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 Configurations Write","description":"Create, edit, and delete pipeline configurations.","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":"Workflows","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":"Workflows","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":"Workflows","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":"Workflows","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":"Workflows","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":"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":"Workflows","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 Activation Read","description":"View whether Application Security Management is enabled or disabled on services.","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 Activation Write","description":"Enable or disable Application Security Management on services.","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 Write","description":"Create, edit and delete CI Visibility tests and pipelines.","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}}]} + {"data":{"type":"roles","id":"9062e498-f4f6-11ed-bfe1-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1684357532","created_at":"2023-05-17T21:05:33.988337+00:00","modified_at":"2023-05-17T21:05:34.024163+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"}]}}}} headers: Content-Type: - application/json @@ -57,7 +40,7 @@ interactions: duration: "" - request: body: | - {"config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"locations":["aws:eu-central-1"],"message":"Notify @datadog.user","name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1682364875","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1682364875-monitor","monitor_options":{"renotify_interval":120},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["0ca09316-e2d7-11ed-8925-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"status":"paused","steps":[{"allowFailure":true,"isCritical":true,"name":"first step","noScreenshot":true,"params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl"}],"tags":["foo:bar","baz"],"type":"browser"} + {"config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"example":"secret","name":"MY_SECRET","pattern":"secret","secure":true,"type":"text"}]},"locations":["aws:eu-central-1"],"message":"Notify @datadog.user","name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1684357532","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1684357532-monitor","monitor_options":{"renotify_interval":120},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9062e498-f4f6-11ed-bfe1-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"status":"paused","steps":[{"allowFailure":true,"isCritical":true,"name":"first step","noScreenshot":true,"params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl"}],"tags":["foo:bar","baz"],"type":"browser"} form: {} headers: Accept: @@ -68,7 +51,7 @@ interactions: method: POST response: body: | - {"public_id":"nrz-ukj-p2n","name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1682364875","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:34:38.356917+00:00","modified_at":"2023-04-24T19:34:38.356917+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1682364875-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["0ca09316-e2d7-11ed-8925-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"deleted_at":null,"monitor_id":117181271,"org_id":569509,"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} + {"public_id":"y7d-fd4-fia","name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.523815+00:00","modified_at":"2023-05-17T21:05:34.523815+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9062e498-f4f6-11ed-bfe1-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"deleted_at":null,"monitor_id":119349557,"org_id":321813,"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} headers: Content-Type: - application/json @@ -81,11 +64,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/nrz-ukj-p2n + url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/y7d-fd4-fia method: GET response: body: | - {"public_id":"nrz-ukj-p2n","name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1682364875","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:34:38.356917+00:00","modified_at":"2023-04-24T19:34:38.356917+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1682364875-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["0ca09316-e2d7-11ed-8925-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117181271,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} + {"public_id":"y7d-fd4-fia","name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.523815+00:00","modified_at":"2023-05-17T21:05:34.523815+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9062e498-f4f6-11ed-bfe1-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119349557,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} headers: Content-Type: - application/json @@ -98,11 +81,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/0ca09316-e2d7-11ed-8925-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/9062e498-f4f6-11ed-bfe1-da7ad0900002 method: GET response: body: | - {"data":{"type":"roles","id":"0ca09316-e2d7-11ed-8925-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1682364875","created_at":"2023-04-24T19:34:37.604301+00:00","modified_at":"2023-04-24T19:34:37.634026+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"}]}}}} + {"data":{"type":"roles","id":"9062e498-f4f6-11ed-bfe1-da7ad0900002","attributes":{"name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1684357532","created_at":"2023-05-17T21:05:33.988337+00:00","modified_at":"2023-05-17T21:05:34.024163+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"}]}}}} headers: Content-Type: - application/json @@ -115,11 +98,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/nrz-ukj-p2n + url: https://api.datadoghq.com/api/v1/synthetics/tests/y7d-fd4-fia method: GET response: body: | - {"public_id":"nrz-ukj-p2n","name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1682364875","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:34:38.356917+00:00","modified_at":"2023-04-24T19:34:38.356917+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1682364875-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["0ca09316-e2d7-11ed-8925-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117181271,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} + {"public_id":"y7d-fd4-fia","name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.523815+00:00","modified_at":"2023-05-17T21:05:34.523815+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9062e498-f4f6-11ed-bfe1-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119349557,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} headers: Content-Type: - application/json @@ -132,11 +115,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/nrz-ukj-p2n + url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/y7d-fd4-fia method: GET response: body: | - {"public_id":"nrz-ukj-p2n","name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1682364875","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:34:38.356917+00:00","modified_at":"2023-04-24T19:34:38.356917+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1682364875-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["0ca09316-e2d7-11ed-8925-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117181271,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} + {"public_id":"y7d-fd4-fia","name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.523815+00:00","modified_at":"2023-05-17T21:05:34.523815+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9062e498-f4f6-11ed-bfe1-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119349557,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} headers: Content-Type: - application/json @@ -149,11 +132,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/nrz-ukj-p2n + url: https://api.datadoghq.com/api/v1/synthetics/tests/y7d-fd4-fia method: GET response: body: | - {"public_id":"nrz-ukj-p2n","name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1682364875","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:34:38.356917+00:00","modified_at":"2023-04-24T19:34:38.356917+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1682364875-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["0ca09316-e2d7-11ed-8925-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117181271,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} + {"public_id":"y7d-fd4-fia","name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.523815+00:00","modified_at":"2023-05-17T21:05:34.523815+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9062e498-f4f6-11ed-bfe1-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119349557,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"}} headers: Content-Type: - application/json @@ -166,11 +149,11 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/nrz-ukj-p2n + url: https://api.datadoghq.com/api/v1/synthetics/tests/browser/y7d-fd4-fia method: GET response: body: | - {"public_id":"nrz-ukj-p2n","name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1682364875","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-04-24T19:34:38.356917+00:00","modified_at":"2023-04-24T19:34:38.356917+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1682364875-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["0ca09316-e2d7-11ed-8925-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":117181271,"creator":{"name":"Frog","handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} + {"public_id":"y7d-fd4-fia","name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1684357532","status":"paused","type":"browser","tags":["foo:bar","baz"],"created_at":"2023-05-17T21:05:34.523815+00:00","modified_at":"2023-05-17T21:05:34.523815+00:00","config":{"assertions":[],"configVariables":[{"example":"123","name":"VARIABLE_NAME","pattern":"{{numeric(3)}}","secure":false,"type":"text"}],"request":{"basicAuth":{"password":"password","type":"web","username":"username"},"body":"this is a body","certificateDomains":["https://datadoghq.com"],"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"},"timeout":30,"url":"https://www.datadoghq.com"},"setCookie":"name=value","variables":[{"example":"597","name":"MY_PATTERN_VAR","pattern":"{{numeric(3)}}","secure":false,"type":"text"},{"example":"","name":"EMAIL_VAR","pattern":"","type":"email"},{"name":"MY_SECRET","secure":true,"type":"text"}]},"message":"Notify @datadog.user","options":{"ci":{"executionRule":"blocking"},"device_ids":["laptop_large","mobile_small"],"disableCors":true,"disableCsp":true,"ignoreServerCertificateError":true,"initialNavigationTimeout":150,"min_location_failed":1,"monitor_name":"tf-TestAccDatadogSyntheticsBrowserTest_importBasic-local-1684357532-monitor","monitor_options":{"renotify_interval":120,"on_missing_data":"show_no_data","notify_audit":false,"new_host_delay":300,"include_tags":true},"monitor_priority":5,"noScreenshot":true,"restricted_roles":["9062e498-f4f6-11ed-bfe1-da7ad0900002"],"retry":{"count":2,"interval":300},"rumSettings":{"applicationId":"rum-app-id","clientTokenId":12345,"isEnabled":true},"tick_every":900},"locations":["aws:eu-central-1"],"monitor_id":119349557,"creator":{"name":null,"handle":"frog@datadoghq.com","email":"frog@datadoghq.com"},"steps":[{"name":"first step","params":{"check":"contains","value":"content"},"timeout":0,"type":"assertCurrentUrl","allowFailure":true,"isCritical":true,"noScreenshot":true}]} headers: Content-Type: - application/json @@ -179,7 +162,7 @@ interactions: duration: "" - request: body: | - {"public_ids":["nrz-ukj-p2n"]} + {"public_ids":["y7d-fd4-fia"]} form: {} headers: Accept: @@ -190,7 +173,7 @@ interactions: method: POST response: body: | - {"deleted_tests":[{"public_id":"nrz-ukj-p2n","deleted_at":"2023-04-24T19:34:40.741093+00:00"}]} + {"deleted_tests":[{"public_id":"y7d-fd4-fia","deleted_at":"2023-05-17T21:05:36.701241+00:00"}]} headers: Content-Type: - application/json @@ -203,7 +186,7 @@ interactions: headers: Accept: - '*/*' - url: https://api.datadoghq.com/api/v2/roles/0ca09316-e2d7-11ed-8925-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/9062e498-f4f6-11ed-bfe1-da7ad0900002 method: DELETE response: body: "" @@ -219,7 +202,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/0ca09316-e2d7-11ed-8925-da7ad0900002 + url: https://api.datadoghq.com/api/v1/synthetics/tests/9062e498-f4f6-11ed-bfe1-da7ad0900002 method: GET response: body: '{"errors":["Synthetics test not found"]}' @@ -235,7 +218,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/synthetics/tests/nrz-ukj-p2n + url: https://api.datadoghq.com/api/v1/synthetics/tests/y7d-fd4-fia method: GET response: body: '{"errors":["Synthetics test not found"]}' diff --git a/datadog/tests/resource_datadog_synthetics_test_test.go b/datadog/tests/resource_datadog_synthetics_test_test.go index 985c5a919..af1ff4e34 100644 --- a/datadog/tests/resource_datadog_synthetics_test_test.go +++ b/datadog/tests/resource_datadog_synthetics_test_test.go @@ -2679,6 +2679,12 @@ func createSyntheticsBrowserTestStep(ctx context.Context, accProvider func() (*s "datadog_synthetics_test.bar", "browser_variable.1.type", "email"), resource.TestCheckResourceAttr( "datadog_synthetics_test.bar", "browser_variable.1.name", "EMAIL_VAR"), + resource.TestCheckResourceAttr( + "datadog_synthetics_test.bar", "browser_variable.2.type", "text"), + resource.TestCheckResourceAttr( + "datadog_synthetics_test.bar", "browser_variable.2.name", "MY_SECRET"), + resource.TestCheckResourceAttr( + "datadog_synthetics_test.bar", "browser_variable.2.secure", "true"), resource.TestCheckResourceAttr( "datadog_synthetics_test.bar", "config_variable.0.type", "text"), resource.TestCheckResourceAttr( @@ -2792,6 +2798,14 @@ resource "datadog_synthetics_test" "bar" { name = "EMAIL_VAR" type = "email" } + + browser_variable { + type = "text" + name = "MY_SECRET" + pattern = "secret" + example = "secret" + secure = true + } config_variable { type = "text" diff --git a/docs/resources/synthetics_test.md b/docs/resources/synthetics_test.md index 0697670d2..e780e1e5e 100644 --- a/docs/resources/synthetics_test.md +++ b/docs/resources/synthetics_test.md @@ -632,6 +632,7 @@ Optional: - `example` (String) Example for the variable. - `id` (String) ID of the global variable to use. This is actually only used (and required) in the case of using a variable of type `global`. - `pattern` (String) Pattern of the variable. +- `secure` (Boolean) Determines whether or not the browser test variable is obfuscated. Can only be used with a browser variable of type `text` diff --git a/go.mod b/go.mod index 8660193c6..de00e1c67 100644 --- a/go.mod +++ b/go.mod @@ -1,7 +1,7 @@ module github.com/terraform-providers/terraform-provider-datadog require ( - github.com/DataDog/datadog-api-client-go/v2 v2.12.1-0.20230517211451-fa06718fc6c9 + github.com/DataDog/datadog-api-client-go/v2 v2.12.1-0.20230519192638-b16a2b9c0c56 github.com/DataDog/dd-sdk-go-testing v0.0.0-20211116174033-1cd082e322ad github.com/dnaeon/go-vcr v1.0.1 github.com/hashicorp/go-cleanhttp v0.5.2 diff --git a/go.sum b/go.sum index 79abb9466..503c76a2a 100644 --- a/go.sum +++ b/go.sum @@ -1,8 +1,8 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/DataDog/datadog-api-client-go/v2 v2.12.1-0.20230517211451-fa06718fc6c9 h1:YEk0liOWiA1sve0/0Y0gyYUcSuS+V2horffxv0gj6/U= -github.com/DataDog/datadog-api-client-go/v2 v2.12.1-0.20230517211451-fa06718fc6c9/go.mod h1:kntOqXEh1SmjwSDzW/eJkr9kS7EqttvEkelglWtJRbg= +github.com/DataDog/datadog-api-client-go/v2 v2.12.1-0.20230519192638-b16a2b9c0c56 h1:wCKbLcKh4yT9Stgd4F/ISBqj23OnOKlAal1sT4PhBXs= +github.com/DataDog/datadog-api-client-go/v2 v2.12.1-0.20230519192638-b16a2b9c0c56/go.mod h1:kntOqXEh1SmjwSDzW/eJkr9kS7EqttvEkelglWtJRbg= github.com/DataDog/datadog-go v4.4.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= github.com/DataDog/datadog-go v4.8.3+incompatible h1:fNGaYSuObuQb5nzeTQqowRAd9bpDIRRV4/gUtIBjh8Q= github.com/DataDog/datadog-go v4.8.3+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ=