From 77f87e660602b1b9f9e1aac02714c9ad72963832 Mon Sep 17 00:00:00 2001 From: Etienne Carriere Date: Mon, 24 Feb 2025 14:54:38 +0100 Subject: [PATCH 1/5] [datadog_dashboard] Add `clustering_pattern_field_path` and `group_by` for ListStrem Widget --- datadog/resource_datadog_dashboard.go | 31 +++++++++++++++++++++++++++ docs/resources/dashboard.md | 20 +++++++++++++++++ docs/resources/powerpack.md | 10 +++++++++ 3 files changed, 61 insertions(+) diff --git a/datadog/resource_datadog_dashboard.go b/datadog/resource_datadog_dashboard.go index ce1fca4d3..2945b5d2d 100644 --- a/datadog/resource_datadog_dashboard.go +++ b/datadog/resource_datadog_dashboard.go @@ -5902,6 +5902,11 @@ func getListStreamRequestSchema() map[string]*schema.Schema { MaxItems: 1, Elem: &schema.Resource{ Schema: map[string]*schema.Schema{ + "clustering_pattern_field_path": { + Description: "Specifies the field for logs pattern clustering. Usable only with logs_pattern_stream.", + Optional: true, + Type: schema.TypeString, + }, "data_source": { Description: "Source from which to query items to display in the stream.", Type: schema.TypeString, @@ -5919,6 +5924,20 @@ func getListStreamRequestSchema() map[string]*schema.Schema { Optional: true, ValidateDiagFunc: validators.ValidateEnumValue(datadogV1.NewWidgetEventSizeFromValue), }, + "group_by": { + Description: "Group by configuration for the List Stream Widget. Group by can be used only with logs_pattern_stream (up to 4 items) or logs_transaction_stream (one group by item is required) list stream source.", + Optional: true, + Type: schema.TypeList, + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "facet": { + Description: "Facet name", + Type: schema.TypeString, + Required: true, + }, + }, + }, + }, "indexes": { Description: "List of indexes.", Type: schema.TypeList, @@ -5974,6 +5993,9 @@ func buildDatadogListStreamRequests(terraformRequests *[]interface{}) *[]datadog if terraformQuery, ok := terraformRequest["query"].([]interface{}); ok && len(terraformQuery) > 0 { q := terraformQuery[0].(map[string]interface{}) + if v, ok := q["clustering_pattern_field_path"].(string); ok && len(v) > 0 { + datadogQuery.SetClusteringPatternFieldPath(v) + } if v, ok := q["data_source"].(string); ok && len(v) > 0 { ds := datadogV1.ListStreamSource(v) datadogQuery.SetDataSource(ds) @@ -5987,6 +6009,14 @@ func buildDatadogListStreamRequests(terraformRequests *[]interface{}) *[]datadog if v, ok := q["storage"].(string); ok && v != "" { datadogQuery.SetStorage(v) } + if v, ok := q["group_by"].([]interface{}); ok { + var groupBy []datadogV1.ListStreamGroupByItems + for _, s := range v { + facet := s.(map[string]interface{})["facet"].(string) + groupBy = append(groupBy, *datadogV1.NewListStreamGroupByItems(facet)) + } + datadogQuery.SetGroupBy(groupBy) + } if v, ok := q["indexes"].([]interface{}); ok { var indexes []string for _, s := range v { @@ -5994,6 +6024,7 @@ func buildDatadogListStreamRequests(terraformRequests *[]interface{}) *[]datadog } datadogQuery.SetIndexes(indexes) } + if terraformSort, ok := q["sort"].([]interface{}); ok && len(terraformSort) > 0 { sortMap := terraformSort[0].(map[string]interface{}) datadogSort := datadogV1.NewWidgetFieldSortWithDefaults() diff --git a/docs/resources/dashboard.md b/docs/resources/dashboard.md index 9508d92f5..14c2f5d40 100644 --- a/docs/resources/dashboard.md +++ b/docs/resources/dashboard.md @@ -5305,12 +5305,22 @@ Required: Optional: +- `clustering_pattern_field_path` (String) Specifies the field for logs pattern clustering. Usable only with logs_pattern_stream. - `event_size` (String) Size of events displayed in widget. Required if `data_source` is `event_stream`. Valid values are `s`, `l`. +- `group_by` (Block List) Group by configuration for the List Stream Widget. Group by can be used only with logs_pattern_stream (up to 4 items) or logs_transaction_stream (one group by item is required) list stream source. (see [below for nested schema](#nestedblock--widget--group_definition--widget--list_stream_definition--request--query--group_by)) - `indexes` (List of String) List of indexes. - `query_string` (String) Widget query. - `sort` (Block List, Max: 1) The facet and order to sort the data, for example: `{"column": "time", "order": "desc"}`. (see [below for nested schema](#nestedblock--widget--group_definition--widget--list_stream_definition--request--query--sort)) - `storage` (String) Storage location (private beta). + +### Nested Schema for `widget.group_definition.widget.list_stream_definition.request.query.group_by` + +Required: + +- `facet` (String) Facet name + + ### Nested Schema for `widget.group_definition.widget.list_stream_definition.request.query.sort` @@ -17877,12 +17887,22 @@ Required: Optional: +- `clustering_pattern_field_path` (String) Specifies the field for logs pattern clustering. Usable only with logs_pattern_stream. - `event_size` (String) Size of events displayed in widget. Required if `data_source` is `event_stream`. Valid values are `s`, `l`. +- `group_by` (Block List) Group by configuration for the List Stream Widget. Group by can be used only with logs_pattern_stream (up to 4 items) or logs_transaction_stream (one group by item is required) list stream source. (see [below for nested schema](#nestedblock--widget--list_stream_definition--request--query--group_by)) - `indexes` (List of String) List of indexes. - `query_string` (String) Widget query. - `sort` (Block List, Max: 1) The facet and order to sort the data, for example: `{"column": "time", "order": "desc"}`. (see [below for nested schema](#nestedblock--widget--list_stream_definition--request--query--sort)) - `storage` (String) Storage location (private beta). + +### Nested Schema for `widget.list_stream_definition.request.query.group_by` + +Required: + +- `facet` (String) Facet name + + ### Nested Schema for `widget.list_stream_definition.request.query.sort` diff --git a/docs/resources/powerpack.md b/docs/resources/powerpack.md index 5307137bf..ee11ae279 100644 --- a/docs/resources/powerpack.md +++ b/docs/resources/powerpack.md @@ -2990,12 +2990,22 @@ Required: Optional: +- `clustering_pattern_field_path` (String) Specifies the field for logs pattern clustering. Usable only with logs_pattern_stream. - `event_size` (String) Size of events displayed in widget. Required if `data_source` is `event_stream`. Valid values are `s`, `l`. +- `group_by` (Block List) Group by configuration for the List Stream Widget. Group by can be used only with logs_pattern_stream (up to 4 items) or logs_transaction_stream (one group by item is required) list stream source. (see [below for nested schema](#nestedblock--widget--list_stream_definition--request--query--group_by)) - `indexes` (List of String) List of indexes. - `query_string` (String) Widget query. - `sort` (Block List, Max: 1) The facet and order to sort the data, for example: `{"column": "time", "order": "desc"}`. (see [below for nested schema](#nestedblock--widget--list_stream_definition--request--query--sort)) - `storage` (String) Storage location (private beta). + +### Nested Schema for `widget.list_stream_definition.request.query.group_by` + +Required: + +- `facet` (String) Facet name + + ### Nested Schema for `widget.list_stream_definition.request.query.sort` From a686cc8d0653fb4da5cab8aee5e8f061c80c0455 Mon Sep 17 00:00:00 2001 From: Etienne Carriere Date: Tue, 25 Feb 2025 15:49:27 +0100 Subject: [PATCH 2/5] Update cassettes --- ...AccDatadogDashboardRbac_adminToRbac.freeze | 2 +- ...stAccDatadogDashboardRbac_adminToRbac.yaml | 662 ++++++---- ...AccDatadogDashboardRbac_createAdmin.freeze | 2 +- ...stAccDatadogDashboardRbac_createAdmin.yaml | 272 ++-- ...tAccDatadogDashboardRbac_createOpen.freeze | 2 +- ...estAccDatadogDashboardRbac_createOpen.yaml | 272 ++-- ...tAccDatadogDashboardRbac_createRbac.freeze | 2 +- ...estAccDatadogDashboardRbac_createRbac.yaml | 531 +++++--- ...cDatadogDashboardRbac_updateToAdmin.freeze | 2 +- ...AccDatadogDashboardRbac_updateToAdmin.yaml | 437 ++++--- ...ccDatadogDashboardRbac_updateToOpen.freeze | 2 +- ...tAccDatadogDashboardRbac_updateToOpen.yaml | 1096 +++++++++++------ ...ccDatadogDashboardRbac_updateToRbac.freeze | 2 +- ...tAccDatadogDashboardRbac_updateToRbac.yaml | 644 ++++++---- 14 files changed, 2542 insertions(+), 1386 deletions(-) diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.freeze b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.freeze index 7b9e4ce6d..062d7889e 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.freeze +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.freeze @@ -1 +1 @@ -2023-04-20T11:11:28.013594-04:00 \ No newline at end of file +2025-02-25T15:48:37.056455+01:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.yaml b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.yaml index fd1aab6a7..044ebb3fb 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.yaml +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.yaml @@ -1,244 +1,422 @@ +--- version: 2 interactions: -- request: - body: | - {"description":"Created using the Datadog provider in Terraform","id":"","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1682003488","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard - method: POST - id: 0 - response: - body: | - {"id":"bey-3ja-fkd","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1682003488","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/bey-3ja-fkd/tf-testaccdatadogdashboardrbacadmintorbac-local-1682003488","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7267731487343240}],"notify_list":[],"created_at":"2023-04-20T15:11:29.273025+00:00","modified_at":"2023-04-20T15:11:29.273025+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/bey-3ja-fkd - method: GET - id: 1 - response: - body: | - {"id":"bey-3ja-fkd","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1682003488","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/bey-3ja-fkd/tf-testaccdatadogdashboardrbacadmintorbac-local-1682003488","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7267731487343240}],"notify_list":[],"created_at":"2023-04-20T15:11:29.273025+00:00","modified_at":"2023-04-20T15:11:29.273025+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/bey-3ja-fkd - method: GET - id: 2 - response: - body: | - {"id":"bey-3ja-fkd","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1682003488","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/bey-3ja-fkd/tf-testaccdatadogdashboardrbacadmintorbac-local-1682003488","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7267731487343240}],"notify_list":[],"created_at":"2023-04-20T15:11:29.273025+00:00","modified_at":"2023-04-20T15:11:29.273025+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/bey-3ja-fkd - method: GET - id: 3 - response: - body: | - {"id":"bey-3ja-fkd","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1682003488","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/bey-3ja-fkd/tf-testaccdatadogdashboardrbacadmintorbac-local-1682003488","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7267731487343240}],"notify_list":[],"created_at":"2023-04-20T15:11:29.273025+00:00","modified_at":"2023-04-20T15:11:29.273025+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: | - {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1682003488"},"relationships":{},"type":"roles"}} - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - url: https://api.datadoghq.com/api/v2/roles - method: POST - id: 4 - response: - body: | - {"data":{"type":"roles","id":"a246e5d4-df8d-11ed-803a-da7ad0900002","attributes":{"name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1682003488","created_at":"2023-04-20T15:11:32.429017+00:00","modified_at":"2023-04-20T15:11:32.462999+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 - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v2/roles/a246e5d4-df8d-11ed-803a-da7ad0900002 - method: GET - id: 5 - response: - body: | - {"data":{"type":"roles","id":"a246e5d4-df8d-11ed-803a-da7ad0900002","attributes":{"name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1682003488","created_at":"2023-04-20T15:11:32.429017+00:00","modified_at":"2023-04-20T15:11:32.462999+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: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v2/permissions - method: GET - id: 6 - 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 Downtime","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 Location 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 Location 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 View","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 Filter 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 Filter 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":"Incident 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":"Incident 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}}]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: | - {"description":"Created using the Datadog provider in Terraform","id":"bey-3ja-fkd","layout_type":"ordered","notify_list":[],"restricted_roles":["a246e5d4-df8d-11ed-803a-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1682003488","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/bey-3ja-fkd - method: PUT - id: 7 - response: - body: | - {"id":"bey-3ja-fkd","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1682003488","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/bey-3ja-fkd/tf-testaccdatadogdashboardrbacadmintorbac-local-1682003488","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":8340772662340976}],"notify_list":[],"created_at":"2023-04-20T15:11:29.273025+00:00","modified_at":"2023-04-20T15:11:32.990632+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["a246e5d4-df8d-11ed-803a-da7ad0900002"]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/bey-3ja-fkd - method: GET - id: 8 - response: - body: | - {"id":"bey-3ja-fkd","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1682003488","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/bey-3ja-fkd/tf-testaccdatadogdashboardrbacadmintorbac-local-1682003488","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":8340772662340976}],"notify_list":[],"created_at":"2023-04-20T15:11:29.273025+00:00","modified_at":"2023-04-20T15:11:32.990632+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["a246e5d4-df8d-11ed-803a-da7ad0900002"]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v2/roles/a246e5d4-df8d-11ed-803a-da7ad0900002 - method: GET - id: 9 - response: - body: | - {"data":{"type":"roles","id":"a246e5d4-df8d-11ed-803a-da7ad0900002","attributes":{"name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1682003488","created_at":"2023-04-20T15:11:32.429017+00:00","modified_at":"2023-04-20T15:11:32.462999+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: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/bey-3ja-fkd - method: GET - id: 10 - response: - body: | - {"id":"bey-3ja-fkd","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1682003488","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/bey-3ja-fkd/tf-testaccdatadogdashboardrbacadmintorbac-local-1682003488","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":8340772662340976}],"notify_list":[],"created_at":"2023-04-20T15:11:29.273025+00:00","modified_at":"2023-04-20T15:11:32.990632+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["a246e5d4-df8d-11ed-803a-da7ad0900002"]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/bey-3ja-fkd - method: DELETE - id: 11 - response: - body: | - {"deleted_dashboard_id":"bey-3ja-fkd"} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - '*/*' - url: https://api.datadoghq.com/api/v2/roles/a246e5d4-df8d-11ed-803a-da7ad0900002 - method: DELETE - id: 12 - response: - body: "" - headers: - Content-Type: - - text/html; charset=utf-8 - status: 204 No Content - code: 204 - duration: "0ms" + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 372 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: | + {"description":"Created using the Datadog provider in Terraform","id":"","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard + method: POST + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"jk8-8jt-r5r","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/jk8-8jt-r5r/tf-testaccdatadogdashboardrbacadmintorbac-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":832370349182560}],"notify_list":[],"created_at":"2025-02-25T14:48:40.741742+00:00","modified_at":"2025-02-25T14:48:40.741742+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 566.859917ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/jk8-8jt-r5r + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"jk8-8jt-r5r","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/jk8-8jt-r5r/tf-testaccdatadogdashboardrbacadmintorbac-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":832370349182560}],"notify_list":[],"created_at":"2025-02-25T14:48:40.741742+00:00","modified_at":"2025-02-25T14:48:40.741742+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 166.318667ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/jk8-8jt-r5r + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"jk8-8jt-r5r","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/jk8-8jt-r5r/tf-testaccdatadogdashboardrbacadmintorbac-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":832370349182560}],"notify_list":[],"created_at":"2025-02-25T14:48:40.741742+00:00","modified_at":"2025-02-25T14:48:40.741742+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 245.881208ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/jk8-8jt-r5r + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"jk8-8jt-r5r","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/jk8-8jt-r5r/tf-testaccdatadogdashboardrbacadmintorbac-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":832370349182560}],"notify_list":[],"created_at":"2025-02-25T14:48:40.741742+00:00","modified_at":"2025-02-25T14:48:40.741742+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 175.391958ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 129 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: | + {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917"},"relationships":{},"type":"roles"}} + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + url: https://api.datadoghq.com/api/v2/roles + method: POST + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 983 + uncompressed: false + body: '{"data":{"id":"9d9b0ff0-f387-11ef-a9cf-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:46.209205Z","modified_at":"2025-02-25T14:48:46.208652Z","name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + headers: + Content-Type: + - application/vnd.api+json + status: 200 OK + code: 200 + duration: 139.717208ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v2/roles/9d9b0ff0-f387-11ef-a9cf-da7ad0900002 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 1066 + uncompressed: false + body: '{"data":{"id":"9d9b0ff0-f387-11ef-a9cf-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:46.209205Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-25T14:48:46.208652Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + headers: + Content-Type: + - application/vnd.api+json + status: 200 OK + code: 200 + duration: 131.628334ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 423 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: | + {"description":"Created using the Datadog provider in Terraform","id":"jk8-8jt-r5r","layout_type":"ordered","notify_list":[],"restricted_roles":["9d9b0ff0-f387-11ef-a9cf-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/jk8-8jt-r5r + method: PUT + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"jk8-8jt-r5r","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/jk8-8jt-r5r/tf-testaccdatadogdashboardrbacadmintorbac-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":8298284489418048}],"notify_list":[],"created_at":"2025-02-25T14:48:40.741742+00:00","modified_at":"2025-02-25T14:48:46.942256+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9d9b0ff0-f387-11ef-a9cf-da7ad0900002"]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 370.075375ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/jk8-8jt-r5r + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"jk8-8jt-r5r","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/jk8-8jt-r5r/tf-testaccdatadogdashboardrbacadmintorbac-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":8298284489418048}],"notify_list":[],"created_at":"2025-02-25T14:48:40.741742+00:00","modified_at":"2025-02-25T14:48:46.942256+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9d9b0ff0-f387-11ef-a9cf-da7ad0900002"]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 206.969167ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v2/roles/9d9b0ff0-f387-11ef-a9cf-da7ad0900002 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 1066 + uncompressed: false + body: '{"data":{"id":"9d9b0ff0-f387-11ef-a9cf-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:46.209205Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-25T14:48:46.208652Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + headers: + Content-Type: + - application/vnd.api+json + status: 200 OK + code: 200 + duration: 127.833334ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/jk8-8jt-r5r + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"jk8-8jt-r5r","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/jk8-8jt-r5r/tf-testaccdatadogdashboardrbacadmintorbac-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":8298284489418048}],"notify_list":[],"created_at":"2025-02-25T14:48:40.741742+00:00","modified_at":"2025-02-25T14:48:46.942256+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9d9b0ff0-f387-11ef-a9cf-da7ad0900002"]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 164.277625ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/jk8-8jt-r5r + method: DELETE + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"deleted_dashboard_id":"jk8-8jt-r5r"} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 206.392459ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - '*/*' + url: https://api.datadoghq.com/api/v2/roles/9d9b0ff0-f387-11ef-a9cf-da7ad0900002 + method: DELETE + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: {} + status: 204 No Content + code: 204 + duration: 123.446917ms diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.freeze b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.freeze index 24dd9480b..1a29dbd22 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.freeze +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.freeze @@ -1 +1 @@ -2023-04-20T11:11:15.344196-04:00 \ No newline at end of file +2025-02-25T15:48:37.051655+01:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.yaml b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.yaml index b5d2506fa..9ab0c3b68 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.yaml +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.yaml @@ -1,95 +1,181 @@ +--- version: 2 interactions: -- request: - body: | - {"description":"Created using the Datadog provider in Terraform","id":"","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1682003475","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard - method: POST - id: 0 - response: - body: | - {"id":"2ad-xgf-xws","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1682003475","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/2ad-xgf-xws/tf-testaccdatadogdashboardrbaccreateadmin-local-1682003475","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":1104433575338262}],"notify_list":[],"created_at":"2023-04-20T15:11:16.771360+00:00","modified_at":"2023-04-20T15:11:16.771360+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/2ad-xgf-xws - method: GET - id: 1 - response: - body: | - {"id":"2ad-xgf-xws","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1682003475","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/2ad-xgf-xws/tf-testaccdatadogdashboardrbaccreateadmin-local-1682003475","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":1104433575338262}],"notify_list":[],"created_at":"2023-04-20T15:11:16.771360+00:00","modified_at":"2023-04-20T15:11:16.771360+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/2ad-xgf-xws - method: GET - id: 2 - response: - body: | - {"id":"2ad-xgf-xws","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1682003475","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/2ad-xgf-xws/tf-testaccdatadogdashboardrbaccreateadmin-local-1682003475","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":1104433575338262}],"notify_list":[],"created_at":"2023-04-20T15:11:16.771360+00:00","modified_at":"2023-04-20T15:11:16.771360+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/2ad-xgf-xws - method: GET - id: 3 - response: - body: | - {"id":"2ad-xgf-xws","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1682003475","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/2ad-xgf-xws/tf-testaccdatadogdashboardrbaccreateadmin-local-1682003475","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":1104433575338262}],"notify_list":[],"created_at":"2023-04-20T15:11:16.771360+00:00","modified_at":"2023-04-20T15:11:16.771360+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/2ad-xgf-xws - method: DELETE - id: 4 - response: - body: | - {"deleted_dashboard_id":"2ad-xgf-xws"} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 372 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: | + {"description":"Created using the Datadog provider in Terraform","id":"","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard + method: POST + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"6su-q9n-655","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/6su-q9n-655/tf-testaccdatadogdashboardrbaccreateadmin-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":165623797858857}],"notify_list":[],"created_at":"2025-02-25T14:48:40.755065+00:00","modified_at":"2025-02-25T14:48:40.755065+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 568.744833ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/6su-q9n-655 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"6su-q9n-655","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/6su-q9n-655/tf-testaccdatadogdashboardrbaccreateadmin-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":165623797858857}],"notify_list":[],"created_at":"2025-02-25T14:48:40.755065+00:00","modified_at":"2025-02-25T14:48:40.755065+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 176.289958ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/6su-q9n-655 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"6su-q9n-655","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/6su-q9n-655/tf-testaccdatadogdashboardrbaccreateadmin-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":165623797858857}],"notify_list":[],"created_at":"2025-02-25T14:48:40.755065+00:00","modified_at":"2025-02-25T14:48:40.755065+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 227.683875ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/6su-q9n-655 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"6su-q9n-655","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/6su-q9n-655/tf-testaccdatadogdashboardrbaccreateadmin-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":165623797858857}],"notify_list":[],"created_at":"2025-02-25T14:48:40.755065+00:00","modified_at":"2025-02-25T14:48:40.755065+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 169.540166ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/6su-q9n-655 + method: DELETE + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"deleted_dashboard_id":"6su-q9n-655"} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 219.190417ms diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.freeze b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.freeze index 96e29c7ef..9fa6ce14b 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.freeze +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.freeze @@ -1 +1 @@ -2023-04-20T11:11:35.569273-04:00 \ No newline at end of file +2025-02-25T15:48:37.052537+01:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.yaml b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.yaml index f1b2e0d6f..1ef999a9b 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.yaml +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.yaml @@ -1,95 +1,181 @@ +--- version: 2 interactions: -- request: - body: | - {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1682003495","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard - method: POST - id: 0 - response: - body: | - {"id":"ywp-myz-w43","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1682003495","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/ywp-myz-w43/tf-testaccdatadogdashboardrbaccreateopen-local-1682003495","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2457230541713592}],"notify_list":[],"created_at":"2023-04-20T15:11:37.019090+00:00","modified_at":"2023-04-20T15:11:37.019090+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/ywp-myz-w43 - method: GET - id: 1 - response: - body: | - {"id":"ywp-myz-w43","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1682003495","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/ywp-myz-w43/tf-testaccdatadogdashboardrbaccreateopen-local-1682003495","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2457230541713592}],"notify_list":[],"created_at":"2023-04-20T15:11:37.019090+00:00","modified_at":"2023-04-20T15:11:37.019090+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/ywp-myz-w43 - method: GET - id: 2 - response: - body: | - {"id":"ywp-myz-w43","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1682003495","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/ywp-myz-w43/tf-testaccdatadogdashboardrbaccreateopen-local-1682003495","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2457230541713592}],"notify_list":[],"created_at":"2023-04-20T15:11:37.019090+00:00","modified_at":"2023-04-20T15:11:37.019090+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/ywp-myz-w43 - method: GET - id: 3 - response: - body: | - {"id":"ywp-myz-w43","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1682003495","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/ywp-myz-w43/tf-testaccdatadogdashboardrbaccreateopen-local-1682003495","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2457230541713592}],"notify_list":[],"created_at":"2023-04-20T15:11:37.019090+00:00","modified_at":"2023-04-20T15:11:37.019090+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/ywp-myz-w43 - method: DELETE - id: 4 - response: - body: | - {"deleted_dashboard_id":"ywp-myz-w43"} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 351 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: | + {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard + method: POST + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"3uy-3aa-qrh","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/3uy-3aa-qrh/tf-testaccdatadogdashboardrbaccreateopen-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2767925479974969}],"notify_list":[],"created_at":"2025-02-25T14:48:40.708000+00:00","modified_at":"2025-02-25T14:48:40.708000+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 477.959833ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/3uy-3aa-qrh + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"3uy-3aa-qrh","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/3uy-3aa-qrh/tf-testaccdatadogdashboardrbaccreateopen-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2767925479974969}],"notify_list":[],"created_at":"2025-02-25T14:48:40.708000+00:00","modified_at":"2025-02-25T14:48:40.708000+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 173.292834ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/3uy-3aa-qrh + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"3uy-3aa-qrh","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/3uy-3aa-qrh/tf-testaccdatadogdashboardrbaccreateopen-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2767925479974969}],"notify_list":[],"created_at":"2025-02-25T14:48:40.708000+00:00","modified_at":"2025-02-25T14:48:40.708000+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 172.371375ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/3uy-3aa-qrh + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"3uy-3aa-qrh","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/3uy-3aa-qrh/tf-testaccdatadogdashboardrbaccreateopen-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2767925479974969}],"notify_list":[],"created_at":"2025-02-25T14:48:40.708000+00:00","modified_at":"2025-02-25T14:48:40.708000+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 169.945167ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/3uy-3aa-qrh + method: DELETE + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"deleted_dashboard_id":"3uy-3aa-qrh"} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 218.237917ms diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.freeze b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.freeze index f2a2c4207..38b9b1782 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.freeze +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.freeze @@ -1 +1 @@ -2023-05-19T13:43:04.828344-04:00 \ No newline at end of file +2025-02-25T15:48:37.058755+01:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.yaml b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.yaml index 3ee3b2af5..9c0829107 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.yaml +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.yaml @@ -1,187 +1,348 @@ +--- version: 2 interactions: -- request: - body: | - {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1684518184"},"relationships":{},"type":"roles"}} - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - url: https://api.datadoghq.com/api/v2/roles - method: POST - id: 0 - response: - body: | - {"data":{"type":"roles","id":"9c9ed330-f66c-11ed-81b6-da7ad0900002","attributes":{"name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1684518184","created_at":"2023-05-19T17:43:06.290667+00:00","modified_at":"2023-05-19T17:43:06.319089+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 - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v2/roles/9c9ed330-f66c-11ed-81b6-da7ad0900002 - method: GET - id: 1 - response: - body: | - {"data":{"type":"roles","id":"9c9ed330-f66c-11ed-81b6-da7ad0900002","attributes":{"name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1684518184","created_at":"2023-05-19T17:43:06.290667+00:00","modified_at":"2023-05-19T17:43:06.319089+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: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v2/permissions - method: GET - id: 2 - 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, 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 - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: | - {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"restricted_roles":["9c9ed330-f66c-11ed-81b6-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1684518184","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard - method: POST - id: 3 - response: - body: | - {"id":"icp-9wk-yd7","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1684518184","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/icp-9wk-yd7/tf-testaccdatadogdashboardrbaccreaterbac-local-1684518184","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5225674147387041}],"notify_list":[],"created_at":"2023-05-19T17:43:06.806996+00:00","modified_at":"2023-05-19T17:43:06.806996+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9c9ed330-f66c-11ed-81b6-da7ad0900002"]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/icp-9wk-yd7 - method: GET - id: 4 - response: - body: | - {"id":"icp-9wk-yd7","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1684518184","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/icp-9wk-yd7/tf-testaccdatadogdashboardrbaccreaterbac-local-1684518184","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5225674147387041}],"notify_list":[],"created_at":"2023-05-19T17:43:06.806996+00:00","modified_at":"2023-05-19T17:43:06.806996+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9c9ed330-f66c-11ed-81b6-da7ad0900002"]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/icp-9wk-yd7 - method: GET - id: 5 - response: - body: | - {"id":"icp-9wk-yd7","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1684518184","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/icp-9wk-yd7/tf-testaccdatadogdashboardrbaccreaterbac-local-1684518184","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5225674147387041}],"notify_list":[],"created_at":"2023-05-19T17:43:06.806996+00:00","modified_at":"2023-05-19T17:43:06.806996+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9c9ed330-f66c-11ed-81b6-da7ad0900002"]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v2/roles/9c9ed330-f66c-11ed-81b6-da7ad0900002 - method: GET - id: 6 - response: - body: | - {"data":{"type":"roles","id":"9c9ed330-f66c-11ed-81b6-da7ad0900002","attributes":{"name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1684518184","created_at":"2023-05-19T17:43:06.290667+00:00","modified_at":"2023-05-19T17:43:06.319089+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: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/icp-9wk-yd7 - method: GET - id: 7 - response: - body: | - {"id":"icp-9wk-yd7","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1684518184","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/icp-9wk-yd7/tf-testaccdatadogdashboardrbaccreaterbac-local-1684518184","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5225674147387041}],"notify_list":[],"created_at":"2023-05-19T17:43:06.806996+00:00","modified_at":"2023-05-19T17:43:06.806996+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9c9ed330-f66c-11ed-81b6-da7ad0900002"]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/icp-9wk-yd7 - method: DELETE - id: 8 - response: - body: | - {"deleted_dashboard_id":"icp-9wk-yd7"} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - '*/*' - url: https://api.datadoghq.com/api/v2/roles/9c9ed330-f66c-11ed-81b6-da7ad0900002 - method: DELETE - id: 9 - response: - body: "" - headers: - Content-Type: - - text/html; charset=utf-8 - status: 204 No Content - code: 204 - duration: "0ms" + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 128 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: | + {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740494917"},"relationships":{},"type":"roles"}} + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + url: https://api.datadoghq.com/api/v2/roles + method: POST + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 982 + uncompressed: false + body: '{"data":{"id":"9a0be27e-f387-11ef-ac8c-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:40.238274Z","modified_at":"2025-02-25T14:48:40.237668Z","name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + headers: + Content-Type: + - application/vnd.api+json + status: 200 OK + code: 200 + duration: 384.596167ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v2/roles/9a0be27e-f387-11ef-ac8c-da7ad0900002 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 1065 + uncompressed: false + body: '{"data":{"id":"9a0be27e-f387-11ef-ac8c-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:40.238274Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-25T14:48:40.237668Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + headers: + Content-Type: + - application/vnd.api+json + status: 200 OK + code: 200 + duration: 345.9395ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v2/permissions + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: '{"data":[{"id":"984a2bd4-d3b4-11e8-a1ff-a7f660d43029","type":"permissions","attributes":{"created":"2018-10-19T15:35:23.734317Z","description":"Deprecated. Privileged Access (also known as Admin permission) has been replaced by more specific permissions: Access Management, Org Management, Billing Read/Write, Usage Read/Write.","display_name":"Privileged Access","display_type":"other","group_name":"General","name":"admin","restricted":false}},{"id":"984d2f00-d3b4-11e8-a200-bb47109e9987","type":"permissions","attributes":{"created":"2018-10-19T15:35:23.756736Z","description":"Deprecated. Standard Access has been replaced by more specific permissions.","display_name":"Standard Access","display_type":"other","group_name":"General","name":"standard","restricted":false}},{"id":"5e605652-dd12-11e8-9e53-375565b8970e","type":"permissions","attributes":{"created":"2018-10-31T13:39:19.72745Z","description":"Read log data, possibly scoped to one or more indexes. In order to read log data, a user must have both this permission and Logs Read Data. This permission can be granted in a limited capacity per index from the Logs interface or APIs. If granted via the Roles interface or API the permission has global scope. Restrictions are limited to the Log Management product.","display_name":"Logs Read Index Data","display_type":"read","group_name":"Log Management","name":"logs_read_index_data","restricted":false}},{"id":"62cc036c-dd12-11e8-9e54-db9995643092","type":"permissions","attributes":{"created":"2018-10-31T13:39:27.148615Z","description":"Read and modify all indexes in your account. This includes the ability to grant the Logs Read Index Data and Logs Write Exclusion Filters permission to other roles, for some or all indexes.","display_name":"Logs Modify Indexes","display_type":"write","group_name":"Log Management","name":"logs_modify_indexes","restricted":false}},{"id":"6f66600e-dd12-11e8-9e55-7f30fbb45e73","type":"permissions","attributes":{"created":"2018-10-31T13:39:48.292879Z","description":"View the live tail feed for all log indexes, even if otherwise specifically restricted.","display_name":"Logs Live Tail","display_type":"read","group_name":"Log Management","name":"logs_live_tail","restricted":false}},{"id":"7d7c98ac-dd12-11e8-9e56-93700598622d","type":"permissions","attributes":{"created":"2018-10-31T13:40:11.926613Z","description":"Add and change exclusion filters for all or some log indexes. Can be granted in a limited capacity per index to specific roles via the Logs interface or API. If granted from the Roles interface or API, the permission has global scope.","display_name":"Logs Write Exclusion Filters","display_type":"write","group_name":"Log Management","name":"logs_write_exclusion_filters","restricted":false}},{"id":"811ac4ca-dd12-11e8-9e57-676a7f0beef9","type":"permissions","attributes":{"created":"2018-10-31T13:40:17.996379Z","description":"Add and change log pipeline configurations, including the ability to grant the Logs Write Processors permission to other roles, for some or all pipelines.","display_name":"Logs Write Pipelines","display_type":"write","group_name":"Log Management","name":"logs_write_pipelines","restricted":false}},{"id":"84aa3ae4-dd12-11e8-9e58-a373a514ccd0","type":"permissions","attributes":{"created":"2018-10-31T13:40:23.969725Z","description":"Add and change some or all log processor configurations. Can be granted in a limited capacity per pipeline to specific roles via the Logs interface or API. If granted via the Roles interface or API the permission has global scope.","display_name":"Logs Write Processors","display_type":"write","group_name":"Log Management","name":"logs_write_processors","restricted":false}},{"id":"87b00304-dd12-11e8-9e59-cbeb5f71f72f","type":"permissions","attributes":{"created":"2018-10-31T13:40:29.040786Z","description":"Add and edit Log Archives.","display_name":"Logs Write Archives","display_type":"write","group_name":"Log Management","name":"logs_write_archives","restricted":false}},{"id":"979df720-aed7-11e9-99c6-a7eb8373165a","type":"permissions","attributes":{"created":"2019-07-25T12:27:39.640758Z","description":"Create custom metrics from logs.","display_name":"Logs Generate Metrics","display_type":"write","group_name":"Log Management","name":"logs_generate_metrics","restricted":false}},{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions","attributes":{"created":"2019-09-10T14:39:51.955175Z","description":"View dashboards.","display_name":"Dashboards Read","display_type":"read","group_name":"Dashboards","name":"dashboards_read","restricted":true}},{"id":"d90f6831-d3d8-11e9-a77a-4fd230ddbc6a","type":"permissions","attributes":{"created":"2019-09-10T14:39:51.962944Z","description":"Create and change dashboards.","display_name":"Dashboards Write","display_type":"write","group_name":"Dashboards","name":"dashboards_write","restricted":false}},{"id":"d90f6832-d3d8-11e9-a77a-bf8a2607f864","type":"permissions","attributes":{"created":"2019-09-10T14:39:51.967094Z","description":"Generate public and authenticated links to share dashboards or embeddable graphs externally.","display_name":"Dashboards Public Share","display_type":"write","group_name":"Dashboards","name":"dashboards_public_share","restricted":false}},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions","attributes":{"created":"2019-09-16T18:39:07.744297Z","description":"View monitors.","display_name":"Monitors Read","display_type":"read","group_name":"Monitors","name":"monitors_read","restricted":true}},{"id":"48ef71ea-d8b1-11e9-a77a-93f408470ad0","type":"permissions","attributes":{"created":"2019-09-16T18:39:15.597109Z","description":"Edit and delete individual monitors.","display_name":"Monitors Write","display_type":"write","group_name":"Monitors","name":"monitors_write","restricted":false}},{"id":"4d87d5f8-d8b1-11e9-a77a-eb9c8350d04f","type":"permissions","attributes":{"created":"2019-09-16T18:39:23.306702Z","description":"Set downtimes to suppress alerts from any monitor in an organization. Mute and unmute monitors. The ability to write monitors is not required to set downtimes.","display_name":"Manage Downtimes","display_type":"write","group_name":"Monitors","name":"monitors_downtime","restricted":false}},{"id":"1af86ce4-7823-11ea-93dc-d7cad1b1c6cb","type":"permissions","attributes":{"created":"2020-04-06T16:24:35.989108Z","description":"Read log data. In order to read log data, a user must have both this permission and Logs Read Index Data. This permission can be restricted with restriction queries. Restrictions are limited to the Log Management product.","display_name":"Logs Read Data","display_type":"read","group_name":"Log Management","name":"logs_read_data","restricted":false}},{"id":"b382b982-8535-11ea-93de-2bf1bdf20798","type":"permissions","attributes":{"created":"2020-04-23T07:40:27.966133Z","description":"Read Log Archives location and use it for rehydration.","display_name":"Logs Read Archives","display_type":"read","group_name":"Log Management","name":"logs_read_archives","restricted":false}},{"id":"7314eb20-aa58-11ea-95e2-6fb6e4a451d5","type":"permissions","attributes":{"created":"2020-06-09T13:52:25.279909Z","description":"Read Detection Rules.","display_name":"Security Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_rules_read","restricted":false}},{"id":"7b516476-aa58-11ea-95e2-93718cd56369","type":"permissions","attributes":{"created":"2020-06-09T13:52:39.099413Z","description":"Create and edit Detection Rules.","display_name":"Security Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_rules_write","restricted":false}},{"id":"80de1ec0-aa58-11ea-95e2-aff381626d5d","type":"permissions","attributes":{"created":"2020-06-09T13:52:48.410398Z","description":"View Security Signals.","display_name":"Security Signals Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_signals_read","restricted":false}},{"id":"58b412cc-ff6d-11eb-bc9c-da7ad0900002","type":"permissions","attributes":{"created":"2021-08-17T15:11:06.963503Z","description":"Modify Security Signals.","display_name":"Security Signals Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_signals_write","restricted":false}},{"id":"9ac1d8cc-e707-11ea-aa2d-73d37e989a9d","type":"permissions","attributes":{"created":"2020-08-25T19:17:23.539701Z","description":"Invite other users to your organization.","display_name":"User Access Invite","display_type":"write","group_name":"Access Management","name":"user_access_invite","restricted":false}},{"id":"9de604d8-e707-11ea-aa2d-93f1a783b3a3","type":"permissions","attributes":{"created":"2020-08-25T19:17:28.810412Z","description":"Disable users, manage user roles, manage SAML-to-role mappings, and configure logs restriction queries.","display_name":"User Access Manage","display_type":"write","group_name":"Access Management","name":"user_access_manage","restricted":false}},{"id":"46a301da-ec5c-11ea-aa9f-73bedeab67ee","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View and manage Application Keys owned by the user.","display_name":"User App Keys","display_type":"write","group_name":"API and Application Keys","name":"user_app_keys","restricted":false}},{"id":"46a301db-ec5c-11ea-aa9f-2fe72193d60e","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View Application Keys owned by all users in the organization.","display_name":"Org App Keys Read","display_type":"read","group_name":"API and Application Keys","name":"org_app_keys_read","restricted":false}},{"id":"46a301dc-ec5c-11ea-aa9f-13b33f8f46ea","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Manage Application Keys owned by all users in the organization.","display_name":"Org App Keys Write","display_type":"write","group_name":"API and Application Keys","name":"org_app_keys_write","restricted":false}},{"id":"46a301dd-ec5c-11ea-aa9f-97edfb345bc9","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View, search, and use Synthetics private locations.","display_name":"Synthetics Private Locations Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_private_location_read","restricted":false}},{"id":"46a301de-ec5c-11ea-aa9f-a73252c24806","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Create and delete private locations in addition to having access to the associated installation guidelines.","display_name":"Synthetics Private Locations Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_private_location_write","restricted":false}},{"id":"46a301df-ec5c-11ea-aa9f-970a9ae645e5","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View your organization''s subscription and payment method but not make edits.","display_name":"Billing Read","display_type":"read","group_name":"Billing and Usage","name":"billing_read","restricted":false}},{"id":"46a301e0-ec5c-11ea-aa9f-6ba6cc675d8c","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Manage your organization''s subscription and payment method.","display_name":"Billing Edit","display_type":"write","group_name":"Billing and Usage","name":"billing_edit","restricted":false}},{"id":"46a301e1-ec5c-11ea-aa9f-afa39f6f3e36","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View your organization''s usage and usage attribution.","display_name":"Usage Read","display_type":"read","group_name":"Billing and Usage","name":"usage_read","restricted":false}},{"id":"46a301e2-ec5c-11ea-aa9f-1f511b7305fd","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Manage your organization''s usage attribution set-up.","display_name":"Usage Edit","display_type":"write","group_name":"Billing and Usage","name":"usage_edit","restricted":false}},{"id":"46a301e4-ec5c-11ea-aa9f-87282b3a50cc","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Edit and save tag configurations for custom metrics.","display_name":"Metric Tags Write","display_type":"write","group_name":"Metrics","name":"metric_tags_write","restricted":false}},{"id":"07c3c146-f7f8-11ea-acf6-0bd62b9ae60e","type":"permissions","attributes":{"created":"2020-09-16T08:38:44.242076Z","description":"Rehydrate logs from Archives.","display_name":"Logs Write Historical Views","display_type":"write","group_name":"Log Management","name":"logs_write_historical_view","restricted":false}},{"id":"2fbdac76-f923-11ea-adbc-07f3823e2b43","type":"permissions","attributes":{"created":"2020-09-17T20:20:10.834252Z","description":"View Audit Trail in your organization.","display_name":"Audit Trail Read","display_type":"read","group_name":"Compliance","name":"audit_logs_read","restricted":false}},{"id":"372896c4-f923-11ea-adbc-4fecd107156d","type":"permissions","attributes":{"created":"2020-09-17T20:20:23.279769Z","description":"List and retrieve the key values of all API Keys in your organization.","display_name":"API Keys Read","display_type":"read","group_name":"API and Application Keys","name":"api_keys_read","restricted":false}},{"id":"3e4d4d28-f923-11ea-adbc-e3565938c12e","type":"permissions","attributes":{"created":"2020-09-17T20:20:35.26443Z","description":"Create and rename API Keys for your organization.","display_name":"API Keys Write","display_type":"write","group_name":"API and Application Keys","name":"api_keys_write","restricted":false}},{"id":"4628ca54-f923-11ea-adbc-4b2b7f88c5e9","type":"permissions","attributes":{"created":"2020-09-17T20:20:48.446916Z","description":"View, search, and use Synthetics global variables.","display_name":"Synthetics Global Variable Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_global_variable_read","restricted":false}},{"id":"4ada6e36-f923-11ea-adbc-0788e5c5e3cf","type":"permissions","attributes":{"created":"2020-09-17T20:20:56.322003Z","description":"Create, edit, and delete global variables for Synthetics.","display_name":"Synthetics Global Variable Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_global_variable_write","restricted":false}},{"id":"5025ee24-f923-11ea-adbc-576ea241df8d","type":"permissions","attributes":{"created":"2020-09-17T20:21:05.205361Z","description":"List and view configured Synthetic tests and test results.","display_name":"Synthetics Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_read","restricted":false}},{"id":"55f4b5ec-f923-11ea-adbc-1bfa2334a755","type":"permissions","attributes":{"created":"2020-09-17T20:21:14.94914Z","description":"Create, edit, and delete Synthetic tests.","display_name":"Synthetics Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_write","restricted":false}},{"id":"5c6b88e2-f923-11ea-adbc-abf57d079420","type":"permissions","attributes":{"created":"2020-09-17T20:21:25.79416Z","description":"View the default settings for Synthetic Monitoring.","display_name":"Synthetics Default Settings Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_default_settings_read","restricted":false}},{"id":"642eebe6-f923-11ea-adbc-eb617674ea04","type":"permissions","attributes":{"created":"2020-09-17T20:21:38.818771Z","description":"Edit the default settings for Synthetic Monitoring.","display_name":"Synthetics Default Settings Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_default_settings_write","restricted":false}},{"id":"6ba32d22-0e1a-11eb-ba44-bf9a5aafaa39","type":"permissions","attributes":{"created":"2020-10-14T12:40:20.271908Z","description":"Create or edit Log Facets.","display_name":"Logs Write Facets","display_type":"write","group_name":"Log Management","name":"logs_write_facets","restricted":false}},{"id":"a42e94b2-1476-11eb-bd08-efda28c04248","type":"permissions","attributes":{"created":"2020-10-22T14:55:35.814239Z","description":"Create, disable, and use Service Accounts in your organization.","display_name":"Service Account Write","display_type":"write","group_name":"Access Management","name":"service_account_write","restricted":false}},{"id":"fcac2ad8-2843-11eb-8315-0fe47949d625","type":"permissions","attributes":{"created":"2020-11-16T19:43:23.198568Z","description":"Deprecated. Use the Integrations APIs to configure integrations. In order to configure integrations from the UI, a user must also have Standard Access.","display_name":"Integrations API","display_type":"other","group_name":"Integrations","name":"integrations_api","restricted":false}},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions","attributes":{"created":"2020-11-23T20:55:45.00611Z","description":"Read and query APM and Trace Analytics.","display_name":"APM Read","display_type":"read","group_name":"APM","name":"apm_read","restricted":true}},{"id":"43fa188e-2dce-11eb-84c0-835ad1fd6287","type":"permissions","attributes":{"created":"2020-11-23T20:55:49.190595Z","description":"Read trace retention filters. A user with this permission can view the retention filters page, list of filters, their statistics, and creation info.","display_name":"APM Retention Filters Read","display_type":"read","group_name":"APM","name":"apm_retention_filter_read","restricted":false}},{"id":"465cfe66-2dce-11eb-84c0-6baa888239fa","type":"permissions","attributes":{"created":"2020-11-23T20:55:53.194236Z","description":"Create, edit, and delete trace retention filters. A user with this permission can create new retention filters, and update or delete to existing retention filters.","display_name":"APM Retention Filters Write","display_type":"write","group_name":"APM","name":"apm_retention_filter_write","restricted":false}},{"id":"4916eebe-2dce-11eb-84c0-271cb2c672e8","type":"permissions","attributes":{"created":"2020-11-23T20:55:57.768261Z","description":"Access service ingestion pages. A user with this permission can view the service ingestion page, list of root services, their statistics, and creation info.","display_name":"APM Service Ingest Read","display_type":"read","group_name":"APM","name":"apm_service_ingest_read","restricted":false}},{"id":"4e3f02b4-2dce-11eb-84c0-2fca946a6efc","type":"permissions","attributes":{"created":"2020-11-23T20:56:06.419518Z","description":"Edit service ingestion pages'' root services. A user with this permission can edit the root service ingestion and generate a code snippet to increase ingestion per service.","display_name":"APM Service Ingest Write","display_type":"write","group_name":"APM","name":"apm_service_ingest_write","restricted":false}},{"id":"53950c54-2dce-11eb-84c0-a79ae108f6f8","type":"permissions","attributes":{"created":"2020-11-23T20:56:15.371926Z","description":"Set Apdex T value on any service. A user with this permission can set the T value from the Apdex graph on the service page.","display_name":"APM Apdex Manage Write","display_type":"write","group_name":"APM","name":"apm_apdex_manage_write","restricted":false}},{"id":"5cbe5f9c-2dce-11eb-84c0-872d3e9f1076","type":"permissions","attributes":{"created":"2020-11-23T20:56:30.742299Z","description":"Edit second primary tag selection. A user with this permission can modify the second primary tag dropdown in the APM settings page.","display_name":"APM Tag Management Write","display_type":"write","group_name":"APM","name":"apm_tag_management_write","restricted":false}},{"id":"61765026-2dce-11eb-84c0-833e230d1b8f","type":"permissions","attributes":{"created":"2020-11-23T20:56:38.658649Z","description":"Edit the operation name value selection. A user with this permission can modify the operation name list in the APM settings page and the operation name controller on the service page.","display_name":"APM Primary Operation Write","display_type":"write","group_name":"APM","name":"apm_primary_operation_write","restricted":false}},{"id":"04bc1cf2-340a-11eb-873a-43b973c760dd","type":"permissions","attributes":{"created":"2020-12-01T19:18:39.866516Z","description":"Configure Audit Trail in your organization.","display_name":"Audit Trail Write","display_type":"write","group_name":"Compliance","name":"audit_logs_write","restricted":false}},{"id":"8106300a-54f7-11eb-8cbc-7781a434a67b","type":"permissions","attributes":{"created":"2021-01-12T16:59:16.32448Z","description":"Create, edit, and delete RUM applications. Creating a RUM application automatically generates a Client Token. In order to create Client Tokens directly, a user needs the Client Tokens Write permission.","display_name":"RUM Apps Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_apps_write","restricted":false}},{"id":"edfd5e74-801f-11eb-96d8-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-08T15:06:59.006815Z","description":"Edit Dynamic Instrumentation configuration. Create or modify Dynamic Instrumentation probes that do not capture function state.","display_name":"Dynamic Instrumentation Write","display_type":"write","group_name":"APM","name":"debugger_write","restricted":false}},{"id":"edfd5e75-801f-11eb-96d8-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-08T15:06:59.010517Z","description":"View Dynamic Instrumentation configuration.","display_name":"Dynamic Instrumentation Read","display_type":"read","group_name":"APM","name":"debugger_read","restricted":false}},{"id":"bf0dcf7c-90af-11eb-9b82-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-29T16:56:46.394971Z","description":"View Sensitive Data Scanner configurations and scanning results.","display_name":"Data Scanner Read","display_type":"read","group_name":"Compliance","name":"data_scanner_read","restricted":false}},{"id":"bf0dcf7d-90af-11eb-9b82-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-29T16:56:46.398584Z","description":"Edit Sensitive Data Scanner configurations.","display_name":"Data Scanner Write","display_type":"write","group_name":"Compliance","name":"data_scanner_write","restricted":false}},{"id":"7df222b6-a45c-11eb-a0af-da7ad0900002","type":"permissions","attributes":{"created":"2021-04-23T17:51:12.18734Z","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 \u0026 unsubscribing from apps in the marketplace, and enabling \u0026 disabling Remote Configuration for the entire organization.","display_name":"Org Management","display_type":"write","group_name":"Access Management","name":"org_management","restricted":false}},{"id":"98b984f4-b16d-11eb-a2c6-da7ad0900002","type":"permissions","attributes":{"created":"2021-05-10T08:56:23.676833Z","description":"Read Security Filters.","display_name":"Security Filters Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_filters_read","restricted":false}},{"id":"98b984f5-b16d-11eb-a2c6-da7ad0900002","type":"permissions","attributes":{"created":"2021-05-10T08:56:23.680551Z","description":"Create, edit, and delete Security Filters.","display_name":"Security Filters Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_filters_write","restricted":false}},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.255499Z","description":"View incidents in Datadog.","display_name":"Incidents Read","display_type":"read","group_name":"Case and Incident Management","name":"incident_read","restricted":true}},{"id":"12efc211-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.264369Z","description":"Create, view, and manage incidents in Datadog.","display_name":"Incidents Write","display_type":"write","group_name":"Case and Incident Management","name":"incident_write","restricted":false}},{"id":"12efc20f-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.259568Z","description":"View Incident Settings.","display_name":"Incident Settings Read","display_type":"read","group_name":"Case and Incident Management","name":"incident_settings_read","restricted":false}},{"id":"12efc210-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.261986Z","description":"Configure Incident Settings.","display_name":"Incident Settings Write","display_type":"write","group_name":"Case and Incident Management","name":"incident_settings_write","restricted":false}},{"id":"97971c1c-e895-11eb-b13c-da7ad0900002","type":"permissions","attributes":{"created":"2021-07-19T13:31:15.595771Z","description":"View Application Security Management Event Rules.","display_name":"Application Security Management Event Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_event_rule_read","restricted":false}},{"id":"97971c1d-e895-11eb-b13c-da7ad0900002","type":"permissions","attributes":{"created":"2021-07-19T13:31:15.598808Z","description":"Edit Application Security Management Event Rules.","display_name":"Application Security Management Event Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_event_rule_write","restricted":false}},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions","attributes":{"created":"2021-08-02T09:46:07.671535Z","description":"View RUM Applications data.","display_name":"RUM Apps Read","display_type":"read","group_name":"Real User Monitoring","name":"rum_apps_read","restricted":true}},{"id":"7605ef25-f376-11eb-b90b-da7ad0900002","type":"permissions","attributes":{"created":"2021-08-02T09:46:07.67464Z","description":"View Session Replays.","display_name":"RUM Session Replay Read","display_type":"read","group_name":"Real User Monitoring","name":"rum_session_replay_read","restricted":false}},{"id":"c95412b8-16c7-11ec-85c0-da7ad0900002","type":"permissions","attributes":{"created":"2021-09-16T08:26:27.366789Z","description":"Read Notification Rules.","display_name":"Security Notification Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_notification_profiles_read","restricted":false}},{"id":"c95412b9-16c7-11ec-85c0-da7ad0900002","type":"permissions","attributes":{"created":"2021-09-16T08:26:27.369359Z","description":"Create, edit, and delete Notification Rules.","display_name":"Security Notification Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_notification_profiles_write","restricted":false}},{"id":"26c79920-1703-11ec-85d2-da7ad0900002","type":"permissions","attributes":{"created":"2021-09-16T15:31:24.458963Z","description":"Create custom metrics from spans.","display_name":"APM Generate Metrics","display_type":"write","group_name":"APM","name":"apm_generate_metrics","restricted":false}},{"id":"f4473c60-4792-11ec-a27b-da7ad0900002","type":"permissions","attributes":{"created":"2021-11-17T10:41:43.074031Z","description":"Read Cloud Workload Security Agent Rules.","display_name":"Cloud Workload Security Agent Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_cws_agent_rules_read","restricted":false}},{"id":"f4473c61-4792-11ec-a27b-da7ad0900002","type":"permissions","attributes":{"created":"2021-11-17T10:41:43.077905Z","description":"Create, edit, and delete Cloud Workload Security Agent Rules.","display_name":"Cloud Workload Security Agent Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_cws_agent_rules_write","restricted":false}},{"id":"020a563c-56a4-11ec-a982-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-06T14:51:35.049129Z","description":"Add and change APM pipeline configurations.","display_name":"APM Pipelines Write","display_type":"write","group_name":"APM","name":"apm_pipelines_write","restricted":false}},{"id":"8e4d6b6e-5750-11ec-a9f4-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-07T11:26:43.807269Z","description":"View APM pipeline configurations.","display_name":"APM Pipelines Read","display_type":"read","group_name":"APM","name":"apm_pipelines_read","restricted":false}},{"id":"945b3bb4-5884-11ec-aa6d-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-09T00:11:38.956827Z","description":"View pipelines in your organization.","display_name":"Observability Pipelines Read","display_type":"read","group_name":"Observability Pipelines","name":"observability_pipelines_read","restricted":false}},{"id":"945b3bb5-5884-11ec-aa6d-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-09T00:11:38.960833Z","description":"Edit pipelines in your organization.","display_name":"Observability Pipelines Write","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_write","restricted":false}},{"id":"f6e917a8-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.058412Z","description":"View workflows.","display_name":"Workflows Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"workflows_read","restricted":false}},{"id":"f6e917aa-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.061765Z","description":"Create, edit, and delete workflows.","display_name":"Workflows Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"workflows_write","restricted":false}},{"id":"f6e917a9-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.060079Z","description":"Run workflows.","display_name":"Workflows Run","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"workflows_run","restricted":false}},{"id":"f6e917a6-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.053432Z","description":"List and view available connections. Connections contain secrets that cannot be revealed.","display_name":"Connections Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"connections_read","restricted":false}},{"id":"f6e917a7-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.05659Z","description":"Create and delete connections.","display_name":"Connections Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"connections_write","restricted":false}},{"id":"7a89ec40-8b69-11ec-812d-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-11T18:36:08.531989Z","description":"Access all private incidents in Datadog, even when not added as a responder.","display_name":"Private Incidents Global Access","display_type":"read","group_name":"Case and Incident Management","name":"incidents_private_global_access","restricted":false}},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions","attributes":{"created":"2022-03-02T18:51:05.04095Z","description":"View notebooks.","display_name":"Notebooks Read","display_type":"read","group_name":"Notebooks","name":"notebooks_read","restricted":true}},{"id":"b6bf9ac7-9a59-11ec-8480-da7ad0900002","type":"permissions","attributes":{"created":"2022-03-02T18:51:05.044683Z","description":"Create and change notebooks.","display_name":"Notebooks Write","display_type":"write","group_name":"Notebooks","name":"notebooks_write","restricted":false}},{"id":"e35c06b0-966b-11ec-83c9-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-25T18:51:06.176019Z","description":"Delete data from your Logs, including entire indexes.","display_name":"Logs Delete Data","display_type":"write","group_name":"Log Management","name":"logs_delete_data","restricted":false}},{"id":"2108215e-b9b4-11ec-958e-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-11T16:26:24.106645Z","description":"Create custom metrics from RUM events.","display_name":"RUM Generate Metrics","display_type":"write","group_name":"Real User Monitoring","name":"rum_generate_metrics","restricted":false}},{"id":"7b1f5086-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.278829Z","description":"Add or remove but not edit AWS integration configurations.","display_name":"AWS Configurations Manage","display_type":"write","group_name":"Integrations","name":"aws_configurations_manage","restricted":false}},{"id":"7b1f5088-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.284056Z","description":"Add or remove but not edit Azure integration configurations.","display_name":"Azure Configurations Manage","display_type":"write","group_name":"Integrations","name":"azure_configurations_manage","restricted":false}},{"id":"7b1f5087-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.282282Z","description":"Add or remove but not edit GCP integration configurations.","display_name":"GCP Configurations Manage","display_type":"write","group_name":"Integrations","name":"gcp_configurations_manage","restricted":false}},{"id":"7b1f5089-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.285834Z","description":"Install, uninstall, and configure integrations.","display_name":"Integrations Manage","display_type":"write","group_name":"Integrations","name":"manage_integrations","restricted":false}},{"id":"1afff448-d5e9-11ec-ae37-da7ad0900002","type":"permissions","attributes":{"created":"2022-05-17T13:56:09.870985Z","description":"Receive notifications and view currently configured notification settings.","display_name":"Usage Notifications Read","display_type":"read","group_name":"Billing and Usage","name":"usage_notifications_read","restricted":false}},{"id":"1afff449-d5e9-11ec-ae37-da7ad0900002","type":"permissions","attributes":{"created":"2022-05-17T13:56:09.876124Z","description":"Receive notifications and configure notification settings.","display_name":"Usage Notifications Write","display_type":"write","group_name":"Billing and Usage","name":"usage_notifications_write","restricted":false}},{"id":"6c87d3da-e5c5-11ec-b1d6-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-06T18:21:03.378896Z","description":"Schedule PDF reports from a dashboard.","display_name":"Dashboards Report Write","display_type":"write","group_name":"Dashboards","name":"generate_dashboard_reports","restricted":false}},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-08T16:20:55.142591Z","description":"View SLOs and status corrections.","display_name":"SLOs Read","display_type":"read","group_name":"Service Level Objectives","name":"slos_read","restricted":true}},{"id":"f8e941d0-e746-11ec-b22d-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-08T16:20:55.143869Z","description":"Create, edit, and delete SLOs.","display_name":"SLOs Write","display_type":"write","group_name":"Service Level Objectives","name":"slos_write","restricted":false}},{"id":"f8e941ce-e746-11ec-b22d-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-08T16:20:55.13941Z","description":"Apply, edit, and delete SLO status corrections. A user with this permission can make status corrections, even if they do not have permission to edit those SLOs.","display_name":"SLOs Status Corrections","display_type":"write","group_name":"Service Level Objectives","name":"slos_corrections","restricted":false}},{"id":"4784b11c-f311-11ec-a5f5-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-23T16:26:48.150556Z","description":"Create, update, and delete monitor configuration policies.","display_name":"Monitor Configuration Policy Write","display_type":"write","group_name":"Monitors","name":"monitor_config_policy_write","restricted":false}},{"id":"ee68fba9-173a-11ed-b00b-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-08T16:55:39.377188Z","description":"Add, modify, and delete service catalog definitions when those definitions are maintained by Datadog.","display_name":"Service Catalog Write","display_type":"write","group_name":"APM","name":"apm_service_catalog_write","restricted":false}},{"id":"ee68fba8-173a-11ed-b00b-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-08T16:55:39.374377Z","description":"View service catalog and service definitions.","display_name":"Service Catalog Read","display_type":"read","group_name":"APM","name":"apm_service_catalog_read","restricted":false}},{"id":"5b2c3e28-1761-11ed-b018-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-08T21:30:42.723663Z","description":"Add and edit forwarding destinations and rules for logs.","display_name":"Logs Write Forwarding Rules","display_type":"write","group_name":"Log Management","name":"logs_write_forwarding_rules","restricted":false}},{"id":"6be119a6-1cd8-11ed-b185-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-15T20:25:36.677197Z","description":"Deprecated. Watchdog Insights endpoints are now OPEN.","display_name":"Watchdog Insights Read","display_type":"read","group_name":"Watchdog","name":"watchdog_insights_read","restricted":false}},{"id":"36e2a22e-248a-11ed-b405-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-25T15:25:56.32517Z","description":"Resolve connections.","display_name":"Connections Resolve","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"connections_resolve","restricted":false}},{"id":"4ee674f6-55d9-11ed-b10d-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.834253Z","description":"View blocked attackers.","display_name":"Application Security Management Protect Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_protect_read","restricted":false}},{"id":"4ee7e46c-55d9-11ed-b10e-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.843656Z","description":"Manage blocked attackers.","display_name":"Application Security Management Protect Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_protect_write","restricted":false}},{"id":"4ee5731c-55d9-11ed-b10b-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.827076Z","description":"View whether Application Security Management has been enabled or disabled on services via 1-click enablement with Remote Configuration.","display_name":"Application Security Management 1-click Enablement Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_activation_read","restricted":false}},{"id":"4ee60688-55d9-11ed-b10c-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.831383Z","description":"Enable or disable Application Security Management on services via 1-click enablement.","display_name":"Application Security Management 1-click Enablement Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_activation_write","restricted":false}},{"id":"99474cc2-5a12-11ed-b547-da7ad0900002","type":"permissions","attributes":{"created":"2022-11-01T18:25:44.584393Z","description":"View and run Apps in App Builder.","display_name":"Apps View","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_run","restricted":false}},{"id":"9948271e-5a12-11ed-b548-da7ad0900002","type":"permissions","attributes":{"created":"2022-11-01T18:25:44.590588Z","description":"Create, edit, and delete Apps in App Builder.","display_name":"Apps Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_write","restricted":false}},{"id":"8247acc4-7a4c-11ed-958f-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T18:40:54.018521Z","description":"View Cases.","display_name":"Cases Read","display_type":"read","group_name":"Case and Incident Management","name":"cases_read","restricted":false}},{"id":"824851a6-7a4c-11ed-9590-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T18:40:54.02328Z","description":"Create and update cases.","display_name":"Cases Write","display_type":"write","group_name":"Case and Incident Management","name":"cases_write","restricted":false}},{"id":"77d5f45e-7a5a-11ed-8abf-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T20:20:49.450768Z","description":"Edit APM Remote Configuration.","display_name":"APM Remote Configuration Write","display_type":"write","group_name":"APM","name":"apm_remote_configuration_write","restricted":false}},{"id":"77d55a44-7a5a-11ed-8abe-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T20:20:49.446298Z","description":"View APM Remote Configuration.","display_name":"APM Remote Configuration Read","display_type":"read","group_name":"APM","name":"apm_remote_configuration_read","restricted":false}},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.149406Z","description":"View CI Visibility.","display_name":"CI Visibility Read","display_type":"read","group_name":"Software Delivery","name":"ci_visibility_read","restricted":true}},{"id":"6c5c1090-7aff-11ed-a5cf-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.157428Z","description":"Edit flaky tests and delete Test Services.","display_name":"CI Visibility Tests Write","display_type":"write","group_name":"Software Delivery","name":"ci_visibility_write","restricted":false}},{"id":"6c59ae72-7aff-11ed-a5cc-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.141217Z","description":"Edit CI Provider settings. Manage GitHub accounts and repositories for enabling CI Visibility and job logs collection.","display_name":"CI Provider Settings Write","display_type":"write","group_name":"Software Delivery","name":"ci_provider_settings_write","restricted":false}},{"id":"6c5b7428-7aff-11ed-a5ce-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.153418Z","description":"Configure CI Visibility settings. Set a repository default branch, enable GitHub comments, and delete test services.","display_name":"CI Visibility Settings Write","display_type":"write","group_name":"Software Delivery","name":"ci_visibility_settings_write","restricted":false}},{"id":"6c5d0892-7aff-11ed-a5d0-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.163771Z","description":"Enable or disable Intelligent Test Runner.","display_name":"Intelligent Test Runner Activation Write","display_type":"write","group_name":"Software Delivery","name":"intelligent_test_runner_activation_write","restricted":false}},{"id":"6c5de654-7aff-11ed-a5d1-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.16943Z","description":"Edit Intelligent Test Runner settings, such as modifying ITR excluded branch list.","display_name":"Intelligent Test Runner Settings Write","display_type":"write","group_name":"Software Delivery","name":"intelligent_test_runner_settings_write","restricted":false}},{"id":"c13a2368-7d61-11ed-b5b7-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-16T16:50:32.545882Z","description":"View data in Continuous Profiler.","display_name":"Continuous Profiler Read","display_type":"read","group_name":"APM","name":"continuous_profiler_read","restricted":false}},{"id":"1d76ecfa-9771-11ed-9c2f-da7ad0900002","type":"permissions","attributes":{"created":"2023-01-18T20:45:59.977837Z","description":"Manage Teams. Create, delete, rename, and edit metadata of all Teams. To control Team membership across all Teams, use the User Access Manage permission.","display_name":"Teams Manage","display_type":"write","group_name":"Teams","name":"teams_manage","restricted":false}},{"id":"ca6bfb3a-b44f-11ed-adb2-da7ad0900002","type":"permissions","attributes":{"created":"2023-02-24T14:30:30.983679Z","description":"View a list of findings that include both misconfigurations and identity risks.","display_name":"Security Monitoring Findings Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_findings_read","restricted":false}},{"id":"4dc3eec6-b468-11ed-8539-da7ad0900002","type":"permissions","attributes":{"created":"2023-02-24T17:25:59.263037Z","description":"View Incidents Notification settings.","display_name":"Incident Notification Settings Read","display_type":"read","group_name":"Case and Incident Management","name":"incident_notification_settings_read","restricted":false}},{"id":"4dc4094c-b468-11ed-853a-da7ad0900002","type":"permissions","attributes":{"created":"2023-02-24T17:25:59.263037Z","description":"Configure Incidents Notification settings.","display_name":"Incident Notification Settings Write","display_type":"write","group_name":"Case and Incident Management","name":"incident_notification_settings_write","restricted":false}},{"id":"35dd33ea-ca2e-11ed-bca0-da7ad0900002","type":"permissions","attributes":{"created":"2023-03-24T10:25:33.934187Z","description":"Edit CI Ingestion Control exclusion filters.","display_name":"CI Visibility Ingestion Control Write","display_type":"write","group_name":"Software Delivery","name":"ci_ingestion_control_write","restricted":false}},{"id":"36bf3d0a-ccc0-11ed-9453-da7ad0900002","type":"permissions","attributes":{"created":"2023-03-27T16:55:44.263627Z","description":"Edit Error Tracking issues.","display_name":"Error Tracking Issue Write","display_type":"write","group_name":"Error Tracking","name":"error_tracking_write","restricted":false}},{"id":"f416f55e-db3f-11ed-8028-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-15T03:45:24.289668Z","description":"Manage Watchdog Alerts.","display_name":"Watchdog Alerts Write","display_type":"write","group_name":"Watchdog","name":"watchdog_alerts_write","restricted":false}},{"id":"f416b1ac-db3f-11ed-8027-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-15T03:45:24.289668Z","description":"Modify Saved Views across all Datadog products.","display_name":"Saved Views Write","display_type":"write","group_name":"Cross-Product Features","name":"saved_views_write","restricted":false}},{"id":"4e61a95e-de98-11ed-aa23-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-19T09:55:24.976379Z","description":"Read Client Tokens. Unlike API keys, client tokens may be exposed client-side in JavaScript code for web browsers and other clients to send data to Datadog.","display_name":"Client Tokens Read","display_type":"read","group_name":"API and Application Keys","name":"client_tokens_read","restricted":false}},{"id":"4e61ea18-de98-11ed-aa24-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-19T09:55:24.976379Z","description":"Create and edit Client Tokens. Unlike API keys, client tokens may be exposed client-side in JavaScript code for web browsers and other clients to send data to Datadog.","display_name":"Client Tokens Write","display_type":"write","group_name":"API and Application Keys","name":"client_tokens_write","restricted":false}},{"id":"a4316eb8-f438-11ed-8af2-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-16T22:26:02.839419Z","description":"Read Event Correlation Configuration data such as Correlation Rules and Settings.","display_name":"Event Correlation Config Read","display_type":"read","group_name":"Events","name":"event_correlation_config_read","restricted":false}},{"id":"a431bf12-f438-11ed-8af3-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-16T22:26:02.839419Z","description":"Manage Event Correlation Configuration such as Correlation Rules and Settings.","display_name":"Event Correlation Config Write","display_type":"write","group_name":"Events","name":"event_correlation_config_write","restricted":false}},{"id":"8352cf04-f6ac-11ed-9ec7-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-20T01:20:31.639587Z","description":"Manage general event configuration such as API Emails.","display_name":"Event Config Write","display_type":"write","group_name":"Events","name":"event_config_write","restricted":false}},{"id":"3a48350c-f9bc-11ed-b81c-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-23T22:50:34.532448Z","description":"Mute CSPM Findings.","display_name":"Security Monitoring Findings Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_findings_write","restricted":false}},{"id":"a773e3d8-fff2-11ed-965c-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-31T20:35:17.490437Z","description":"View Cloud Cost pages. This does not restrict access to the cloud cost data source in dashboards and notebooks.","display_name":"Cloud Cost Management Read","display_type":"read","group_name":"Cloud Cost Management","name":"cloud_cost_management_read","restricted":false}},{"id":"a77452c8-fff2-11ed-965d-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-31T20:35:17.490437Z","description":"Configure cloud cost accounts and global customizations.","display_name":"Cloud Cost Management Write","display_type":"write","group_name":"Cloud Cost Management","name":"cloud_cost_management_write","restricted":false}},{"id":"a51b375a-ff73-11ed-8c18-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-31T05:26:07.469293Z","description":"Add and change tags on hosts.","display_name":"Host Tags Write","display_type":"write","group_name":"Metrics","name":"host_tags_write","restricted":false}},{"id":"61f9891a-0070-11ee-9c3f-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-01T11:35:17.513706Z","description":"Create CI Visibility pipeline spans using the API.","display_name":"CI Visibility Pipelines Write","display_type":"write","group_name":"Software Delivery","name":"ci_visibility_pipelines_write","restricted":false}},{"id":"1377d9e4-0ec7-11ee-aebc-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-19T17:31:08.295856Z","description":"View Quality Gate Rules.","display_name":"Quality Gate Rules Read","display_type":"read","group_name":"Software Delivery","name":"quality_gate_rules_read","restricted":false}},{"id":"1377ff28-0ec7-11ee-aebd-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-19T17:31:08.295856Z","description":"Edit Quality Gate Rules.","display_name":"Quality Gate Rules Write","display_type":"write","group_name":"Software Delivery","name":"quality_gate_rules_write","restricted":false}},{"id":"cc8cd958-11eb-11ee-ade2-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-23T17:31:34.182629Z","description":"Edit metadata on metrics.","display_name":"Metrics Metadata Write","display_type":"write","group_name":"Metrics","name":"metrics_metadata_write","restricted":false}},{"id":"b1adb6e8-0949-11ee-b2c5-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-12T17:51:01.32545Z","description":"Delete data from RUM.","display_name":"RUM Delete Data","display_type":"write","group_name":"Real User Monitoring","name":"rum_delete_data","restricted":false}},{"id":"b1ad77e6-0949-11ee-b2c3-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-12T17:51:01.32545Z","description":"Update status or assignee of vulnerabilities.","display_name":"Vulnerability Management Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_vm_write","restricted":false}},{"id":"b1adb5da-0949-11ee-b2c4-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-12T17:51:01.32545Z","description":"Create or modify Reference Tables.","display_name":"Reference Tables Write","display_type":"write","group_name":"Reference Tables","name":"reference_tables_write","restricted":false}},{"id":"0efeff18-1cec-11ee-992d-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-07T17:31:08.450865Z","description":"Create, update, and delete RUM playlists. Add and remove sessions from RUM playlists.","display_name":"RUM Playlist Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_playlist_write","restricted":false}},{"id":"6c5ce898-21a4-11ee-99ef-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-13T17:40:57.140947Z","description":"Delete pipelines from your organization.","display_name":"Observability Pipelines Delete","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_delete","restricted":false}},{"id":"6c5ce992-21a4-11ee-99f0-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-13T17:40:57.140947Z","description":"Deploy pipelines in your organization.","display_name":"Observability Pipelines Deploy","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_deploy","restricted":false}},{"id":"785177a6-20da-11ee-bed7-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-12T17:35:18.858294Z","description":"Create custom metrics from processes.","display_name":"Processes Generate Metrics","display_type":"write","group_name":"Processes","name":"processes_generate_metrics","restricted":false}},{"id":"7850e390-20da-11ee-bed6-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-12T17:35:18.858294Z","description":"Delete API Keys for your organization.","display_name":"API Keys Delete","display_type":"write","group_name":"API and Application Keys","name":"api_keys_delete","restricted":false}},{"id":"6c5c79b2-21a4-11ee-99ee-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-13T17:40:57.140947Z","description":"Collect an Agent flare with Fleet Automation.","display_name":"Agent Flare Collection","display_type":"write","group_name":"Fleet Automation","name":"agent_flare_collection","restricted":false}},{"id":"807a82d8-2724-11ee-84ec-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-20T17:40:22.283891Z","description":"Control which organizations can query your organization''s data.","display_name":"Org Connections Write","display_type":"write","group_name":"Access Management","name":"org_connections_write","restricted":false}},{"id":"8079f2e6-2724-11ee-84eb-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-20T17:40:22.283891Z","description":"View which organizations can query data from your organization. Query data from other organizations.","display_name":"Org Connections Read","display_type":"read","group_name":"Access Management","name":"org_connections_read","restricted":false}},{"id":"1b8f54cc-2ca4-11ee-9e72-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-27T17:36:24.369352Z","description":"Manage facets for products other than Log Management, such as APM Traces. To modify Log Facets, use Logs Write Facets.","display_name":"Facets Write","display_type":"write","group_name":"Cross-Product Features","name":"facets_write","restricted":false}},{"id":"de0e73c2-3d23-11ee-aa7d-da7ad0900002","type":"permissions","attributes":{"created":"2023-08-17T17:31:15.369551Z","description":"Read Rule Suppressions.","display_name":"Security Suppressions Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_suppressions_read","restricted":false}},{"id":"de0eb666-3d23-11ee-aa7e-da7ad0900002","type":"permissions","attributes":{"created":"2023-08-17T17:31:15.369551Z","description":"Write Rule Suppressions.","display_name":"Security Suppressions Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_suppressions_write","restricted":false}},{"id":"5356dfd2-3dee-11ee-b07b-da7ad0900002","type":"permissions","attributes":{"created":"2023-08-18T17:40:30.474557Z","description":"Edit Static Analysis settings.","display_name":"Static Analysis Settings Write","display_type":"write","group_name":"Software Delivery","name":"static_analysis_settings_write","restricted":false}},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions","attributes":{"created":"2023-09-09T00:06:00.708335Z","description":"View CD Visibility.","display_name":"CD Visibility Read","display_type":"read","group_name":"Software Delivery","name":"cd_visibility_read","restricted":true}},{"id":"263eff86-6925-11ee-acc0-da7ad0900002","type":"permissions","attributes":{"created":"2023-10-12T17:31:17.142666Z","description":"Write NDM Netflow port mappings.","display_name":"NDM Netflow Port Mappings Write","display_type":"write","group_name":"Network Device Monitoring","name":"ndm_netflow_port_mappings_write","restricted":false}},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions","attributes":{"created":"2023-10-13T17:31:17.311029Z","description":"View infrastructure, application code and library vulnerabilities. This does not restrict access to the vulnerability data source through the API or inventory SQL.","display_name":"Vulnerability Management Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_vm_read","restricted":true}},{"id":"7c7836fc-6f6e-11ee-8cdd-da7ad0900002","type":"permissions","attributes":{"created":"2023-10-20T17:31:22.039614Z","description":"Create or modify Dynamic Instrumentation probes that capture function state: local variables, method arguments, fields, and return value or thrown exception.","display_name":"Dynamic Instrumentation Capture Variables","display_type":"write","group_name":"APM","name":"debugger_capture_variables","restricted":false}},{"id":"10098bc8-984b-11ee-9b69-da7ad0900002","type":"permissions","attributes":{"created":"2023-12-11T17:31:05.405902Z","description":"Disable Error Tracking, edit inclusion filters, and edit rate limit.","display_name":"Error Tracking Settings Write","display_type":"write","group_name":"Error Tracking","name":"error_tracking_settings_write","restricted":false}},{"id":"10091e90-984b-11ee-9b68-da7ad0900002","type":"permissions","attributes":{"created":"2023-12-11T17:31:05.405902Z","description":"Add or change Error Tracking exclusion filters.","display_name":"Error Tracking Exclusion Filters Write","display_type":"write","group_name":"Error Tracking","name":"error_tracking_exclusion_filters_write","restricted":false}},{"id":"1b572396-ba15-11ee-9e19-da7ad0900002","type":"permissions","attributes":{"created":"2024-01-23T17:30:31.083178Z","description":"View integrations and their configurations.","display_name":"Integrations Read","display_type":"read","group_name":"Integrations","name":"integrations_read","restricted":false}},{"id":"bdda759a-c1f0-11ee-b428-da7ad0900002","type":"permissions","attributes":{"created":"2024-02-02T17:30:21.655244Z","description":"Add, modify, and delete API catalog definitions.","display_name":"API Catalog Write","display_type":"write","group_name":"APM","name":"apm_api_catalog_write","restricted":false}},{"id":"bdda0cea-c1f0-11ee-b427-da7ad0900002","type":"permissions","attributes":{"created":"2024-02-02T17:30:21.655244Z","description":"View API catalog and API definitions.","display_name":"API Catalog Read","display_type":"read","group_name":"APM","name":"apm_api_catalog_read","restricted":false}},{"id":"27b95c32-ccf1-11ee-ae65-da7ad0900002","type":"permissions","attributes":{"created":"2024-02-16T17:31:02.07009Z","description":"Create or edit trend metrics from container images.","display_name":"Containers Write Image Trend Metrics","display_type":"write","group_name":"Containers","name":"containers_generate_image_metrics","restricted":false}},{"id":"a82d01ce-e228-11ee-870e-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-14T17:31:14.314721Z","description":"Extend the retention of Session Replays.","display_name":"RUM Session Replay Extend Retention","display_type":"write","group_name":"Real User Monitoring","name":"rum_extend_retention","restricted":false}},{"id":"50c173fc-e54d-11ee-bb23-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-18T17:31:12.515412Z","description":"View and search Private Action Runners for Workflow Automation and App Builder.","display_name":"Private Action Runner Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"on_prem_runner_read","restricted":false}},{"id":"50c1dd10-e54d-11ee-bb24-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-18T17:31:12.515412Z","description":"Attach a Private Action Runner to a connection.","display_name":"Private Action Runner Use","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"on_prem_runner_use","restricted":false}},{"id":"50c1e0b2-e54d-11ee-bb25-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-18T17:31:12.515412Z","description":"Create and edit Private Action Runners for Workflow Automation and App Builder.","display_name":"Private Action Runner Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"on_prem_runner_write","restricted":false}},{"id":"ca06b2b4-f5cd-11ee-9e77-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-08T17:31:10.159381Z","description":"Edit the settings for DORA.","display_name":"DORA Settings Write","display_type":"write","group_name":"Software Delivery","name":"dora_settings_write","restricted":false}},{"id":"ce892b8a-00ce-11ef-8fca-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-22T17:36:10.012624Z","description":"Upgrade Datadog Agents with Fleet Automation.","display_name":"Agent Upgrade","display_type":"write","group_name":"Fleet Automation","name":"agent_upgrade_write","restricted":false}},{"id":"f5f475d4-0197-11ef-be1f-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).","display_name":"Read Continuous Profiler Profile-Guided Optimization (PGO) Data","display_type":"read","group_name":"APM","name":"continuous_profiler_pgo_read","restricted":false}},{"id":"f5f4d31c-0197-11ef-be20-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"Add or remove but not edit Oracle Cloud integration configurations.","display_name":"OCI Configurations Manage","display_type":"write","group_name":"Integrations","name":"oci_configurations_manage","restricted":false}},{"id":"f5f4e8fc-0197-11ef-be21-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit AWS integration configurations.","display_name":"AWS Configuration Read","display_type":"read","group_name":"Integrations","name":"aws_configuration_read","restricted":false}},{"id":"f5f4e9a6-0197-11ef-be22-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit Azure integration configurations.","display_name":"Azure Configuration Read","display_type":"read","group_name":"Integrations","name":"azure_configuration_read","restricted":false}},{"id":"f5f4ec44-0197-11ef-be23-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit GCP integration configurations.","display_name":"GCP Configuration Read","display_type":"read","group_name":"Integrations","name":"gcp_configuration_read","restricted":false}},{"id":"f5f4f068-0197-11ef-be24-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit Oracle Cloud integration configurations.","display_name":"OCI Configuration Read","display_type":"read","group_name":"Integrations","name":"oci_configuration_read","restricted":false}},{"id":"e2310daa-08a9-11ef-8653-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove AWS integration configurations.","display_name":"AWS Configuration Edit","display_type":"write","group_name":"Integrations","name":"aws_configuration_edit","restricted":false}},{"id":"e23194fa-08a9-11ef-8654-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove Azure integration configurations.","display_name":"Azure Configuration Edit","display_type":"write","group_name":"Integrations","name":"azure_configuration_edit","restricted":false}},{"id":"e2319608-08a9-11ef-8655-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove GCP integration configurations.","display_name":"GCP Configuration Edit","display_type":"write","group_name":"Integrations","name":"gcp_configuration_edit","restricted":false}},{"id":"e231ca6a-08a9-11ef-8656-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove Oracle Cloud integration configurations.","display_name":"OCI Configuration Edit","display_type":"write","group_name":"Integrations","name":"oci_configuration_edit","restricted":false}},{"id":"8c3a9cde-0973-11ef-a2be-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-03T17:35:35.030875Z","description":"View LLM Observability.","display_name":"LLM Observability Read","display_type":"read","group_name":"LLM Observability","name":"llm_observability_read","restricted":false}},{"id":"cb5a53dc-13aa-11ef-9749-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-16T17:36:14.883078Z","description":"Manage your organization''s flex logs configuration.","display_name":"Flex Logs Configuration Write","display_type":"write","group_name":"Log Management","name":"flex_logs_config_write","restricted":false}},{"id":"3cf14194-2298-11ef-9d71-da7ad0900002","type":"permissions","attributes":{"created":"2024-06-04T17:31:12.458506Z","description":"View Reference Tables.","display_name":"Reference Tables Read","display_type":"read","group_name":"Reference Tables","name":"reference_tables_read","restricted":false}},{"id":"2757c192-389a-11ef-b37c-da7ad0900002","type":"permissions","attributes":{"created":"2024-07-02T17:40:20.794842Z","description":"Create Fleet Automation Policies.","display_name":"Fleet Policies Write","display_type":"write","group_name":"Fleet Automation","name":"fleet_policies_write","restricted":false}},{"id":"27583ae6-389a-11ef-b37d-da7ad0900002","type":"permissions","attributes":{"created":"2024-07-02T17:40:20.794842Z","description":"Enable, disable and update custom resource indexing.","display_name":"Custom Resource Definition Write","display_type":"write","group_name":"Orchestration","name":"orchestration_custom_resource_definitions_write","restricted":false}},{"id":"ce67705a-5419-11ef-8c73-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-06T17:32:08.55681Z","description":"View Code Analysis.","display_name":"Code Analysis Read","display_type":"read","group_name":"Software Delivery","name":"code_analysis_read","restricted":false}},{"id":"ce67efb2-5419-11ef-8c74-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-06T17:32:08.55681Z","description":"Enable, disable, and configure workload autoscaling. Apply workload scaling recommendations.","display_name":"Workload Scaling Write","display_type":"write","group_name":"Orchestration","name":"orchestration_workload_scaling_write","restricted":false}},{"id":"ad8b4c4a-5990-11ef-b34b-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-13T16:25:39.351685Z","description":"Create, Update, and Delete LLM Observability resources including User Defined Evaluations, OOTB Evaluations, and User Defined Topics.","display_name":"LLM Observability Write","display_type":"write","group_name":"LLM Observability","name":"llm_observability_write","restricted":false}},{"id":"5377e20c-6563-11ef-bd11-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-28T17:31:14.83001Z","description":"View captured events of pipelines in your organization.","display_name":"Observability Pipelines Live Capture Read","display_type":"read","group_name":"Observability Pipelines","name":"observability_pipelines_capture_read","restricted":false}},{"id":"53784710-6563-11ef-bd12-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-28T17:31:14.83001Z","description":"Capture live events of pipelines in your organization.","display_name":"Observability Pipelines Live Capture Write","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_capture_write","restricted":false}},{"id":"bf446b0a-60ad-11ef-83c4-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-22T17:41:22.628257Z","description":"Allows read access to the data within the Actions Datastore.","display_name":"Actions Datastore Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"apps_datastore_read","restricted":false}},{"id":"bf446e2a-60ad-11ef-83c5-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-22T17:41:22.628257Z","description":"Allows modification of data within the Actions Datastore, including adding, editing, and deleting records.","display_name":"Actions Datastore Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_datastore_write","restricted":false}},{"id":"bf4407e6-60ad-11ef-83c3-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-22T17:41:22.628257Z","description":"Allows management of the Actions Datastore, including creating, updating, and deleting the datastore itself.","display_name":"Actions Datastore Manage","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_datastore_manage","restricted":false}},{"id":"5dffba8a-66f6-11ef-8976-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-30T17:36:19.679492Z","description":"View Security Pipelines.","display_name":"Security Pipelines Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_pipelines_read","restricted":false}},{"id":"5e0024fc-66f6-11ef-8977-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-30T17:36:19.679492Z","description":"Create, edit, and delete Security Pipelines.","display_name":"Security Pipelines Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_pipelines_write","restricted":false}},{"id":"503d01ea-751b-11ef-85ac-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-17T17:36:04.251012Z","description":"Create, delete and update connection groups.","display_name":"Connection Groups Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"connection_groups_write","restricted":false}},{"id":"479d4934-79e2-11ef-98d5-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-23T19:30:24.281417Z","description":"Allow quality gates evaluations.","display_name":"Quality Gates Evaluations","display_type":"read","group_name":"Software Delivery","name":"quality_gates_evaluations_read","restricted":false}},{"id":"bdc2acbe-7c1f-11ef-b362-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-26T15:55:24.124953Z","description":"Read and use connection groups.","display_name":"Connection Groups Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"connection_groups_read","restricted":false}},{"id":"824e509c-7c5c-11ef-ba38-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-26T23:10:23.67733Z","description":"Managing actions on Cloud Workload Security Agent Rules.","display_name":"Cloud Workload Security Agent Actions","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_cws_agent_rules_actions","restricted":false}},{"id":"a91ee0ba-8184-11ef-ac5a-da7ad0900002","type":"permissions","attributes":{"created":"2024-10-03T12:40:24.480611Z","description":"View RUM Retention filters data.","display_name":"RUM Retention Filters Read","display_type":"read","group_name":"Real User Monitoring","name":"rum_retention_filters_read","restricted":false}},{"id":"a91f5112-8184-11ef-ac5b-da7ad0900002","type":"permissions","attributes":{"created":"2024-10-03T12:40:24.480611Z","description":"Write RUM Retention filters.","display_name":"RUM Retention Filters Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_retention_filters_write","restricted":false}},{"id":"bc3f9ed4-8a3d-11ef-b5a4-da7ad0900002","type":"permissions","attributes":{"created":"2024-10-14T15:05:22.769126Z","description":"View and use DDSQL Editor.","display_name":"DDSQL Editor Read","display_type":"read","group_name":"DDSQL Editor","name":"ddsql_editor_read","restricted":false}},{"id":"a8c986a6-989a-11ef-873e-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-01T21:45:49.593207Z","description":"View the disaster recovery status.","display_name":"Datadog Disaster Recovery Read","display_type":"read","group_name":"Disaster Recovery","name":"disaster_recovery_status_read","restricted":false}},{"id":"a8ca1fda-989a-11ef-873f-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-01T21:45:49.593207Z","description":"Update the disaster recovery status.","display_name":"Datadog Disaster Recovery Write","display_type":"write","group_name":"Disaster Recovery","name":"disaster_recovery_status_write","restricted":false}},{"id":"ebae5be2-9d16-11ef-9394-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-07T14:45:24.068066Z","description":"Write RUM Settings.","display_name":"RUM Settings Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_settings_write","restricted":false}},{"id":"ebaf0448-9d16-11ef-9397-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-07T14:45:24.068066Z","description":"View Test Optimization.","display_name":"Test Optimization Read","display_type":"read","group_name":"Software Delivery","name":"test_optimization_read","restricted":false}},{"id":"ebaf05ba-9d16-11ef-9398-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-07T14:45:24.068066Z","description":"Manage flaky tests for Test Optimization.","display_name":"Test Optimization Write","display_type":"write","group_name":"Software Delivery","name":"test_optimization_write","restricted":false}},{"id":"09e34b76-a6b4-11ef-8ab9-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-19T20:22:46.198145Z","description":"Create, delete and update Test Optimization settings.","display_name":"Test Optimization Settings Write","display_type":"write","group_name":"Software Delivery","name":"test_optimization_settings_write","restricted":false}},{"id":"8babfb74-a90e-11ef-b4c3-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-22T20:15:40.970745Z","description":"Write comments into vulnerabilities.","display_name":"Security Comments Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_comments_write","restricted":false}},{"id":"8baca0ba-a90e-11ef-b4c4-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-22T20:15:40.970745Z","description":"Read comments of vulnerabilities.","display_name":"Security Comments Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_comments_read","restricted":false}},{"id":"6595b70a-b7fe-11ef-977d-da7ad0900002","type":"permissions","attributes":{"created":"2024-12-11T20:27:52.565232Z","description":"View Logs Workspaces.","display_name":"Read Logs Workspaces","display_type":"read","group_name":"Log Management","name":"logs_read_workspaces","restricted":false}},{"id":"6596753c-b7fe-11ef-977e-da7ad0900002","type":"permissions","attributes":{"created":"2024-12-11T20:27:52.565232Z","description":"Create, update, and delete Logs Workspaces.","display_name":"Write Logs Workspaces","display_type":"write","group_name":"Log Management","name":"logs_write_workspaces","restricted":false}},{"id":"bccba216-cd37-11ef-b636-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-07T20:41:14.612376Z","description":"View Audience Management data.","display_name":"Profiles Read","display_type":"read","group_name":"Product Analytics","name":"audience_management_read","restricted":false}},{"id":"bccc2ee8-cd37-11ef-b637-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-07T20:41:14.612376Z","description":"Modify Audience Management data.","display_name":"Profiles Write","display_type":"write","group_name":"Product Analytics","name":"audience_management_write","restricted":false}},{"id":"8da487f0-d2af-11ef-91c8-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-14T19:41:30.924708Z","description":"Read logs configuration.","display_name":"Logs Configuration Read","display_type":"read","group_name":"Log Management","name":"logs_read_config","restricted":false}},{"id":"1c23f168-da90-11ef-910a-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-24T20:16:35.403038Z","description":"View On-Call teams, schedules, escalation policies and overrides.","display_name":"On-Call Read","display_type":"read","group_name":"On-Call","name":"on_call_read","restricted":false}},{"id":"1c248fc4-da90-11ef-910b-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-24T20:16:35.403038Z","description":"Create, update, and delete On-Call teams, schedules and escalation policies.","display_name":"On-Call Write","display_type":"write","group_name":"On-Call","name":"on_call_write","restricted":false}},{"id":"1c24b292-da90-11ef-910c-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-24T20:16:35.403038Z","description":"Page On-Call teams and users.","display_name":"On-Call Page","display_type":"write","group_name":"On-Call","name":"on_call_page","restricted":false}},{"id":"66c075bc-e296-11ef-bba7-da7ad0900002","type":"permissions","attributes":{"created":"2025-02-04T01:21:46.862659Z","description":"Acknowledge, resolve pages and edit overrides. Allow users to configure their On-Call profile.","display_name":"On-Call Responder","display_type":"write","group_name":"On-Call","name":"on_call_respond","restricted":false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: 200 OK + code: 200 + duration: 121.029042ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 411 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: | + {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"restricted_roles":["9a0be27e-f387-11ef-ac8c-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard + method: POST + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"7ae-fvh-m36","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/7ae-fvh-m36/tf-testaccdatadogdashboardrbaccreaterbac-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":4969628006494380}],"notify_list":[],"created_at":"2025-02-25T14:48:41.382645+00:00","modified_at":"2025-02-25T14:48:41.382645+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9a0be27e-f387-11ef-ac8c-da7ad0900002"]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 294.764125ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/7ae-fvh-m36 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"7ae-fvh-m36","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/7ae-fvh-m36/tf-testaccdatadogdashboardrbaccreaterbac-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":4969628006494380}],"notify_list":[],"created_at":"2025-02-25T14:48:41.382645+00:00","modified_at":"2025-02-25T14:48:41.382645+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9a0be27e-f387-11ef-ac8c-da7ad0900002"]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 167.751167ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/7ae-fvh-m36 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"7ae-fvh-m36","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/7ae-fvh-m36/tf-testaccdatadogdashboardrbaccreaterbac-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":4969628006494380}],"notify_list":[],"created_at":"2025-02-25T14:48:41.382645+00:00","modified_at":"2025-02-25T14:48:41.382645+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9a0be27e-f387-11ef-ac8c-da7ad0900002"]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 178.83325ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v2/roles/9a0be27e-f387-11ef-ac8c-da7ad0900002 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 1065 + uncompressed: false + body: '{"data":{"id":"9a0be27e-f387-11ef-ac8c-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:40.238274Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-25T14:48:40.237668Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + headers: + Content-Type: + - application/vnd.api+json + status: 200 OK + code: 200 + duration: 124.93475ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/7ae-fvh-m36 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"7ae-fvh-m36","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/7ae-fvh-m36/tf-testaccdatadogdashboardrbaccreaterbac-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":4969628006494380}],"notify_list":[],"created_at":"2025-02-25T14:48:41.382645+00:00","modified_at":"2025-02-25T14:48:41.382645+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9a0be27e-f387-11ef-ac8c-da7ad0900002"]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 158.771375ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/7ae-fvh-m36 + method: DELETE + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"deleted_dashboard_id":"7ae-fvh-m36"} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 227.139708ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - '*/*' + url: https://api.datadoghq.com/api/v2/roles/9a0be27e-f387-11ef-ac8c-da7ad0900002 + method: DELETE + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: {} + status: 204 No Content + code: 204 + duration: 123.101291ms diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.freeze b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.freeze index 247841659..0ab29c010 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.freeze +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.freeze @@ -1 +1 @@ -2023-04-20T11:11:30.816225-04:00 \ No newline at end of file +2025-02-25T15:48:37.058457+01:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.yaml b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.yaml index bd559e6d7..3a7b0e59e 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.yaml +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.yaml @@ -1,152 +1,289 @@ +--- version: 2 interactions: -- request: - body: | - {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1682003490","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard - method: POST - id: 0 - response: - body: | - {"id":"dcf-44k-d59","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1682003490","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/dcf-44k-d59/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1682003490","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7376476345928432}],"notify_list":[],"created_at":"2023-04-20T15:11:32.181208+00:00","modified_at":"2023-04-20T15:11:32.181208+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/dcf-44k-d59 - method: GET - id: 1 - response: - body: | - {"id":"dcf-44k-d59","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1682003490","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/dcf-44k-d59/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1682003490","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7376476345928432}],"notify_list":[],"created_at":"2023-04-20T15:11:32.181208+00:00","modified_at":"2023-04-20T15:11:32.181208+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/dcf-44k-d59 - method: GET - id: 2 - response: - body: | - {"id":"dcf-44k-d59","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1682003490","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/dcf-44k-d59/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1682003490","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7376476345928432}],"notify_list":[],"created_at":"2023-04-20T15:11:32.181208+00:00","modified_at":"2023-04-20T15:11:32.181208+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/dcf-44k-d59 - method: GET - id: 3 - response: - body: | - {"id":"dcf-44k-d59","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1682003490","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/dcf-44k-d59/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1682003490","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7376476345928432}],"notify_list":[],"created_at":"2023-04-20T15:11:32.181208+00:00","modified_at":"2023-04-20T15:11:32.181208+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: | - {"description":"Created using the Datadog provider in Terraform","id":"dcf-44k-d59","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1682003490","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/dcf-44k-d59 - method: PUT - id: 4 - response: - body: | - {"id":"dcf-44k-d59","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1682003490","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/dcf-44k-d59/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1682003490","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6332877671445596}],"notify_list":[],"created_at":"2023-04-20T15:11:32.181208+00:00","modified_at":"2023-04-20T15:11:35.287773+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/dcf-44k-d59 - method: GET - id: 5 - response: - body: | - {"id":"dcf-44k-d59","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1682003490","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/dcf-44k-d59/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1682003490","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6332877671445596}],"notify_list":[],"created_at":"2023-04-20T15:11:32.181208+00:00","modified_at":"2023-04-20T15:11:35.287773+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/dcf-44k-d59 - method: GET - id: 6 - response: - body: | - {"id":"dcf-44k-d59","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1682003490","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/dcf-44k-d59/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1682003490","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6332877671445596}],"notify_list":[],"created_at":"2023-04-20T15:11:32.181208+00:00","modified_at":"2023-04-20T15:11:35.287773+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/dcf-44k-d59 - method: DELETE - id: 7 - response: - body: | - {"deleted_dashboard_id":"dcf-44k-d59"} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 354 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: | + {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard + method: POST + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"49z-ysb-ywy","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/49z-ysb-ywy/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5758303516866077}],"notify_list":[],"created_at":"2025-02-25T14:48:40.445324+00:00","modified_at":"2025-02-25T14:48:40.445324+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 370.966625ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/49z-ysb-ywy + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"49z-ysb-ywy","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/49z-ysb-ywy/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5758303516866077}],"notify_list":[],"created_at":"2025-02-25T14:48:40.445324+00:00","modified_at":"2025-02-25T14:48:40.445324+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 230.476625ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/49z-ysb-ywy + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"49z-ysb-ywy","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/49z-ysb-ywy/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5758303516866077}],"notify_list":[],"created_at":"2025-02-25T14:48:40.445324+00:00","modified_at":"2025-02-25T14:48:40.445324+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 179.823375ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/49z-ysb-ywy + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"49z-ysb-ywy","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/49z-ysb-ywy/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5758303516866077}],"notify_list":[],"created_at":"2025-02-25T14:48:40.445324+00:00","modified_at":"2025-02-25T14:48:40.445324+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 171.107958ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 385 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: | + {"description":"Created using the Datadog provider in Terraform","id":"49z-ysb-ywy","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/49z-ysb-ywy + method: PUT + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"49z-ysb-ywy","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/49z-ysb-ywy/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2910557929212170}],"notify_list":[],"created_at":"2025-02-25T14:48:40.445324+00:00","modified_at":"2025-02-25T14:48:46.427606+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 384.822583ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/49z-ysb-ywy + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"49z-ysb-ywy","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/49z-ysb-ywy/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2910557929212170}],"notify_list":[],"created_at":"2025-02-25T14:48:40.445324+00:00","modified_at":"2025-02-25T14:48:46.427606+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 160.695375ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/49z-ysb-ywy + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"49z-ysb-ywy","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/49z-ysb-ywy/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2910557929212170}],"notify_list":[],"created_at":"2025-02-25T14:48:40.445324+00:00","modified_at":"2025-02-25T14:48:46.427606+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 190.05525ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/49z-ysb-ywy + method: DELETE + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"deleted_dashboard_id":"49z-ysb-ywy"} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 234.619542ms diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.freeze b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.freeze index f57756e3f..7dc496631 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.freeze +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.freeze @@ -1 +1 @@ -2023-11-16T16:16:41.660527-05:00 \ No newline at end of file +2025-02-25T15:48:37.060412+01:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.yaml b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.yaml index 453bd0feb..06057d0a4 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.yaml +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.yaml @@ -1,394 +1,706 @@ +--- version: 2 interactions: -- request: - body: | - {"description":"Created using the Datadog provider in Terraform","id":"","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1700169401","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard - method: POST - id: 0 - response: - body: | - {"id":"nh6-989-ngw","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1700169401","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/nh6-989-ngw/tf-testaccdatadogdashboardrbacupdatetoopen-local-1700169401","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":1200423953384882}],"notify_list":[],"created_at":"2023-11-16T21:16:45.415252+00:00","modified_at":"2023-11-16T21:16:45.415252+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/nh6-989-ngw - method: GET - id: 1 - response: - body: | - {"id":"nh6-989-ngw","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1700169401","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/nh6-989-ngw/tf-testaccdatadogdashboardrbacupdatetoopen-local-1700169401","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":1200423953384882}],"notify_list":[],"created_at":"2023-11-16T21:16:45.415252+00:00","modified_at":"2023-11-16T21:16:45.415252+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/nh6-989-ngw - method: GET - id: 2 - response: - body: | - {"id":"nh6-989-ngw","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1700169401","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/nh6-989-ngw/tf-testaccdatadogdashboardrbacupdatetoopen-local-1700169401","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":1200423953384882}],"notify_list":[],"created_at":"2023-11-16T21:16:45.415252+00:00","modified_at":"2023-11-16T21:16:45.415252+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/nh6-989-ngw - method: GET - id: 3 - response: - body: | - {"id":"nh6-989-ngw","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1700169401","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/nh6-989-ngw/tf-testaccdatadogdashboardrbacupdatetoopen-local-1700169401","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":1200423953384882}],"notify_list":[],"created_at":"2023-11-16T21:16:45.415252+00:00","modified_at":"2023-11-16T21:16:45.415252+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: | - {"description":"Created using the Datadog provider in Terraform","id":"nh6-989-ngw","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1700169401","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/nh6-989-ngw - method: PUT - id: 4 - response: - body: | - {"id":"nh6-989-ngw","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1700169401","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/nh6-989-ngw/tf-testaccdatadogdashboardrbacupdatetoopen-local-1700169401","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5239325371775205}],"notify_list":[],"created_at":"2023-11-16T21:16:45.415252+00:00","modified_at":"2023-11-16T21:16:51.880067+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/nh6-989-ngw - method: GET - id: 5 - response: - body: | - {"id":"nh6-989-ngw","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1700169401","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/nh6-989-ngw/tf-testaccdatadogdashboardrbacupdatetoopen-local-1700169401","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5239325371775205}],"notify_list":[],"created_at":"2023-11-16T21:16:45.415252+00:00","modified_at":"2023-11-16T21:16:51.880067+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/nh6-989-ngw - method: GET - id: 6 - response: - body: | - {"id":"nh6-989-ngw","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1700169401","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/nh6-989-ngw/tf-testaccdatadogdashboardrbacupdatetoopen-local-1700169401","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5239325371775205}],"notify_list":[],"created_at":"2023-11-16T21:16:45.415252+00:00","modified_at":"2023-11-16T21:16:51.880067+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/nh6-989-ngw - method: GET - id: 7 - response: - body: | - {"id":"nh6-989-ngw","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1700169401","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/nh6-989-ngw/tf-testaccdatadogdashboardrbacupdatetoopen-local-1700169401","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5239325371775205}],"notify_list":[],"created_at":"2023-11-16T21:16:45.415252+00:00","modified_at":"2023-11-16T21:16:51.880067+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: | - {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1700169401"},"relationships":{},"type":"roles"}} - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - url: https://api.datadoghq.com/api/v2/roles - method: POST - id: 8 - response: - body: | - {"data":{"type":"roles","id":"7999d424-84c5-11ee-815e-da7ad0900002","attributes":{"name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1700169401","created_at":"2023-11-16T21:16:57.860508+00:00","modified_at":"2023-11-16T21:16:57.899799+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"},{"type":"permissions","id":"50c270de-69ee-11ee-9151-da7ad0900002"}]}}}} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v2/roles/7999d424-84c5-11ee-815e-da7ad0900002 - method: GET - id: 9 - response: - body: | - {"data":{"type":"roles","id":"7999d424-84c5-11ee-815e-da7ad0900002","attributes":{"name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1700169401","created_at":"2023-11-16T21:16:57.860508+00:00","modified_at":"2023-11-16T21:16:57.899799+00:00","user_count":0},"relationships":{"permissions":{"data":[{"type":"permissions","id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"},{"type":"permissions","id":"4441648c-d8b1-11e9-a77a-1b899a04b304"},{"type":"permissions","id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0"},{"type":"permissions","id":"12efc20e-d36c-11eb-a9b8-da7ad0900002"},{"type":"permissions","id":"7605ef24-f376-11eb-b90b-da7ad0900002"},{"type":"permissions","id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002"},{"type":"permissions","id":"f8e941cf-e746-11ec-b22d-da7ad0900002"},{"type":"permissions","id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002"},{"type":"permissions","id":"50c270de-69ee-11ee-9151-da7ad0900002"}]}}}} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v2/permissions - method: GET - id: 10 - 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":"Deprecated. Standard Access has been replaced by more specific permissions.","created":"2018-10-19T15:35:23.756736+00:00","group_name":"General","display_type":"other","restricted":false}},{"type":"permissions","id":"5e605652-dd12-11e8-9e53-375565b8970e","attributes":{"name":"logs_read_index_data","display_name":"Logs Read Index Data","description":"Read log data, possibly scoped to one or more indexes. In order to read log data, a user must have both this permission and Logs Read Data. This permission can be granted in a limited capacity per index from the Logs interface or APIs. If granted via the Roles interface or API the permission has global scope. Restrictions are limited to the Log Management product.","created":"2018-10-31T13:39:19.727450+00:00","group_name":"Log Management","display_type":"read","restricted":false}},{"type":"permissions","id":"62cc036c-dd12-11e8-9e54-db9995643092","attributes":{"name":"logs_modify_indexes","display_name":"Logs Modify Indexes","description":"Read and modify all indexes in your account. This includes the ability to grant the Logs Read Index Data and Logs Write Exclusion Filters permission to other roles, for some or all indexes.","created":"2018-10-31T13:39:27.148615+00:00","group_name":"Log Management","display_type":"other","restricted":false}},{"type":"permissions","id":"6f66600e-dd12-11e8-9e55-7f30fbb45e73","attributes":{"name":"logs_live_tail","display_name":"Logs Live Tail","description":"View the live tail feed for all log indexes, even if otherwise specifically restricted.","created":"2018-10-31T13:39:48.292879+00:00","group_name":"Log Management","display_type":"read","restricted":false}},{"type":"permissions","id":"7d7c98ac-dd12-11e8-9e56-93700598622d","attributes":{"name":"logs_write_exclusion_filters","display_name":"Logs Write Exclusion Filters","description":"Add and change exclusion filters for all or some log indexes. Can be granted in a limited capacity per index to specific roles via the Logs interface or API. If granted from the Roles interface or API, the permission has global scope.","created":"2018-10-31T13:40:11.926613+00:00","group_name":"Log Management","display_type":"write","restricted":false}},{"type":"permissions","id":"811ac4ca-dd12-11e8-9e57-676a7f0beef9","attributes":{"name":"logs_write_pipelines","display_name":"Logs Write Pipelines","description":"Add and change log pipeline configurations, including the ability to grant the Logs Write Processors permission to other roles, for some or all pipelines.","created":"2018-10-31T13:40:17.996379+00:00","group_name":"Log Management","display_type":"other","restricted":false}},{"type":"permissions","id":"84aa3ae4-dd12-11e8-9e58-a373a514ccd0","attributes":{"name":"logs_write_processors","display_name":"Logs Write Processors","description":"Add and change some or all log processor configurations. Can be granted in a limited capacity per pipeline to specific roles via the Logs interface or API. If granted via the Roles interface or API the permission has global scope.","created":"2018-10-31T13:40:23.969725+00:00","group_name":"Log Management","display_type":"write","restricted":false}},{"type":"permissions","id":"87b00304-dd12-11e8-9e59-cbeb5f71f72f","attributes":{"name":"logs_write_archives","display_name":"Logs Write Archives","description":"Add and edit Log Archives.","created":"2018-10-31T13:40:29.040786+00:00","group_name":"Log Management","display_type":"write","restricted":false}},{"type":"permissions","id":"979df720-aed7-11e9-99c6-a7eb8373165a","attributes":{"name":"logs_generate_metrics","display_name":"Logs Generate Metrics","description":"Create custom metrics from logs.","created":"2019-07-25T12:27:39.640758+00:00","group_name":"Log Management","display_type":"other","restricted":false}},{"type":"permissions","id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","attributes":{"name":"dashboards_read","display_name":"Dashboards Read","description":"View dashboards.","created":"2019-09-10T14:39:51.955175+00:00","group_name":"Dashboards","display_type":"read","restricted":true}},{"type":"permissions","id":"d90f6831-d3d8-11e9-a77a-4fd230ddbc6a","attributes":{"name":"dashboards_write","display_name":"Dashboards Write","description":"Create and change dashboards.","created":"2019-09-10T14:39:51.962944+00:00","group_name":"Dashboards","display_type":"write","restricted":false}},{"type":"permissions","id":"d90f6832-d3d8-11e9-a77a-bf8a2607f864","attributes":{"name":"dashboards_public_share","display_name":"Dashboards Public Share","description":"Generate public and authenticated links to share dashboards or embeddable graphs externally.","created":"2019-09-10T14:39:51.967094+00:00","group_name":"Dashboards","display_type":"other","restricted":false}},{"type":"permissions","id":"4441648c-d8b1-11e9-a77a-1b899a04b304","attributes":{"name":"monitors_read","display_name":"Monitors Read","description":"View monitors.","created":"2019-09-16T18:39:07.744297+00:00","group_name":"Monitors","display_type":"read","restricted":true}},{"type":"permissions","id":"48ef71ea-d8b1-11e9-a77a-93f408470ad0","attributes":{"name":"monitors_write","display_name":"Monitors Write","description":"Edit and delete individual monitors.","created":"2019-09-16T18:39:15.597109+00:00","group_name":"Monitors","display_type":"write","restricted":false}},{"type":"permissions","id":"4d87d5f8-d8b1-11e9-a77a-eb9c8350d04f","attributes":{"name":"monitors_downtime","display_name":"Manage Downtimes","description":"Set downtimes to suppress alerts from any monitor in an organization. Mute and unmute hosts. The ability to write monitors is not required to set downtimes.","created":"2019-09-16T18:39:23.306702+00:00","group_name":"Monitors","display_type":"other","restricted":false}},{"type":"permissions","id":"1af86ce4-7823-11ea-93dc-d7cad1b1c6cb","attributes":{"name":"logs_read_data","display_name":"Logs Read Data","description":"Read log data. In order to read log data, a user must have both this permission and Logs Read Index Data. This permission can be restricted with restriction queries. Restrictions are limited to the Log Management product.","created":"2020-04-06T16:24:35.989108+00:00","group_name":"Log Management","display_type":"read","restricted":false}},{"type":"permissions","id":"b382b982-8535-11ea-93de-2bf1bdf20798","attributes":{"name":"logs_read_archives","display_name":"Logs Read Archives","description":"Read Log Archives location and use it for rehydration.","created":"2020-04-23T07:40:27.966133+00:00","group_name":"Log Management","display_type":"read","restricted":false}},{"type":"permissions","id":"7314eb20-aa58-11ea-95e2-6fb6e4a451d5","attributes":{"name":"security_monitoring_rules_read","display_name":"Security Rules Read","description":"Read Detection Rules.","created":"2020-06-09T13:52:25.279909+00:00","group_name":"Cloud Security Platform","display_type":"read","restricted":false}},{"type":"permissions","id":"7b516476-aa58-11ea-95e2-93718cd56369","attributes":{"name":"security_monitoring_rules_write","display_name":"Security Rules Write","description":"Create and edit Detection Rules.","created":"2020-06-09T13:52:39.099413+00:00","group_name":"Cloud Security Platform","display_type":"write","restricted":false}},{"type":"permissions","id":"80de1ec0-aa58-11ea-95e2-aff381626d5d","attributes":{"name":"security_monitoring_signals_read","display_name":"Security Signals Read","description":"View Security Signals.","created":"2020-06-09T13:52:48.410398+00:00","group_name":"Cloud Security Platform","display_type":"read","restricted":false}},{"type":"permissions","id":"58b412cc-ff6d-11eb-bc9c-da7ad0900002","attributes":{"name":"security_monitoring_signals_write","display_name":"Security Signals Write","description":"Modify Security Signals.","created":"2021-08-17T15:11:06.963503+00:00","group_name":"Cloud Security Platform","display_type":"write","restricted":false}},{"type":"permissions","id":"9ac1d8cc-e707-11ea-aa2d-73d37e989a9d","attributes":{"name":"user_access_invite","display_name":"User Access Invite","description":"Invite other users to your organization.","created":"2020-08-25T19:17:23.539701+00:00","group_name":"Access Management","display_type":"other","restricted":false}},{"type":"permissions","id":"9de604d8-e707-11ea-aa2d-93f1a783b3a3","attributes":{"name":"user_access_manage","display_name":"User Access Manage","description":"Disable users, manage user roles, manage SAML-to-role mappings, and configure logs restriction queries.","created":"2020-08-25T19:17:28.810412+00:00","group_name":"Access Management","display_type":"other","restricted":false}},{"type":"permissions","id":"46a301da-ec5c-11ea-aa9f-73bedeab67ee","attributes":{"name":"user_app_keys","display_name":"User App Keys","description":"View and manage Application Keys owned by the user.","created":"2020-09-01T14:06:05.444705+00:00","group_name":"API and Application Keys","display_type":"other","restricted":false}},{"type":"permissions","id":"46a301db-ec5c-11ea-aa9f-2fe72193d60e","attributes":{"name":"org_app_keys_read","display_name":"Org App Keys Read","description":"View Application Keys owned by all users in the organization.","created":"2020-09-01T14:06:05.444705+00:00","group_name":"API and Application Keys","display_type":"read","restricted":false}},{"type":"permissions","id":"46a301dc-ec5c-11ea-aa9f-13b33f8f46ea","attributes":{"name":"org_app_keys_write","display_name":"Org App Keys Write","description":"Manage Application Keys owned by all users in the organization.","created":"2020-09-01T14:06:05.444705+00:00","group_name":"API and Application Keys","display_type":"write","restricted":false}},{"type":"permissions","id":"46a301dd-ec5c-11ea-aa9f-97edfb345bc9","attributes":{"name":"synthetics_private_location_read","display_name":"Synthetics Private Locations Read","description":"View, search, and use Synthetics private locations.","created":"2020-09-01T14:06:05.444705+00:00","group_name":"Synthetic Monitoring","display_type":"read","restricted":false}},{"type":"permissions","id":"46a301de-ec5c-11ea-aa9f-a73252c24806","attributes":{"name":"synthetics_private_location_write","display_name":"Synthetics Private Locations Write","description":"Create and delete private locations in addition to having access to the associated installation guidelines.","created":"2020-09-01T14:06:05.444705+00:00","group_name":"Synthetic Monitoring","display_type":"write","restricted":false}},{"type":"permissions","id":"46a301df-ec5c-11ea-aa9f-970a9ae645e5","attributes":{"name":"billing_read","display_name":"Billing Read","description":"View your organization's subscription and payment method but not make edits.","created":"2020-09-01T14:06:05.444705+00:00","group_name":"Billing and Usage","display_type":"read","restricted":false}},{"type":"permissions","id":"46a301e0-ec5c-11ea-aa9f-6ba6cc675d8c","attributes":{"name":"billing_edit","display_name":"Billing Edit","description":"Manage your organization's subscription and payment method.","created":"2020-09-01T14:06:05.444705+00:00","group_name":"Billing and Usage","display_type":"write","restricted":false}},{"type":"permissions","id":"46a301e1-ec5c-11ea-aa9f-afa39f6f3e36","attributes":{"name":"usage_read","display_name":"Usage Read","description":"View your organization's usage and usage attribution.","created":"2020-09-01T14:06:05.444705+00:00","group_name":"Billing and Usage","display_type":"read","restricted":false}},{"type":"permissions","id":"46a301e2-ec5c-11ea-aa9f-1f511b7305fd","attributes":{"name":"usage_edit","display_name":"Usage Edit","description":"Manage your organization's usage attribution set-up.","created":"2020-09-01T14:06:05.444705+00:00","group_name":"Billing and Usage","display_type":"write","restricted":false}},{"type":"permissions","id":"46a301e4-ec5c-11ea-aa9f-87282b3a50cc","attributes":{"name":"metric_tags_write","display_name":"Metric Tags Write","description":"Edit and save tag configurations for custom metrics.","created":"2020-09-01T14:06:05.444705+00:00","group_name":"Metrics","display_type":"write","restricted":false}},{"type":"permissions","id":"07c3c146-f7f8-11ea-acf6-0bd62b9ae60e","attributes":{"name":"logs_write_historical_view","display_name":"Logs Write Historical Views","description":"Rehydrate logs from Archives.","created":"2020-09-16T08:38:44.242076+00:00","group_name":"Log Management","display_type":"write","restricted":false}},{"type":"permissions","id":"2fbdac76-f923-11ea-adbc-07f3823e2b43","attributes":{"name":"audit_logs_read","display_name":"Audit Trail Read","description":"View Audit Trail in your organization.","created":"2020-09-17T20:20:10.834252+00:00","group_name":"Compliance","display_type":"read","restricted":false}},{"type":"permissions","id":"372896c4-f923-11ea-adbc-4fecd107156d","attributes":{"name":"api_keys_read","display_name":"API Keys Read","description":"List and retrieve the key values of all API Keys in your organization.","created":"2020-09-17T20:20:23.279769+00:00","group_name":"API and Application Keys","display_type":"read","restricted":false}},{"type":"permissions","id":"3e4d4d28-f923-11ea-adbc-e3565938c12e","attributes":{"name":"api_keys_write","display_name":"API Keys Write","description":"Create and rename API Keys for your organization.","created":"2020-09-17T20:20:35.264430+00:00","group_name":"API and Application Keys","display_type":"write","restricted":false}},{"type":"permissions","id":"4628ca54-f923-11ea-adbc-4b2b7f88c5e9","attributes":{"name":"synthetics_global_variable_read","display_name":"Synthetics Global Variable Read","description":"View, search, and use Synthetics global variables.","created":"2020-09-17T20:20:48.446916+00:00","group_name":"Synthetic Monitoring","display_type":"read","restricted":false}},{"type":"permissions","id":"4ada6e36-f923-11ea-adbc-0788e5c5e3cf","attributes":{"name":"synthetics_global_variable_write","display_name":"Synthetics Global Variable Write","description":"Create, edit, and delete global variables for Synthetics.","created":"2020-09-17T20:20:56.322003+00:00","group_name":"Synthetic Monitoring","display_type":"write","restricted":false}},{"type":"permissions","id":"5025ee24-f923-11ea-adbc-576ea241df8d","attributes":{"name":"synthetics_read","display_name":"Synthetics Read","description":"List and view configured Synthetic tests and test results.","created":"2020-09-17T20:21:05.205361+00:00","group_name":"Synthetic Monitoring","display_type":"read","restricted":false}},{"type":"permissions","id":"55f4b5ec-f923-11ea-adbc-1bfa2334a755","attributes":{"name":"synthetics_write","display_name":"Synthetics Write","description":"Create, edit, and delete Synthetic tests.","created":"2020-09-17T20:21:14.949140+00:00","group_name":"Synthetic Monitoring","display_type":"write","restricted":false}},{"type":"permissions","id":"5c6b88e2-f923-11ea-adbc-abf57d079420","attributes":{"name":"synthetics_default_settings_read","display_name":"Synthetics Default Settings Read","description":"View the default settings for Synthetic Monitoring.","created":"2020-09-17T20:21:25.794160+00:00","group_name":"Synthetic Monitoring","display_type":"read","restricted":false}},{"type":"permissions","id":"642eebe6-f923-11ea-adbc-eb617674ea04","attributes":{"name":"synthetics_default_settings_write","display_name":"Synthetics Default Settings Write","description":"Edit the default settings for Synthetic Monitoring.","created":"2020-09-17T20:21:38.818771+00:00","group_name":"Synthetic Monitoring","display_type":"write","restricted":false}},{"type":"permissions","id":"6ba32d22-0e1a-11eb-ba44-bf9a5aafaa39","attributes":{"name":"logs_write_facets","display_name":"Logs Write Facets","description":"Create or edit Log Facets.","created":"2020-10-14T12:40:20.271908+00:00","group_name":"Log Management","display_type":"write","restricted":false}},{"type":"permissions","id":"a42e94b2-1476-11eb-bd08-efda28c04248","attributes":{"name":"service_account_write","display_name":"Service Account Write","description":"Create, disable, and use Service Accounts in your organization.","created":"2020-10-22T14:55:35.814239+00:00","group_name":"Access Management","display_type":"write","restricted":false}},{"type":"permissions","id":"fcac2ad8-2843-11eb-8315-0fe47949d625","attributes":{"name":"integrations_api","display_name":"Integrations API","description":"Deprecated. Use the Integrations APIs to configure integrations. In order to configure integrations from the UI, a user must also have Standard Access.","created":"2020-11-16T19:43:23.198568+00:00","group_name":"Integrations","display_type":"other","restricted":false}},{"type":"permissions","id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","attributes":{"name":"apm_read","display_name":"APM Read","description":"Read and query APM and Trace Analytics.","created":"2020-11-23T20:55:45.006110+00:00","group_name":"APM","display_type":"read","restricted":true}},{"type":"permissions","id":"43fa188e-2dce-11eb-84c0-835ad1fd6287","attributes":{"name":"apm_retention_filter_read","display_name":"APM Retention Filters Read","description":"Read trace retention filters. A user with this permission can view the retention filters page, list of filters, their statistics, and creation info.","created":"2020-11-23T20:55:49.190595+00:00","group_name":"APM","display_type":"read","restricted":false}},{"type":"permissions","id":"465cfe66-2dce-11eb-84c0-6baa888239fa","attributes":{"name":"apm_retention_filter_write","display_name":"APM Retention Filters Write","description":"Create, edit, and delete trace retention filters. A user with this permission can create new retention filters, and update or delete to existing retention filters.","created":"2020-11-23T20:55:53.194236+00:00","group_name":"APM","display_type":"write","restricted":false}},{"type":"permissions","id":"4916eebe-2dce-11eb-84c0-271cb2c672e8","attributes":{"name":"apm_service_ingest_read","display_name":"APM Service Ingest Read","description":"Access service ingestion pages. A user with this permission can view the service ingestion page, list of root services, their statistics, and creation info.","created":"2020-11-23T20:55:57.768261+00:00","group_name":"APM","display_type":"read","restricted":false}},{"type":"permissions","id":"4e3f02b4-2dce-11eb-84c0-2fca946a6efc","attributes":{"name":"apm_service_ingest_write","display_name":"APM Service Ingest Write","description":"Edit service ingestion pages' root services. A user with this permission can edit the root service ingestion and generate a code snippet to increase ingestion per service.","created":"2020-11-23T20:56:06.419518+00:00","group_name":"APM","display_type":"write","restricted":false}},{"type":"permissions","id":"53950c54-2dce-11eb-84c0-a79ae108f6f8","attributes":{"name":"apm_apdex_manage_write","display_name":"APM Apdex Manage Write","description":"Set Apdex T value on any service. A user with this permission can set the T value from the Apdex graph on the service page.","created":"2020-11-23T20:56:15.371926+00:00","group_name":"APM","display_type":"write","restricted":false}},{"type":"permissions","id":"5cbe5f9c-2dce-11eb-84c0-872d3e9f1076","attributes":{"name":"apm_tag_management_write","display_name":"APM Tag Management Write","description":"Edit second primary tag selection. A user with this permission can modify the second primary tag dropdown in the APM settings page.","created":"2020-11-23T20:56:30.742299+00:00","group_name":"APM","display_type":"write","restricted":false}},{"type":"permissions","id":"61765026-2dce-11eb-84c0-833e230d1b8f","attributes":{"name":"apm_primary_operation_write","display_name":"APM Primary Operation Write","description":"Edit the operation name value selection. A user with this permission can modify the operation name list in the APM settings page and the operation name controller on the service page.","created":"2020-11-23T20:56:38.658649+00:00","group_name":"APM","display_type":"write","restricted":false}},{"type":"permissions","id":"04bc1cf2-340a-11eb-873a-43b973c760dd","attributes":{"name":"audit_logs_write","display_name":"Audit Trail Write","description":"Configure Audit Trail in your organization.","created":"2020-12-01T19:18:39.866516+00:00","group_name":"Compliance","display_type":"write","restricted":false}},{"type":"permissions","id":"8106300a-54f7-11eb-8cbc-7781a434a67b","attributes":{"name":"rum_apps_write","display_name":"RUM Apps Write","description":"Create, edit, and delete RUM applications. Creating a RUM application automatically generates a Client Token. In order to create Client Tokens directly, a user needs the Client Tokens Write permission.","created":"2021-01-12T16:59:16.324480+00:00","group_name":"Real User Monitoring","display_type":"write","restricted":false}},{"type":"permissions","id":"edfd5e74-801f-11eb-96d8-da7ad0900002","attributes":{"name":"debugger_write","display_name":"Dynamic Instrumentation Write","description":"Edit Dynamic Instrumentation configuration. Create or modify Dynamic Instrumentation probes that do not capture function state.","created":"2021-03-08T15:06:59.006815+00:00","group_name":"APM","display_type":"write","restricted":false}},{"type":"permissions","id":"edfd5e75-801f-11eb-96d8-da7ad0900002","attributes":{"name":"debugger_read","display_name":"Dynamic Instrumentation Read","description":"View Dynamic Instrumentation configuration.","created":"2021-03-08T15:06:59.010517+00:00","group_name":"APM","display_type":"read","restricted":false}},{"type":"permissions","id":"bf0dcf7c-90af-11eb-9b82-da7ad0900002","attributes":{"name":"data_scanner_read","display_name":"Data Scanner Read","description":"View Data Scanner configurations.","created":"2021-03-29T16:56:46.394971+00:00","group_name":"Compliance","display_type":"read","restricted":false}},{"type":"permissions","id":"bf0dcf7d-90af-11eb-9b82-da7ad0900002","attributes":{"name":"data_scanner_write","display_name":"Data Scanner Write","description":"Edit Data Scanner configurations.","created":"2021-03-29T16:56:46.398584+00:00","group_name":"Compliance","display_type":"write","restricted":false}},{"type":"permissions","id":"7df222b6-a45c-11eb-a0af-da7ad0900002","attributes":{"name":"org_management","display_name":"Org Management","description":"Edit org configurations, including authentication and certain security preferences such as configuring SAML, renaming an org, configuring allowed login methods, creating child orgs, subscribing & unsubscribing from apps in the marketplace, and enabling & disabling Remote Configuration for the entire organization.","created":"2021-04-23T17:51:12.187340+00:00","group_name":"Access Management","display_type":"write","restricted":false}},{"type":"permissions","id":"98b984f4-b16d-11eb-a2c6-da7ad0900002","attributes":{"name":"security_monitoring_filters_read","display_name":"Security Filters Read","description":"Read Security Filters.","created":"2021-05-10T08:56:23.676833+00:00","group_name":"Cloud Security Platform","display_type":"read","restricted":false}},{"type":"permissions","id":"98b984f5-b16d-11eb-a2c6-da7ad0900002","attributes":{"name":"security_monitoring_filters_write","display_name":"Security Filters Write","description":"Create, edit, and delete Security Filters.","created":"2021-05-10T08:56:23.680551+00:00","group_name":"Cloud Security Platform","display_type":"write","restricted":false}},{"type":"permissions","id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","attributes":{"name":"incident_read","display_name":"Incidents Read","description":"View incidents in Datadog.","created":"2021-06-22T15:11:09.255499+00:00","group_name":"Case and Incident Management","display_type":"read","restricted":true}},{"type":"permissions","id":"12efc211-d36c-11eb-a9b8-da7ad0900002","attributes":{"name":"incident_write","display_name":"Incidents Write","description":"Create, view, and manage incidents in Datadog.","created":"2021-06-22T15:11:09.264369+00:00","group_name":"Case and Incident Management","display_type":"write","restricted":false}},{"type":"permissions","id":"12efc20f-d36c-11eb-a9b8-da7ad0900002","attributes":{"name":"incident_settings_read","display_name":"Incident Settings Read","description":"View Incident Settings.","created":"2021-06-22T15:11:09.259568+00:00","group_name":"Case and Incident Management","display_type":"read","restricted":false}},{"type":"permissions","id":"12efc210-d36c-11eb-a9b8-da7ad0900002","attributes":{"name":"incident_settings_write","display_name":"Incident Settings Write","description":"Configure Incident Settings.","created":"2021-06-22T15:11:09.261986+00:00","group_name":"Case and Incident Management","display_type":"write","restricted":false}},{"type":"permissions","id":"97971c1c-e895-11eb-b13c-da7ad0900002","attributes":{"name":"appsec_event_rule_read","display_name":"Application Security Management Event Rules Read","description":"View Application Security Management Event Rules.","created":"2021-07-19T13:31:15.595771+00:00","group_name":"Cloud Security Platform","display_type":"read","restricted":false}},{"type":"permissions","id":"97971c1d-e895-11eb-b13c-da7ad0900002","attributes":{"name":"appsec_event_rule_write","display_name":"Application Security Management Event Rules Write","description":"Edit Application Security Management Event Rules.","created":"2021-07-19T13:31:15.598808+00:00","group_name":"Cloud Security Platform","display_type":"write","restricted":false}},{"type":"permissions","id":"7605ef24-f376-11eb-b90b-da7ad0900002","attributes":{"name":"rum_apps_read","display_name":"RUM Apps Read","description":"View RUM Applications data.","created":"2021-08-02T09:46:07.671535+00:00","group_name":"Real User Monitoring","display_type":"read","restricted":true}},{"type":"permissions","id":"7605ef25-f376-11eb-b90b-da7ad0900002","attributes":{"name":"rum_session_replay_read","display_name":"RUM Session Replay Read","description":"View Session Replays.","created":"2021-08-02T09:46:07.674640+00:00","group_name":"Real User Monitoring","display_type":"read","restricted":false}},{"type":"permissions","id":"c95412b8-16c7-11ec-85c0-da7ad0900002","attributes":{"name":"security_monitoring_notification_profiles_read","display_name":"Security Notification Rules Read","description":"Read Notification Rules.","created":"2021-09-16T08:26:27.366789+00:00","group_name":"Cloud Security Platform","display_type":"read","restricted":false}},{"type":"permissions","id":"c95412b9-16c7-11ec-85c0-da7ad0900002","attributes":{"name":"security_monitoring_notification_profiles_write","display_name":"Security Notification Rules Write","description":"Create, edit, and delete Notification Rules.","created":"2021-09-16T08:26:27.369359+00:00","group_name":"Cloud Security Platform","display_type":"write","restricted":false}},{"type":"permissions","id":"26c79920-1703-11ec-85d2-da7ad0900002","attributes":{"name":"apm_generate_metrics","display_name":"APM Generate Metrics","description":"Create custom metrics from spans.","created":"2021-09-16T15:31:24.458963+00:00","group_name":"APM","display_type":"other","restricted":false}},{"type":"permissions","id":"f4473c60-4792-11ec-a27b-da7ad0900002","attributes":{"name":"security_monitoring_cws_agent_rules_read","display_name":"Cloud Workload Security Agent Rules Read","description":"Read Cloud Workload Security Agent Rules.","created":"2021-11-17T10:41:43.074031+00:00","group_name":"Cloud Security Platform","display_type":"read","restricted":false}},{"type":"permissions","id":"f4473c61-4792-11ec-a27b-da7ad0900002","attributes":{"name":"security_monitoring_cws_agent_rules_write","display_name":"Cloud Workload Security Agent Rules Write","description":"Create, edit, and delete Cloud Workload Security Agent Rules.","created":"2021-11-17T10:41:43.077905+00:00","group_name":"Cloud Security Platform","display_type":"write","restricted":false}},{"type":"permissions","id":"020a563c-56a4-11ec-a982-da7ad0900002","attributes":{"name":"apm_pipelines_write","display_name":"APM Pipelines Write","description":"Add and change APM pipeline configurations.","created":"2021-12-06T14:51:35.049129+00:00","group_name":"APM","display_type":"write","restricted":false}},{"type":"permissions","id":"8e4d6b6e-5750-11ec-a9f4-da7ad0900002","attributes":{"name":"apm_pipelines_read","display_name":"APM Pipelines Read","description":"View APM pipeline configurations.","created":"2021-12-07T11:26:43.807269+00:00","group_name":"APM","display_type":"read","restricted":false}},{"type":"permissions","id":"945b3bb4-5884-11ec-aa6d-da7ad0900002","attributes":{"name":"observability_pipelines_read","display_name":"Pipeline Read","description":"View pipelines in your organization.","created":"2021-12-09T00:11:38.956827+00:00","group_name":"Observability Pipelines","display_type":"read","restricted":false}},{"type":"permissions","id":"945b3bb5-5884-11ec-aa6d-da7ad0900002","attributes":{"name":"observability_pipelines_write","display_name":"Pipeline Write","description":"Edit pipelines in your organization.","created":"2021-12-09T00:11:38.960833+00:00","group_name":"Observability Pipelines","display_type":"write","restricted":false}},{"type":"permissions","id":"f6e917a8-8502-11ec-bf20-da7ad0900002","attributes":{"name":"workflows_read","display_name":"Workflows Read","description":"View workflows.","created":"2022-02-03T15:07:12.058412+00:00","group_name":"Workflow Automation","display_type":"read","restricted":false}},{"type":"permissions","id":"f6e917aa-8502-11ec-bf20-da7ad0900002","attributes":{"name":"workflows_write","display_name":"Workflows Write","description":"Create, edit, and delete workflows.","created":"2022-02-03T15:07:12.061765+00:00","group_name":"Workflow Automation","display_type":"write","restricted":false}},{"type":"permissions","id":"f6e917a9-8502-11ec-bf20-da7ad0900002","attributes":{"name":"workflows_run","display_name":"Workflows Run","description":"Run workflows.","created":"2022-02-03T15:07:12.060079+00:00","group_name":"Workflow Automation","display_type":"other","restricted":false}},{"type":"permissions","id":"f6e917a6-8502-11ec-bf20-da7ad0900002","attributes":{"name":"connections_read","display_name":"Connections Read","description":"List and view available connections. Connections contain secrets that cannot be revealed.","created":"2022-02-03T15:07:12.053432+00:00","group_name":"Workflow Automation","display_type":"read","restricted":false}},{"type":"permissions","id":"f6e917a7-8502-11ec-bf20-da7ad0900002","attributes":{"name":"connections_write","display_name":"Connections Write","description":"Create and delete connections.","created":"2022-02-03T15:07:12.056590+00:00","group_name":"Workflow Automation","display_type":"write","restricted":false}},{"type":"permissions","id":"7a89ec40-8b69-11ec-812d-da7ad0900002","attributes":{"name":"incidents_private_global_access","display_name":"Private Incidents Global Access","description":"Access all private incidents in Datadog, even when not added as a responder.","created":"2022-02-11T18:36:08.531989+00:00","group_name":"Case and Incident Management","display_type":"other","restricted":false}},{"type":"permissions","id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","attributes":{"name":"notebooks_read","display_name":"Notebooks Read","description":"View notebooks.","created":"2022-03-02T18:51:05.040950+00:00","group_name":"Notebooks","display_type":"read","restricted":true}},{"type":"permissions","id":"b6bf9ac7-9a59-11ec-8480-da7ad0900002","attributes":{"name":"notebooks_write","display_name":"Notebooks Write","description":"Create and change notebooks.","created":"2022-03-02T18:51:05.044683+00:00","group_name":"Notebooks","display_type":"write","restricted":false}},{"type":"permissions","id":"e35c06b0-966b-11ec-83c9-da7ad0900002","attributes":{"name":"logs_delete_data","display_name":"Logs Delete Data","description":"Delete data from your Logs, including entire indexes.","created":"2022-02-25T18:51:06.176019+00:00","group_name":"Log Management","display_type":"write","restricted":false}},{"type":"permissions","id":"2108215e-b9b4-11ec-958e-da7ad0900002","attributes":{"name":"rum_generate_metrics","display_name":"RUM Generate Metrics","description":"Create custom metrics from RUM events.","created":"2022-04-11T16:26:24.106645+00:00","group_name":"Real User Monitoring","display_type":"write","restricted":false}},{"type":"permissions","id":"7b1f5089-c59e-11ec-aa32-da7ad0900002","attributes":{"name":"manage_integrations","display_name":"Integrations Manage","description":"Install, uninstall, and configure integrations.","created":"2022-04-26T20:21:40.285834+00:00","group_name":"Integrations","display_type":"write","restricted":false}},{"type":"permissions","id":"1afff448-d5e9-11ec-ae37-da7ad0900002","attributes":{"name":"usage_notifications_read","display_name":"Usage Notifications Read","description":"Receive notifications and view currently configured notification settings.","created":"2022-05-17T13:56:09.870985+00:00","group_name":"Billing and Usage","display_type":"read","restricted":false}},{"type":"permissions","id":"1afff449-d5e9-11ec-ae37-da7ad0900002","attributes":{"name":"usage_notifications_write","display_name":"Usage Notifications Write","description":"Receive notifications and configure notification settings.","created":"2022-05-17T13:56:09.876124+00:00","group_name":"Billing and Usage","display_type":"write","restricted":false}},{"type":"permissions","id":"6c87d3da-e5c5-11ec-b1d6-da7ad0900002","attributes":{"name":"generate_dashboard_reports","display_name":"Dashboards Report Write","description":"Schedule custom reports from a dashboard. These reports will display any viewable data regardless of any granular restrictions (restriction queries, scoped indexes) applied to the report's creator.","created":"2022-06-06T18:21:03.378896+00:00","group_name":"Dashboards","display_type":"write","restricted":false}},{"type":"permissions","id":"f8e941cf-e746-11ec-b22d-da7ad0900002","attributes":{"name":"slos_read","display_name":"SLOs Read","description":"View SLOs and status corrections.","created":"2022-06-08T16:20:55.142591+00:00","group_name":"Service Level Objectives","display_type":"read","restricted":true}},{"type":"permissions","id":"f8e941d0-e746-11ec-b22d-da7ad0900002","attributes":{"name":"slos_write","display_name":"SLOs Write","description":"Create, edit, and delete SLOs.","created":"2022-06-08T16:20:55.143869+00:00","group_name":"Service Level Objectives","display_type":"write","restricted":false}},{"type":"permissions","id":"f8e941ce-e746-11ec-b22d-da7ad0900002","attributes":{"name":"slos_corrections","display_name":"SLOs Status Corrections","description":"Apply, edit, and delete SLO status corrections. A user with this permission can make status corrections, even if they do not have permission to edit those SLOs.","created":"2022-06-08T16:20:55.139410+00:00","group_name":"Service Level Objectives","display_type":"other","restricted":false}},{"type":"permissions","id":"4784b11c-f311-11ec-a5f5-da7ad0900002","attributes":{"name":"monitor_config_policy_write","display_name":"Monitor Configuration Policy Write","description":"Create, update, and delete monitor configuration policies.","created":"2022-06-23T16:26:48.150556+00:00","group_name":"Monitors","display_type":"write","restricted":false}},{"type":"permissions","id":"ee68fba9-173a-11ed-b00b-da7ad0900002","attributes":{"name":"apm_service_catalog_write","display_name":"Service Catalog Write","description":"Add, modify, and delete service catalog definitions when those definitions are maintained by Datadog.","created":"2022-08-08T16:55:39.377188+00:00","group_name":"APM","display_type":"write","restricted":false}},{"type":"permissions","id":"ee68fba8-173a-11ed-b00b-da7ad0900002","attributes":{"name":"apm_service_catalog_read","display_name":"Service Catalog Read","description":"View service catalog and service definitions.","created":"2022-08-08T16:55:39.374377+00:00","group_name":"APM","display_type":"read","restricted":false}},{"type":"permissions","id":"5b2c3e28-1761-11ed-b018-da7ad0900002","attributes":{"name":"logs_write_forwarding_rules","display_name":"Logs Write Forwarding Rules","description":"Add and edit forwarding destinations and rules for logs.","created":"2022-08-08T21:30:42.723663+00:00","group_name":"Log Management","display_type":"write","restricted":false}},{"type":"permissions","id":"6be119a6-1cd8-11ed-b185-da7ad0900002","attributes":{"name":"watchdog_insights_read","display_name":"Watchdog Insights Read","description":"Deprecated. View Watchdog Insights.","created":"2022-08-15T20:25:36.677197+00:00","group_name":"Watchdog","display_type":"read","restricted":false}},{"type":"permissions","id":"36e2a22e-248a-11ed-b405-da7ad0900002","attributes":{"name":"connections_resolve","display_name":"Connections Resolve","description":"Resolve connections.","created":"2022-08-25T15:25:56.325170+00:00","group_name":"Workflow Automation","display_type":"read","restricted":false}},{"type":"permissions","id":"4ee674f6-55d9-11ed-b10d-da7ad0900002","attributes":{"name":"appsec_protect_read","display_name":"Application Security Management Protect Read","description":"View blocked attackers.","created":"2022-10-27T09:25:33.834253+00:00","group_name":"Cloud Security Platform","display_type":"read","restricted":false}},{"type":"permissions","id":"4ee7e46c-55d9-11ed-b10e-da7ad0900002","attributes":{"name":"appsec_protect_write","display_name":"Application Security Management Protect Write","description":"Manage blocked attackers.","created":"2022-10-27T09:25:33.843656+00:00","group_name":"Cloud Security Platform","display_type":"write","restricted":false}},{"type":"permissions","id":"4ee5731c-55d9-11ed-b10b-da7ad0900002","attributes":{"name":"appsec_activation_read","display_name":"Application Security Management 1-click Enablement Read","description":"View whether Application Security Management has been enabled or disabled on services via 1-click enablement with Remote Configuration.","created":"2022-10-27T09:25:33.827076+00:00","group_name":"Cloud Security Platform","display_type":"read","restricted":false}},{"type":"permissions","id":"4ee60688-55d9-11ed-b10c-da7ad0900002","attributes":{"name":"appsec_activation_write","display_name":"Application Security Management 1-click Enablement Write","description":"Enable or disable Application Security Management on services via 1-click enablement.","created":"2022-10-27T09:25:33.831383+00:00","group_name":"Cloud Security Platform","display_type":"write","restricted":false}},{"type":"permissions","id":"8247acc4-7a4c-11ed-958f-da7ad0900002","attributes":{"name":"cases_read","display_name":"Cases Read","description":"View Cases.","created":"2022-12-12T18:40:54.018521+00:00","group_name":"Case and Incident Management","display_type":"read","restricted":false}},{"type":"permissions","id":"824851a6-7a4c-11ed-9590-da7ad0900002","attributes":{"name":"cases_write","display_name":"Cases Write","description":"Create and update cases.","created":"2022-12-12T18:40:54.023280+00:00","group_name":"Case and Incident Management","display_type":"write","restricted":false}},{"type":"permissions","id":"77d5f45e-7a5a-11ed-8abf-da7ad0900002","attributes":{"name":"apm_remote_configuration_write","display_name":"APM Remote Configuration Write","description":"Edit APM Remote Configuration.","created":"2022-12-12T20:20:49.450768+00:00","group_name":"APM","display_type":"write","restricted":false}},{"type":"permissions","id":"77d55a44-7a5a-11ed-8abe-da7ad0900002","attributes":{"name":"apm_remote_configuration_read","display_name":"APM Remote Configuration Read","description":"View APM Remote Configuration.","created":"2022-12-12T20:20:49.446298+00:00","group_name":"APM","display_type":"read","restricted":false}},{"type":"permissions","id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","attributes":{"name":"ci_visibility_read","display_name":"CI Visibility Read","description":"View CI Visibility.","created":"2022-12-13T16:01:37.149406+00:00","group_name":"CI Visibility","display_type":"read","restricted":true}},{"type":"permissions","id":"6c5c1090-7aff-11ed-a5cf-da7ad0900002","attributes":{"name":"ci_visibility_write","display_name":"CI Visibility Tests Write","description":"Edit flaky tests and delete Test Services.","created":"2022-12-13T16:01:37.157428+00:00","group_name":"CI Visibility","display_type":"write","restricted":false}},{"type":"permissions","id":"6c59ae72-7aff-11ed-a5cc-da7ad0900002","attributes":{"name":"ci_provider_settings_write","display_name":"CI Provider Settings Write","description":"Edit CI Provider settings. Manage GitHub accounts and repositories for enabling CI Visibility and job logs collection.","created":"2022-12-13T16:01:37.141217+00:00","group_name":"CI Visibility","display_type":"write","restricted":false}},{"type":"permissions","id":"6c5b7428-7aff-11ed-a5ce-da7ad0900002","attributes":{"name":"ci_visibility_settings_write","display_name":"CI Visibility Settings Write","description":"Configure CI Visibility settings. Set a repository default branch, enable GitHub comments, and delete test services.","created":"2022-12-13T16:01:37.153418+00:00","group_name":"CI Visibility","display_type":"write","restricted":false}},{"type":"permissions","id":"6c5d0892-7aff-11ed-a5d0-da7ad0900002","attributes":{"name":"intelligent_test_runner_activation_write","display_name":"Intelligent Test Runner Activation Write","description":"Enable or disable Intelligent Test Runner.","created":"2022-12-13T16:01:37.163771+00:00","group_name":"CI Visibility","display_type":"write","restricted":false}},{"type":"permissions","id":"6c5de654-7aff-11ed-a5d1-da7ad0900002","attributes":{"name":"intelligent_test_runner_settings_write","display_name":"Intelligent Test Runner Settings Write","description":"Edit Intelligent Test Runner settings, such as modifying ITR excluded branch list.","created":"2022-12-13T16:01:37.169430+00:00","group_name":"CI Visibility","display_type":"write","restricted":false}},{"type":"permissions","id":"c13a2368-7d61-11ed-b5b7-da7ad0900002","attributes":{"name":"continuous_profiler_read","display_name":"Continuous Profiler Read","description":"View data in Continuous Profiler.","created":"2022-12-16T16:50:32.545882+00:00","group_name":"APM","display_type":"read","restricted":false}},{"type":"permissions","id":"1d76ecfa-9771-11ed-9c2f-da7ad0900002","attributes":{"name":"teams_manage","display_name":"Teams Manage","description":"Manage Teams. Create, delete, rename, and edit metadata of all Teams. To control Team membership across all Teams, use the User Access Manage permission.","created":"2023-01-18T20:45:59.977837+00:00","group_name":"Teams","display_type":"write","restricted":false}},{"type":"permissions","id":"ca6bfb3a-b44f-11ed-adb2-da7ad0900002","attributes":{"name":"security_monitoring_findings_read","display_name":"Security Monitoring Findings Read","description":"View CSPM Findings.","created":"2023-02-24T14:30:30.983679+00:00","group_name":"Cloud Security Platform","display_type":"read","restricted":false}},{"type":"permissions","id":"4dc3eec6-b468-11ed-8539-da7ad0900002","attributes":{"name":"incident_notification_settings_read","display_name":"Incident Notification Settings Read","description":"View Incidents Notification settings.","created":"2023-02-24T17:25:59.263037+00:00","group_name":"Case and Incident Management","display_type":"read","restricted":false}},{"type":"permissions","id":"4dc4094c-b468-11ed-853a-da7ad0900002","attributes":{"name":"incident_notification_settings_write","display_name":"Incident Notification Settings Write","description":"Configure Incidents Notification settings.","created":"2023-02-24T17:25:59.263037+00:00","group_name":"Case and Incident Management","display_type":"write","restricted":false}},{"type":"permissions","id":"35dd33ea-ca2e-11ed-bca0-da7ad0900002","attributes":{"name":"ci_ingestion_control_write","display_name":"CI Visibility Ingestion Control Write","description":"Edit CI Ingestion Control exclusion filters.","created":"2023-03-24T10:25:33.934187+00:00","group_name":"CI Visibility","display_type":"write","restricted":false}},{"type":"permissions","id":"36bf3d0a-ccc0-11ed-9453-da7ad0900002","attributes":{"name":"error_tracking_write","display_name":"Error Tracking 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":"f416f55e-db3f-11ed-8028-da7ad0900002","attributes":{"name":"watchdog_alerts_write","display_name":"Watchdog Alerts Write","description":"Manage Watchdog Alerts.","created":"2023-04-15T03:45:24.289668+00:00","group_name":"Watchdog","display_type":"write","restricted":false}},{"type":"permissions","id":"f416b1ac-db3f-11ed-8027-da7ad0900002","attributes":{"name":"saved_views_write","display_name":"Saved Views Write","description":"Modify Saved Views across all Datadog products.","created":"2023-04-15T03:45:24.289668+00:00","group_name":"Cross-Product Features","display_type":"write","restricted":false}},{"type":"permissions","id":"4e61a95e-de98-11ed-aa23-da7ad0900002","attributes":{"name":"client_tokens_read","display_name":"Client Tokens Read","description":"Read Client Tokens. Unlike API keys, client tokens may be exposed client-side in JavaScript code for web browsers and other clients to send data to Datadog.","created":"2023-04-19T09:55:24.976379+00:00","group_name":"API and Application Keys","display_type":"read","restricted":false}},{"type":"permissions","id":"4e61ea18-de98-11ed-aa24-da7ad0900002","attributes":{"name":"client_tokens_write","display_name":"Client Tokens Write","description":"Create and edit Client Tokens. Unlike API keys, client tokens may be exposed client-side in JavaScript code for web browsers and other clients to send data to Datadog.","created":"2023-04-19T09:55:24.976379+00:00","group_name":"API and Application Keys","display_type":"write","restricted":false}},{"type":"permissions","id":"a4316eb8-f438-11ed-8af2-da7ad0900002","attributes":{"name":"event_correlation_config_read","display_name":"Event Correlation Config Read","description":"Read Event Correlation Configuration data such as Correlation Rules and Settings.","created":"2023-05-16T22:26:02.839419+00:00","group_name":"Events","display_type":"read","restricted":false}},{"type":"permissions","id":"a431bf12-f438-11ed-8af3-da7ad0900002","attributes":{"name":"event_correlation_config_write","display_name":"Event Correlation Config Write","description":"Manage Event Correlation Configuration such as Correlation Rules and Settings.","created":"2023-05-16T22:26:02.839419+00:00","group_name":"Events","display_type":"write","restricted":false}},{"type":"permissions","id":"8352cf04-f6ac-11ed-9ec7-da7ad0900002","attributes":{"name":"event_config_write","display_name":"Event Config Write","description":"Manage general event configuration such as API Emails.","created":"2023-05-20T01:20:31.639587+00:00","group_name":"Events","display_type":"write","restricted":false}},{"type":"permissions","id":"3a48350c-f9bc-11ed-b81c-da7ad0900002","attributes":{"name":"security_monitoring_findings_write","display_name":"Security Monitoring Findings Write","description":"Mute CSPM Findings.","created":"2023-05-23T22:50:34.532448+00:00","group_name":"Cloud Security Platform","display_type":"write","restricted":false}},{"type":"permissions","id":"a773e3d8-fff2-11ed-965c-da7ad0900002","attributes":{"name":"cloud_cost_management_read","display_name":"Cloud Cost Management Read","description":"View Cloud Cost pages. This does not restrict access to the cloud cost data source in dashboards and notebooks.","created":"2023-05-31T20:35:17.490437+00:00","group_name":"Cloud Cost Management","display_type":"read","restricted":false}},{"type":"permissions","id":"a77452c8-fff2-11ed-965d-da7ad0900002","attributes":{"name":"cloud_cost_management_write","display_name":"Cloud Cost Management Write","description":"Configure cloud cost accounts and global customizations.","created":"2023-05-31T20:35:17.490437+00:00","group_name":"Cloud Cost Management","display_type":"write","restricted":false}},{"type":"permissions","id":"a51b375a-ff73-11ed-8c18-da7ad0900002","attributes":{"name":"host_tags_write","display_name":"Host Tags Write","description":"Add and change tags on hosts.","created":"2023-05-31T05:26:07.469293+00:00","group_name":"Metrics","display_type":"write","restricted":false}},{"type":"permissions","id":"61f9891a-0070-11ee-9c3f-da7ad0900002","attributes":{"name":"ci_visibility_pipelines_write","display_name":"CI Visibility Pipelines Write","description":"Create CI Visibility pipeline spans using the API.","created":"2023-06-01T11:35:17.513706+00:00","group_name":"CI Visibility","display_type":"write","restricted":false}},{"type":"permissions","id":"1377d9e4-0ec7-11ee-aebc-da7ad0900002","attributes":{"name":"quality_gate_rules_read","display_name":"Quality Gate Rules Read","description":"View Quality Gate Rules.","created":"2023-06-19T17:31:08.295856+00:00","group_name":"CI Visibility","display_type":"read","restricted":false}},{"type":"permissions","id":"1377ff28-0ec7-11ee-aebd-da7ad0900002","attributes":{"name":"quality_gate_rules_write","display_name":"Quality Gate Rules Write","description":"Edit Quality Gate Rules.","created":"2023-06-19T17:31:08.295856+00:00","group_name":"CI Visibility","display_type":"write","restricted":false}},{"type":"permissions","id":"cc8cd958-11eb-11ee-ade2-da7ad0900002","attributes":{"name":"metrics_metadata_write","display_name":"Metrics Metadata Write","description":"Edit metadata on metrics.","created":"2023-06-23T17:31:34.182629+00:00","group_name":"Metrics","display_type":"write","restricted":false}},{"type":"permissions","id":"b1adb6e8-0949-11ee-b2c5-da7ad0900002","attributes":{"name":"rum_delete_data","display_name":"RUM Delete Data","description":"Delete data from RUM.","created":"2023-06-12T17:51:01.325450+00:00","group_name":"Real User Monitoring","display_type":"write","restricted":false}},{"type":"permissions","id":"b1ad77e6-0949-11ee-b2c3-da7ad0900002","attributes":{"name":"appsec_vm_write","display_name":"Vulnerability Management Write","description":"Update status or assignee of vulnerabilities.","created":"2023-06-12T17:51:01.325450+00:00","group_name":"Cloud Security Platform","display_type":"write","restricted":false}},{"type":"permissions","id":"b1adb5da-0949-11ee-b2c4-da7ad0900002","attributes":{"name":"reference_tables_write","display_name":"Reference Tables Write","description":"Create or modify Reference Tables.","created":"2023-06-12T17:51:01.325450+00:00","group_name":"Reference Tables","display_type":"write","restricted":false}},{"type":"permissions","id":"0efeff18-1cec-11ee-992d-da7ad0900002","attributes":{"name":"rum_playlist_write","display_name":"RUM Playlist Write","description":"Create, update, and delete RUM playlists. Add and remove sessions from RUM playlists.","created":"2023-07-07T17:31:08.450865+00:00","group_name":"Real User Monitoring","display_type":"write","restricted":false}},{"type":"permissions","id":"6c5ce898-21a4-11ee-99ef-da7ad0900002","attributes":{"name":"observability_pipelines_delete","display_name":"Pipeline Delete","description":"Delete pipelines from your organization.","created":"2023-07-13T17:40:57.140947+00:00","group_name":"Observability Pipelines","display_type":"write","restricted":false}},{"type":"permissions","id":"6c5ce992-21a4-11ee-99f0-da7ad0900002","attributes":{"name":"observability_pipelines_deploy","display_name":"Pipeline Deploy","description":"Deploy pipelines in your organization.","created":"2023-07-13T17:40:57.140947+00:00","group_name":"Observability Pipelines","display_type":"write","restricted":false}},{"type":"permissions","id":"785177a6-20da-11ee-bed7-da7ad0900002","attributes":{"name":"processes_generate_metrics","display_name":"Processes Generate Metrics","description":"Create custom metrics from processes.","created":"2023-07-12T17:35:18.858294+00:00","group_name":"Processes","display_type":"write","restricted":false}},{"type":"permissions","id":"7850e390-20da-11ee-bed6-da7ad0900002","attributes":{"name":"api_keys_delete","display_name":"API Keys Delete","description":"Delete API Keys for your organization.","created":"2023-07-12T17:35:18.858294+00:00","group_name":"API and Application Keys","display_type":"write","restricted":false}},{"type":"permissions","id":"1b8f54cc-2ca4-11ee-9e72-da7ad0900002","attributes":{"name":"facets_write","display_name":"Facets Write","description":"Manage facets for products other than Log Management, such as APM Traces. To modify Log Facets, use Logs Write Facets.","created":"2023-07-27T17:36:24.369352+00:00","group_name":"Cross-Product Features","display_type":"write","restricted":false}},{"type":"permissions","id":"50c270de-69ee-11ee-9151-da7ad0900002","attributes":{"name":"appsec_vm_read","display_name":"Vulnerability Management Read","description":"View vulnerabilities. This does not restrict access to the vulnerability data source through the API or inventory SQL.","created":"2023-10-13T17:31:17.311029+00:00","group_name":"Cloud Security Platform","display_type":"read","restricted":true}},{"type":"permissions","id":"7c7836fc-6f6e-11ee-8cdd-da7ad0900002","attributes":{"name":"debugger_capture_variables","display_name":"Dynamic Instrumentation Capture Variables","description":"Create or modify Dynamic Instrumentation probes that capture function state: local variables, method arguments, fields, and return value or thrown exception.","created":"2023-10-20T17:31:22.039614+00:00","group_name":"APM","display_type":"write","restricted":false}}]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: | - {"description":"Created using the Datadog provider in Terraform","id":"nh6-989-ngw","layout_type":"ordered","notify_list":[],"restricted_roles":["7999d424-84c5-11ee-815e-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1700169401","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/nh6-989-ngw - method: PUT - id: 11 - response: - body: | - {"id":"nh6-989-ngw","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1700169401","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/nh6-989-ngw/tf-testaccdatadogdashboardrbacupdatetoopen-local-1700169401","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":3608645906888896}],"notify_list":[],"created_at":"2023-11-16T21:16:45.415252+00:00","modified_at":"2023-11-16T21:16:58.729317+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["7999d424-84c5-11ee-815e-da7ad0900002"]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v2/roles/7999d424-84c5-11ee-815e-da7ad0900002 - method: GET - id: 12 - response: - body: | - {"data":{"type":"roles","id":"7999d424-84c5-11ee-815e-da7ad0900002","attributes":{"name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1700169401","created_at":"2023-11-16T21:16:57.860508+00:00","modified_at":"2023-11-16T21:16:57.899799+00:00","user_count":0},"relationships":{"permissions":{"data":[{"type":"permissions","id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"},{"type":"permissions","id":"4441648c-d8b1-11e9-a77a-1b899a04b304"},{"type":"permissions","id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0"},{"type":"permissions","id":"12efc20e-d36c-11eb-a9b8-da7ad0900002"},{"type":"permissions","id":"7605ef24-f376-11eb-b90b-da7ad0900002"},{"type":"permissions","id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002"},{"type":"permissions","id":"f8e941cf-e746-11ec-b22d-da7ad0900002"},{"type":"permissions","id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002"},{"type":"permissions","id":"50c270de-69ee-11ee-9151-da7ad0900002"}]}}}} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/nh6-989-ngw - method: GET - id: 13 - response: - body: | - {"id":"nh6-989-ngw","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1700169401","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/nh6-989-ngw/tf-testaccdatadogdashboardrbacupdatetoopen-local-1700169401","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":3608645906888896}],"notify_list":[],"created_at":"2023-11-16T21:16:45.415252+00:00","modified_at":"2023-11-16T21:16:58.729317+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["7999d424-84c5-11ee-815e-da7ad0900002"]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v2/roles/7999d424-84c5-11ee-815e-da7ad0900002 - method: GET - id: 14 - response: - body: | - {"data":{"type":"roles","id":"7999d424-84c5-11ee-815e-da7ad0900002","attributes":{"name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1700169401","created_at":"2023-11-16T21:16:57.860508+00:00","modified_at":"2023-11-16T21:16:57.899799+00:00","user_count":0},"relationships":{"permissions":{"data":[{"type":"permissions","id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2"},{"type":"permissions","id":"4441648c-d8b1-11e9-a77a-1b899a04b304"},{"type":"permissions","id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0"},{"type":"permissions","id":"12efc20e-d36c-11eb-a9b8-da7ad0900002"},{"type":"permissions","id":"7605ef24-f376-11eb-b90b-da7ad0900002"},{"type":"permissions","id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002"},{"type":"permissions","id":"f8e941cf-e746-11ec-b22d-da7ad0900002"},{"type":"permissions","id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002"},{"type":"permissions","id":"50c270de-69ee-11ee-9151-da7ad0900002"}]}}}} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/nh6-989-ngw - method: GET - id: 15 - response: - body: | - {"id":"nh6-989-ngw","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1700169401","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/nh6-989-ngw/tf-testaccdatadogdashboardrbacupdatetoopen-local-1700169401","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":3608645906888896}],"notify_list":[],"created_at":"2023-11-16T21:16:45.415252+00:00","modified_at":"2023-11-16T21:16:58.729317+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["7999d424-84c5-11ee-815e-da7ad0900002"]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - '*/*' - url: https://api.datadoghq.com/api/v2/roles/7999d424-84c5-11ee-815e-da7ad0900002 - method: DELETE - id: 16 - response: - body: "" - headers: - Content-Type: - - text/html; charset=utf-8 - status: 204 No Content - code: 204 - duration: "0ms" -- request: - body: | - {"description":"Created using the Datadog provider in Terraform","id":"nh6-989-ngw","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1700169401","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/nh6-989-ngw - method: PUT - id: 17 - response: - body: | - {"id":"nh6-989-ngw","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1700169401","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/nh6-989-ngw/tf-testaccdatadogdashboardrbacupdatetoopen-local-1700169401","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":4480273227209839}],"notify_list":[],"created_at":"2023-11-16T21:16:45.415252+00:00","modified_at":"2023-11-16T21:17:05.465354+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/nh6-989-ngw - method: GET - id: 18 - response: - body: | - {"id":"nh6-989-ngw","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1700169401","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/nh6-989-ngw/tf-testaccdatadogdashboardrbacupdatetoopen-local-1700169401","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":4480273227209839}],"notify_list":[],"created_at":"2023-11-16T21:16:45.415252+00:00","modified_at":"2023-11-16T21:17:05.465354+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/nh6-989-ngw - method: GET - id: 19 - response: - body: | - {"id":"nh6-989-ngw","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1700169401","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/nh6-989-ngw/tf-testaccdatadogdashboardrbacupdatetoopen-local-1700169401","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":4480273227209839}],"notify_list":[],"created_at":"2023-11-16T21:16:45.415252+00:00","modified_at":"2023-11-16T21:17:05.465354+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/nh6-989-ngw - method: DELETE - id: 20 - response: - body: | - {"deleted_dashboard_id":"nh6-989-ngw"} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 373 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: | + {"description":"Created using the Datadog provider in Terraform","id":"","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard + method: POST + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6178376213271267}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:40.607839+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 526.783916ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6178376213271267}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:40.607839+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 172.495833ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6178376213271267}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:40.607839+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 161.883083ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6178376213271267}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:40.607839+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 173.966625ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 364 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: | + {"description":"Created using the Datadog provider in Terraform","id":"v6a-9re-e4u","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + method: PUT + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":3388164820821612}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:46.579816+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 367.420708ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":3388164820821612}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:46.579816+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 224.112875ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":3388164820821612}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:46.579816+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 182.7355ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":3388164820821612}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:46.579816+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 174.061958ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 130 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: | + {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917"},"relationships":{},"type":"roles"}} + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + url: https://api.datadoghq.com/api/v2/roles + method: POST + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 984 + uncompressed: false + body: '{"data":{"id":"a1480a9a-f387-11ef-a716-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:52.376893Z","modified_at":"2025-02-25T14:48:52.375975Z","name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + headers: + Content-Type: + - application/vnd.api+json + status: 200 OK + code: 200 + duration: 158.740791ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v2/roles/a1480a9a-f387-11ef-a716-da7ad0900002 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 1067 + uncompressed: false + body: '{"data":{"id":"a1480a9a-f387-11ef-a716-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:52.376893Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-25T14:48:52.375975Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + headers: + Content-Type: + - application/vnd.api+json + status: 200 OK + code: 200 + duration: 128.1ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 424 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: | + {"description":"Created using the Datadog provider in Terraform","id":"v6a-9re-e4u","layout_type":"ordered","notify_list":[],"restricted_roles":["a1480a9a-f387-11ef-a716-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + method: PUT + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":8221006609087974}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:53.092971+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["a1480a9a-f387-11ef-a716-da7ad0900002"]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 345.207667ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v2/roles/a1480a9a-f387-11ef-a716-da7ad0900002 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 1067 + uncompressed: false + body: '{"data":{"id":"a1480a9a-f387-11ef-a716-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:52.376893Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-25T14:48:52.375975Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + headers: + Content-Type: + - application/vnd.api+json + status: 200 OK + code: 200 + duration: 126.842084ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":8221006609087974}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:53.092971+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["a1480a9a-f387-11ef-a716-da7ad0900002"]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 169.097833ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v2/roles/a1480a9a-f387-11ef-a716-da7ad0900002 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 1067 + uncompressed: false + body: '{"data":{"id":"a1480a9a-f387-11ef-a716-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:52.376893Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-25T14:48:52.375975Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + headers: + Content-Type: + - application/vnd.api+json + status: 200 OK + code: 200 + duration: 141.292917ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":8221006609087974}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:53.092971+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["a1480a9a-f387-11ef-a716-da7ad0900002"]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 248.795166ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - '*/*' + url: https://api.datadoghq.com/api/v2/roles/a1480a9a-f387-11ef-a716-da7ad0900002 + method: DELETE + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: {} + status: 204 No Content + code: 204 + duration: 142.063ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 364 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: | + {"description":"Created using the Datadog provider in Terraform","id":"v6a-9re-e4u","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + method: PUT + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6766051948335979}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:57.753049+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 314.927084ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6766051948335979}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:57.753049+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 163.245541ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6766051948335979}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:57.753049+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 230.758667ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + method: DELETE + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"deleted_dashboard_id":"v6a-9re-e4u"} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 204.918042ms diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.freeze b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.freeze index 88fb9781e..c31643cd4 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.freeze +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.freeze @@ -1 +1 @@ -2023-04-20T11:11:29.179603-04:00 \ No newline at end of file +2025-02-25T15:48:37.052163+01:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.yaml b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.yaml index cb424abc3..c0fd0cc6b 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.yaml +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.yaml @@ -1,226 +1,422 @@ +--- version: 2 interactions: -- request: - body: | - {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1682003489","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard - method: POST - id: 0 - response: - body: | - {"id":"8v6-r9y-g24","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1682003489","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/8v6-r9y-g24/tf-testaccdatadogdashboardrbacupdatetorbac-local-1682003489","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5960911658410696}],"notify_list":[],"created_at":"2023-04-20T15:11:30.755620+00:00","modified_at":"2023-04-20T15:11:30.755620+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/8v6-r9y-g24 - method: GET - id: 1 - response: - body: | - {"id":"8v6-r9y-g24","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1682003489","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/8v6-r9y-g24/tf-testaccdatadogdashboardrbacupdatetorbac-local-1682003489","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5960911658410696}],"notify_list":[],"created_at":"2023-04-20T15:11:30.755620+00:00","modified_at":"2023-04-20T15:11:30.755620+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/8v6-r9y-g24 - method: GET - id: 2 - response: - body: | - {"id":"8v6-r9y-g24","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1682003489","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/8v6-r9y-g24/tf-testaccdatadogdashboardrbacupdatetorbac-local-1682003489","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5960911658410696}],"notify_list":[],"created_at":"2023-04-20T15:11:30.755620+00:00","modified_at":"2023-04-20T15:11:30.755620+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/8v6-r9y-g24 - method: GET - id: 3 - response: - body: | - {"id":"8v6-r9y-g24","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1682003489","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/8v6-r9y-g24/tf-testaccdatadogdashboardrbacupdatetorbac-local-1682003489","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5960911658410696}],"notify_list":[],"created_at":"2023-04-20T15:11:30.755620+00:00","modified_at":"2023-04-20T15:11:30.755620+00:00","template_variable_presets":[],"tags":[]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: | - {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1682003489"},"relationships":{},"type":"roles"}} - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - url: https://api.datadoghq.com/api/v2/roles - method: POST - id: 4 - response: - body: | - {"data":{"type":"roles","id":"a2f43cc0-df8d-11ed-a958-da7ad0900002","attributes":{"name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1682003489","created_at":"2023-04-20T15:11:33.564964+00:00","modified_at":"2023-04-20T15:11:33.599779+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 - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v2/roles/a2f43cc0-df8d-11ed-a958-da7ad0900002 - method: GET - id: 5 - response: - body: | - {"data":{"type":"roles","id":"a2f43cc0-df8d-11ed-a958-da7ad0900002","attributes":{"name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1682003489","created_at":"2023-04-20T15:11:33.564964+00:00","modified_at":"2023-04-20T15:11:33.599779+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: "0ms" -- request: - body: | - {"description":"Created using the Datadog provider in Terraform","id":"8v6-r9y-g24","layout_type":"ordered","notify_list":[],"restricted_roles":["a2f43cc0-df8d-11ed-a958-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1682003489","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} - form: {} - headers: - Accept: - - application/json - Content-Type: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/8v6-r9y-g24 - method: PUT - id: 6 - response: - body: | - {"id":"8v6-r9y-g24","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1682003489","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/8v6-r9y-g24/tf-testaccdatadogdashboardrbacupdatetorbac-local-1682003489","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":4575732368800907}],"notify_list":[],"created_at":"2023-04-20T15:11:30.755620+00:00","modified_at":"2023-04-20T15:11:34.070995+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["a2f43cc0-df8d-11ed-a958-da7ad0900002"]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/8v6-r9y-g24 - method: GET - id: 7 - response: - body: | - {"id":"8v6-r9y-g24","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1682003489","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/8v6-r9y-g24/tf-testaccdatadogdashboardrbacupdatetorbac-local-1682003489","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":4575732368800907}],"notify_list":[],"created_at":"2023-04-20T15:11:30.755620+00:00","modified_at":"2023-04-20T15:11:34.070995+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["a2f43cc0-df8d-11ed-a958-da7ad0900002"]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v2/roles/a2f43cc0-df8d-11ed-a958-da7ad0900002 - method: GET - id: 8 - response: - body: | - {"data":{"type":"roles","id":"a2f43cc0-df8d-11ed-a958-da7ad0900002","attributes":{"name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1682003489","created_at":"2023-04-20T15:11:33.564964+00:00","modified_at":"2023-04-20T15:11:33.599779+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: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/8v6-r9y-g24 - method: GET - id: 9 - response: - body: | - {"id":"8v6-r9y-g24","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1682003489","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":null,"layout_type":"ordered","url":"/dashboard/8v6-r9y-g24/tf-testaccdatadogdashboardrbacupdatetorbac-local-1682003489","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":4575732368800907}],"notify_list":[],"created_at":"2023-04-20T15:11:30.755620+00:00","modified_at":"2023-04-20T15:11:34.070995+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["a2f43cc0-df8d-11ed-a958-da7ad0900002"]} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/8v6-r9y-g24 - method: DELETE - id: 10 - response: - body: | - {"deleted_dashboard_id":"8v6-r9y-g24"} - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: "0ms" -- request: - body: "" - form: {} - headers: - Accept: - - '*/*' - url: https://api.datadoghq.com/api/v2/roles/a2f43cc0-df8d-11ed-a958-da7ad0900002 - method: DELETE - id: 11 - response: - body: "" - headers: - Content-Type: - - text/html; charset=utf-8 - status: 204 No Content - code: 204 - duration: "0ms" + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 353 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: | + {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard + method: POST + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"c93-pyu-f4b","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/c93-pyu-f4b/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2922256447214640}],"notify_list":[],"created_at":"2025-02-25T14:48:40.688091+00:00","modified_at":"2025-02-25T14:48:40.688091+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 452.8065ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/c93-pyu-f4b + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"c93-pyu-f4b","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/c93-pyu-f4b/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2922256447214640}],"notify_list":[],"created_at":"2025-02-25T14:48:40.688091+00:00","modified_at":"2025-02-25T14:48:40.688091+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 173.485166ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/c93-pyu-f4b + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"c93-pyu-f4b","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/c93-pyu-f4b/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2922256447214640}],"notify_list":[],"created_at":"2025-02-25T14:48:40.688091+00:00","modified_at":"2025-02-25T14:48:40.688091+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 180.203583ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/c93-pyu-f4b + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"c93-pyu-f4b","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/c93-pyu-f4b/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2922256447214640}],"notify_list":[],"created_at":"2025-02-25T14:48:40.688091+00:00","modified_at":"2025-02-25T14:48:40.688091+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 160.708833ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 130 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: | + {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917"},"relationships":{},"type":"roles"}} + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + url: https://api.datadoghq.com/api/v2/roles + method: POST + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 984 + uncompressed: false + body: '{"data":{"id":"9d827800-f387-11ef-abe1-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:46.048562Z","modified_at":"2025-02-25T14:48:46.048004Z","name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + headers: + Content-Type: + - application/vnd.api+json + status: 200 OK + code: 200 + duration: 126.613042ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v2/roles/9d827800-f387-11ef-abe1-da7ad0900002 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 1067 + uncompressed: false + body: '{"data":{"id":"9d827800-f387-11ef-abe1-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:46.048562Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-25T14:48:46.048004Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + headers: + Content-Type: + - application/vnd.api+json + status: 200 OK + code: 200 + duration: 125.721083ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 424 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: | + {"description":"Created using the Datadog provider in Terraform","id":"c93-pyu-f4b","layout_type":"ordered","notify_list":[],"restricted_roles":["9d827800-f387-11ef-abe1-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + form: {} + headers: + Accept: + - application/json + Content-Type: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/c93-pyu-f4b + method: PUT + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"c93-pyu-f4b","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/c93-pyu-f4b/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2775555185927078}],"notify_list":[],"created_at":"2025-02-25T14:48:40.688091+00:00","modified_at":"2025-02-25T14:48:46.815675+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9d827800-f387-11ef-abe1-da7ad0900002"]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 379.109333ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/c93-pyu-f4b + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"c93-pyu-f4b","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/c93-pyu-f4b/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2775555185927078}],"notify_list":[],"created_at":"2025-02-25T14:48:40.688091+00:00","modified_at":"2025-02-25T14:48:46.815675+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9d827800-f387-11ef-abe1-da7ad0900002"]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 201.146041ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v2/roles/9d827800-f387-11ef-abe1-da7ad0900002 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 1067 + uncompressed: false + body: '{"data":{"id":"9d827800-f387-11ef-abe1-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:46.048562Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-25T14:48:46.048004Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + headers: + Content-Type: + - application/vnd.api+json + status: 200 OK + code: 200 + duration: 126.46425ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/c93-pyu-f4b + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"c93-pyu-f4b","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/c93-pyu-f4b/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2775555185927078}],"notify_list":[],"created_at":"2025-02-25T14:48:40.688091+00:00","modified_at":"2025-02-25T14:48:46.815675+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9d827800-f387-11ef-abe1-da7ad0900002"]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 173.177667ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/c93-pyu-f4b + method: DELETE + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"deleted_dashboard_id":"c93-pyu-f4b"} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 221.094708ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - '*/*' + url: https://api.datadoghq.com/api/v2/roles/9d827800-f387-11ef-abe1-da7ad0900002 + method: DELETE + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: {} + status: 204 No Content + code: 204 + duration: 140.121708ms From ce3b4ece07d2b030492ec2020d0c06d55d26615a Mon Sep 17 00:00:00 2001 From: Etienne Carriere Date: Wed, 26 Feb 2025 08:49:05 +0100 Subject: [PATCH 3/5] Fix docs based on comment --- datadog/resource_datadog_dashboard.go | 4 ++-- docs/resources/dashboard.md | 8 ++++---- docs/resources/powerpack.md | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/datadog/resource_datadog_dashboard.go b/datadog/resource_datadog_dashboard.go index 5c275c2a6..ff8352aa0 100644 --- a/datadog/resource_datadog_dashboard.go +++ b/datadog/resource_datadog_dashboard.go @@ -5903,7 +5903,7 @@ func getListStreamRequestSchema() map[string]*schema.Schema { Elem: &schema.Resource{ Schema: map[string]*schema.Schema{ "clustering_pattern_field_path": { - Description: "Specifies the field for logs pattern clustering. Usable only with logs_pattern_stream.", + Description: "Specifies the field for logs pattern clustering. Can only be used with `logs_pattern_stream`.", Optional: true, Type: schema.TypeString, }, @@ -5925,7 +5925,7 @@ func getListStreamRequestSchema() map[string]*schema.Schema { ValidateDiagFunc: validators.ValidateEnumValue(datadogV1.NewWidgetEventSizeFromValue), }, "group_by": { - Description: "Group by configuration for the List Stream Widget. Group by can be used only with logs_pattern_stream (up to 4 items) or logs_transaction_stream (one group by item is required) list stream source.", + Description: "Group by configuration for the List Stream widget. Group by can only be used with `logs_pattern_stream` (up to 4 items) or `logs_transaction_stream` (one group by item is required) list stream source.", Optional: true, Type: schema.TypeList, Elem: &schema.Resource{ diff --git a/docs/resources/dashboard.md b/docs/resources/dashboard.md index 2905668eb..eb88de954 100644 --- a/docs/resources/dashboard.md +++ b/docs/resources/dashboard.md @@ -5305,9 +5305,9 @@ Required: Optional: -- `clustering_pattern_field_path` (String) Specifies the field for logs pattern clustering. Usable only with logs_pattern_stream. +- `clustering_pattern_field_path` (String) Specifies the field for logs pattern clustering. Can only be used with `logs_pattern_stream`. - `event_size` (String) Size of events displayed in widget. Required if `data_source` is `event_stream`. Valid values are `s`, `l`. -- `group_by` (Block List) Group by configuration for the List Stream Widget. Group by can be used only with logs_pattern_stream (up to 4 items) or logs_transaction_stream (one group by item is required) list stream source. (see [below for nested schema](#nestedblock--widget--group_definition--widget--list_stream_definition--request--query--group_by)) +- `group_by` (Block List) Group by configuration for the List Stream widget. Group by can only be used with `logs_pattern_stream` (up to 4 items) or `logs_transaction_stream` (one group by item is required) list stream source. (see [below for nested schema](#nestedblock--widget--group_definition--widget--list_stream_definition--request--query--group_by)) - `indexes` (List of String) List of indexes. - `query_string` (String) Widget query. - `sort` (Block List, Max: 1) The facet and order to sort the data, for example: `{"column": "time", "order": "desc"}`. (see [below for nested schema](#nestedblock--widget--group_definition--widget--list_stream_definition--request--query--sort)) @@ -17889,9 +17889,9 @@ Required: Optional: -- `clustering_pattern_field_path` (String) Specifies the field for logs pattern clustering. Usable only with logs_pattern_stream. +- `clustering_pattern_field_path` (String) Specifies the field for logs pattern clustering. Can only be used with `logs_pattern_stream`. - `event_size` (String) Size of events displayed in widget. Required if `data_source` is `event_stream`. Valid values are `s`, `l`. -- `group_by` (Block List) Group by configuration for the List Stream Widget. Group by can be used only with logs_pattern_stream (up to 4 items) or logs_transaction_stream (one group by item is required) list stream source. (see [below for nested schema](#nestedblock--widget--list_stream_definition--request--query--group_by)) +- `group_by` (Block List) Group by configuration for the List Stream widget. Group by can only be used with `logs_pattern_stream` (up to 4 items) or `logs_transaction_stream` (one group by item is required) list stream source. (see [below for nested schema](#nestedblock--widget--list_stream_definition--request--query--group_by)) - `indexes` (List of String) List of indexes. - `query_string` (String) Widget query. - `sort` (Block List, Max: 1) The facet and order to sort the data, for example: `{"column": "time", "order": "desc"}`. (see [below for nested schema](#nestedblock--widget--list_stream_definition--request--query--sort)) diff --git a/docs/resources/powerpack.md b/docs/resources/powerpack.md index 758f66ea8..c1137fba8 100644 --- a/docs/resources/powerpack.md +++ b/docs/resources/powerpack.md @@ -2990,9 +2990,9 @@ Required: Optional: -- `clustering_pattern_field_path` (String) Specifies the field for logs pattern clustering. Usable only with logs_pattern_stream. +- `clustering_pattern_field_path` (String) Specifies the field for logs pattern clustering. Can only be used with `logs_pattern_stream`. - `event_size` (String) Size of events displayed in widget. Required if `data_source` is `event_stream`. Valid values are `s`, `l`. -- `group_by` (Block List) Group by configuration for the List Stream Widget. Group by can be used only with logs_pattern_stream (up to 4 items) or logs_transaction_stream (one group by item is required) list stream source. (see [below for nested schema](#nestedblock--widget--list_stream_definition--request--query--group_by)) +- `group_by` (Block List) Group by configuration for the List Stream widget. Group by can only be used with `logs_pattern_stream` (up to 4 items) or `logs_transaction_stream` (one group by item is required) list stream source. (see [below for nested schema](#nestedblock--widget--list_stream_definition--request--query--group_by)) - `indexes` (List of String) List of indexes. - `query_string` (String) Widget query. - `sort` (Block List, Max: 1) The facet and order to sort the data, for example: `{"column": "time", "order": "desc"}`. (see [below for nested schema](#nestedblock--widget--list_stream_definition--request--query--sort)) From bb5a02154c652ed6f7b4ae958e1afef8a57b4930 Mon Sep 17 00:00:00 2001 From: Etienne Carriere Date: Wed, 26 Feb 2025 10:14:59 +0100 Subject: [PATCH 4/5] Update cassettes --- ...AccDatadogDashboardRbac_adminToRbac.freeze | 2 +- ...stAccDatadogDashboardRbac_adminToRbac.yaml | 72 +++++----- ...AccDatadogDashboardRbac_createAdmin.freeze | 2 +- ...stAccDatadogDashboardRbac_createAdmin.yaml | 30 ++-- ...tAccDatadogDashboardRbac_createOpen.freeze | 2 +- ...estAccDatadogDashboardRbac_createOpen.yaml | 30 ++-- ...tAccDatadogDashboardRbac_createRbac.freeze | 2 +- ...estAccDatadogDashboardRbac_createRbac.yaml | 56 ++++---- ...cDatadogDashboardRbac_updateToAdmin.freeze | 2 +- ...AccDatadogDashboardRbac_updateToAdmin.yaml | 96 +++++++++---- ...ccDatadogDashboardRbac_updateToOpen.freeze | 2 +- ...tAccDatadogDashboardRbac_updateToOpen.yaml | 132 +++++++++--------- ...ccDatadogDashboardRbac_updateToRbac.freeze | 2 +- ...tAccDatadogDashboardRbac_updateToRbac.yaml | 72 +++++----- 14 files changed, 268 insertions(+), 234 deletions(-) diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.freeze b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.freeze index 062d7889e..b4df311b6 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.freeze +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.freeze @@ -1 +1 @@ -2025-02-25T15:48:37.056455+01:00 \ No newline at end of file +2025-02-26T10:13:22.350749+01:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.yaml b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.yaml index 044ebb3fb..53dea7da1 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.yaml +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.yaml @@ -13,7 +13,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: @@ -32,13 +32,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"jk8-8jt-r5r","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/jk8-8jt-r5r/tf-testaccdatadogdashboardrbacadmintorbac-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":832370349182560}],"notify_list":[],"created_at":"2025-02-25T14:48:40.741742+00:00","modified_at":"2025-02-25T14:48:40.741742+00:00","template_variable_presets":[],"tags":[]} + {"id":"r58-zg7-k95","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/r58-zg7-k95/tf-testaccdatadogdashboardrbacadmintorbac-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7297170477277332}],"notify_list":[],"created_at":"2025-02-26T09:13:26.271291+00:00","modified_at":"2025-02-26T09:13:26.271291+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 566.859917ms + duration: 646.890125ms - id: 1 request: proto: HTTP/1.1 @@ -55,7 +55,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/jk8-8jt-r5r + url: https://api.datadoghq.com/api/v1/dashboard/r58-zg7-k95 method: GET response: proto: HTTP/1.1 @@ -67,13 +67,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"jk8-8jt-r5r","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/jk8-8jt-r5r/tf-testaccdatadogdashboardrbacadmintorbac-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":832370349182560}],"notify_list":[],"created_at":"2025-02-25T14:48:40.741742+00:00","modified_at":"2025-02-25T14:48:40.741742+00:00","template_variable_presets":[],"tags":[]} + {"id":"r58-zg7-k95","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/r58-zg7-k95/tf-testaccdatadogdashboardrbacadmintorbac-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7297170477277332}],"notify_list":[],"created_at":"2025-02-26T09:13:26.271291+00:00","modified_at":"2025-02-26T09:13:26.271291+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 166.318667ms + duration: 155.692458ms - id: 2 request: proto: HTTP/1.1 @@ -90,7 +90,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/jk8-8jt-r5r + url: https://api.datadoghq.com/api/v1/dashboard/r58-zg7-k95 method: GET response: proto: HTTP/1.1 @@ -102,13 +102,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"jk8-8jt-r5r","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/jk8-8jt-r5r/tf-testaccdatadogdashboardrbacadmintorbac-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":832370349182560}],"notify_list":[],"created_at":"2025-02-25T14:48:40.741742+00:00","modified_at":"2025-02-25T14:48:40.741742+00:00","template_variable_presets":[],"tags":[]} + {"id":"r58-zg7-k95","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/r58-zg7-k95/tf-testaccdatadogdashboardrbacadmintorbac-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7297170477277332}],"notify_list":[],"created_at":"2025-02-26T09:13:26.271291+00:00","modified_at":"2025-02-26T09:13:26.271291+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 245.881208ms + duration: 612.185292ms - id: 3 request: proto: HTTP/1.1 @@ -125,7 +125,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/jk8-8jt-r5r + url: https://api.datadoghq.com/api/v1/dashboard/r58-zg7-k95 method: GET response: proto: HTTP/1.1 @@ -137,13 +137,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"jk8-8jt-r5r","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/jk8-8jt-r5r/tf-testaccdatadogdashboardrbacadmintorbac-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":832370349182560}],"notify_list":[],"created_at":"2025-02-25T14:48:40.741742+00:00","modified_at":"2025-02-25T14:48:40.741742+00:00","template_variable_presets":[],"tags":[]} + {"id":"r58-zg7-k95","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/r58-zg7-k95/tf-testaccdatadogdashboardrbacadmintorbac-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7297170477277332}],"notify_list":[],"created_at":"2025-02-26T09:13:26.271291+00:00","modified_at":"2025-02-26T09:13:26.271291+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 175.391958ms + duration: 177.605167ms - id: 4 request: proto: HTTP/1.1 @@ -156,7 +156,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917"},"relationships":{},"type":"roles"}} + {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202"},"relationships":{},"type":"roles"}} form: {} headers: Accept: @@ -173,13 +173,13 @@ interactions: trailer: {} content_length: 983 uncompressed: false - body: '{"data":{"id":"9d9b0ff0-f387-11ef-a9cf-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:46.209205Z","modified_at":"2025-02-25T14:48:46.208652Z","name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"f304345e-f421-11ef-88ef-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:31.988168Z","modified_at":"2025-02-26T09:13:31.999857Z","name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 139.717208ms + duration: 191.480666ms - id: 5 request: proto: HTTP/1.1 @@ -196,7 +196,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/9d9b0ff0-f387-11ef-a9cf-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/f304345e-f421-11ef-88ef-da7ad0900002 method: GET response: proto: HTTP/1.1 @@ -206,13 +206,13 @@ interactions: trailer: {} content_length: 1066 uncompressed: false - body: '{"data":{"id":"9d9b0ff0-f387-11ef-a9cf-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:46.209205Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-25T14:48:46.208652Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"f304345e-f421-11ef-88ef-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:31.988168Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:13:31.999857Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 131.628334ms + duration: 132.790209ms - id: 6 request: proto: HTTP/1.1 @@ -225,14 +225,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"jk8-8jt-r5r","layout_type":"ordered","notify_list":[],"restricted_roles":["9d9b0ff0-f387-11ef-a9cf-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"r58-zg7-k95","layout_type":"ordered","notify_list":[],"restricted_roles":["f304345e-f421-11ef-88ef-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: - application/json Content-Type: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/jk8-8jt-r5r + url: https://api.datadoghq.com/api/v1/dashboard/r58-zg7-k95 method: PUT response: proto: HTTP/1.1 @@ -244,13 +244,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"jk8-8jt-r5r","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/jk8-8jt-r5r/tf-testaccdatadogdashboardrbacadmintorbac-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":8298284489418048}],"notify_list":[],"created_at":"2025-02-25T14:48:40.741742+00:00","modified_at":"2025-02-25T14:48:46.942256+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9d9b0ff0-f387-11ef-a9cf-da7ad0900002"]} + {"id":"r58-zg7-k95","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/r58-zg7-k95/tf-testaccdatadogdashboardrbacadmintorbac-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2868530779491673}],"notify_list":[],"created_at":"2025-02-26T09:13:26.271291+00:00","modified_at":"2025-02-26T09:13:32.855329+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["f304345e-f421-11ef-88ef-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 370.075375ms + duration: 438.092417ms - id: 7 request: proto: HTTP/1.1 @@ -267,7 +267,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/jk8-8jt-r5r + url: https://api.datadoghq.com/api/v1/dashboard/r58-zg7-k95 method: GET response: proto: HTTP/1.1 @@ -279,13 +279,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"jk8-8jt-r5r","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/jk8-8jt-r5r/tf-testaccdatadogdashboardrbacadmintorbac-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":8298284489418048}],"notify_list":[],"created_at":"2025-02-25T14:48:40.741742+00:00","modified_at":"2025-02-25T14:48:46.942256+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9d9b0ff0-f387-11ef-a9cf-da7ad0900002"]} + {"id":"r58-zg7-k95","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/r58-zg7-k95/tf-testaccdatadogdashboardrbacadmintorbac-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2868530779491673}],"notify_list":[],"created_at":"2025-02-26T09:13:26.271291+00:00","modified_at":"2025-02-26T09:13:32.855329+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["f304345e-f421-11ef-88ef-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 206.969167ms + duration: 171.722209ms - id: 8 request: proto: HTTP/1.1 @@ -302,7 +302,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/9d9b0ff0-f387-11ef-a9cf-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/f304345e-f421-11ef-88ef-da7ad0900002 method: GET response: proto: HTTP/1.1 @@ -312,13 +312,13 @@ interactions: trailer: {} content_length: 1066 uncompressed: false - body: '{"data":{"id":"9d9b0ff0-f387-11ef-a9cf-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:46.209205Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-25T14:48:46.208652Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"f304345e-f421-11ef-88ef-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:31.988168Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:13:31.999857Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 127.833334ms + duration: 124.891208ms - id: 9 request: proto: HTTP/1.1 @@ -335,7 +335,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/jk8-8jt-r5r + url: https://api.datadoghq.com/api/v1/dashboard/r58-zg7-k95 method: GET response: proto: HTTP/1.1 @@ -347,13 +347,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"jk8-8jt-r5r","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/jk8-8jt-r5r/tf-testaccdatadogdashboardrbacadmintorbac-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":8298284489418048}],"notify_list":[],"created_at":"2025-02-25T14:48:40.741742+00:00","modified_at":"2025-02-25T14:48:46.942256+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9d9b0ff0-f387-11ef-a9cf-da7ad0900002"]} + {"id":"r58-zg7-k95","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/r58-zg7-k95/tf-testaccdatadogdashboardrbacadmintorbac-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2868530779491673}],"notify_list":[],"created_at":"2025-02-26T09:13:26.271291+00:00","modified_at":"2025-02-26T09:13:32.855329+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["f304345e-f421-11ef-88ef-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 164.277625ms + duration: 164.33375ms - id: 10 request: proto: HTTP/1.1 @@ -370,7 +370,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/jk8-8jt-r5r + url: https://api.datadoghq.com/api/v1/dashboard/r58-zg7-k95 method: DELETE response: proto: HTTP/1.1 @@ -382,13 +382,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"deleted_dashboard_id":"jk8-8jt-r5r"} + {"deleted_dashboard_id":"r58-zg7-k95"} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 206.392459ms + duration: 198.076667ms - id: 11 request: proto: HTTP/1.1 @@ -405,7 +405,7 @@ interactions: headers: Accept: - '*/*' - url: https://api.datadoghq.com/api/v2/roles/9d9b0ff0-f387-11ef-a9cf-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/f304345e-f421-11ef-88ef-da7ad0900002 method: DELETE response: proto: HTTP/1.1 @@ -419,4 +419,4 @@ interactions: headers: {} status: 204 No Content code: 204 - duration: 123.446917ms + duration: 137.821375ms diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.freeze b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.freeze index 1a29dbd22..9aeae1ef8 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.freeze +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.freeze @@ -1 +1 @@ -2025-02-25T15:48:37.051655+01:00 \ No newline at end of file +2025-02-26T10:13:22.34321+01:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.yaml b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.yaml index 9ab0c3b68..b14ab93c8 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.yaml +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.yaml @@ -13,7 +13,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: @@ -32,13 +32,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"6su-q9n-655","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/6su-q9n-655/tf-testaccdatadogdashboardrbaccreateadmin-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":165623797858857}],"notify_list":[],"created_at":"2025-02-25T14:48:40.755065+00:00","modified_at":"2025-02-25T14:48:40.755065+00:00","template_variable_presets":[],"tags":[]} + {"id":"ht5-kfc-yj9","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/ht5-kfc-yj9/tf-testaccdatadogdashboardrbaccreateadmin-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2355945497268537}],"notify_list":[],"created_at":"2025-02-26T09:13:26.089906+00:00","modified_at":"2025-02-26T09:13:26.089906+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 568.744833ms + duration: 599.465875ms - id: 1 request: proto: HTTP/1.1 @@ -55,7 +55,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/6su-q9n-655 + url: https://api.datadoghq.com/api/v1/dashboard/ht5-kfc-yj9 method: GET response: proto: HTTP/1.1 @@ -67,13 +67,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"6su-q9n-655","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/6su-q9n-655/tf-testaccdatadogdashboardrbaccreateadmin-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":165623797858857}],"notify_list":[],"created_at":"2025-02-25T14:48:40.755065+00:00","modified_at":"2025-02-25T14:48:40.755065+00:00","template_variable_presets":[],"tags":[]} + {"id":"ht5-kfc-yj9","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/ht5-kfc-yj9/tf-testaccdatadogdashboardrbaccreateadmin-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2355945497268537}],"notify_list":[],"created_at":"2025-02-26T09:13:26.089906+00:00","modified_at":"2025-02-26T09:13:26.089906+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 176.289958ms + duration: 189.197667ms - id: 2 request: proto: HTTP/1.1 @@ -90,7 +90,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/6su-q9n-655 + url: https://api.datadoghq.com/api/v1/dashboard/ht5-kfc-yj9 method: GET response: proto: HTTP/1.1 @@ -102,13 +102,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"6su-q9n-655","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/6su-q9n-655/tf-testaccdatadogdashboardrbaccreateadmin-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":165623797858857}],"notify_list":[],"created_at":"2025-02-25T14:48:40.755065+00:00","modified_at":"2025-02-25T14:48:40.755065+00:00","template_variable_presets":[],"tags":[]} + {"id":"ht5-kfc-yj9","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/ht5-kfc-yj9/tf-testaccdatadogdashboardrbaccreateadmin-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2355945497268537}],"notify_list":[],"created_at":"2025-02-26T09:13:26.089906+00:00","modified_at":"2025-02-26T09:13:26.089906+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 227.683875ms + duration: 176.132208ms - id: 3 request: proto: HTTP/1.1 @@ -125,7 +125,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/6su-q9n-655 + url: https://api.datadoghq.com/api/v1/dashboard/ht5-kfc-yj9 method: GET response: proto: HTTP/1.1 @@ -137,13 +137,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"6su-q9n-655","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/6su-q9n-655/tf-testaccdatadogdashboardrbaccreateadmin-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":165623797858857}],"notify_list":[],"created_at":"2025-02-25T14:48:40.755065+00:00","modified_at":"2025-02-25T14:48:40.755065+00:00","template_variable_presets":[],"tags":[]} + {"id":"ht5-kfc-yj9","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/ht5-kfc-yj9/tf-testaccdatadogdashboardrbaccreateadmin-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2355945497268537}],"notify_list":[],"created_at":"2025-02-26T09:13:26.089906+00:00","modified_at":"2025-02-26T09:13:26.089906+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 169.540166ms + duration: 319.754333ms - id: 4 request: proto: HTTP/1.1 @@ -160,7 +160,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/6su-q9n-655 + url: https://api.datadoghq.com/api/v1/dashboard/ht5-kfc-yj9 method: DELETE response: proto: HTTP/1.1 @@ -172,10 +172,10 @@ interactions: content_length: -1 uncompressed: true body: | - {"deleted_dashboard_id":"6su-q9n-655"} + {"deleted_dashboard_id":"ht5-kfc-yj9"} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 219.190417ms + duration: 344.941792ms diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.freeze b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.freeze index 9fa6ce14b..313acebac 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.freeze +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.freeze @@ -1 +1 @@ -2025-02-25T15:48:37.052537+01:00 \ No newline at end of file +2025-02-26T10:13:22.349142+01:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.yaml b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.yaml index 1ef999a9b..c91ca7487 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.yaml +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.yaml @@ -13,7 +13,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: @@ -32,13 +32,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"3uy-3aa-qrh","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/3uy-3aa-qrh/tf-testaccdatadogdashboardrbaccreateopen-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2767925479974969}],"notify_list":[],"created_at":"2025-02-25T14:48:40.708000+00:00","modified_at":"2025-02-25T14:48:40.708000+00:00","template_variable_presets":[],"tags":[]} + {"id":"q4g-dg6-g8p","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/q4g-dg6-g8p/tf-testaccdatadogdashboardrbaccreateopen-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":3337191839951989}],"notify_list":[],"created_at":"2025-02-26T09:13:26.344262+00:00","modified_at":"2025-02-26T09:13:26.344262+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 477.959833ms + duration: 536.285708ms - id: 1 request: proto: HTTP/1.1 @@ -55,7 +55,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/3uy-3aa-qrh + url: https://api.datadoghq.com/api/v1/dashboard/q4g-dg6-g8p method: GET response: proto: HTTP/1.1 @@ -67,13 +67,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"3uy-3aa-qrh","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/3uy-3aa-qrh/tf-testaccdatadogdashboardrbaccreateopen-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2767925479974969}],"notify_list":[],"created_at":"2025-02-25T14:48:40.708000+00:00","modified_at":"2025-02-25T14:48:40.708000+00:00","template_variable_presets":[],"tags":[]} + {"id":"q4g-dg6-g8p","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/q4g-dg6-g8p/tf-testaccdatadogdashboardrbaccreateopen-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":3337191839951989}],"notify_list":[],"created_at":"2025-02-26T09:13:26.344262+00:00","modified_at":"2025-02-26T09:13:26.344262+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 173.292834ms + duration: 176.95775ms - id: 2 request: proto: HTTP/1.1 @@ -90,7 +90,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/3uy-3aa-qrh + url: https://api.datadoghq.com/api/v1/dashboard/q4g-dg6-g8p method: GET response: proto: HTTP/1.1 @@ -102,13 +102,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"3uy-3aa-qrh","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/3uy-3aa-qrh/tf-testaccdatadogdashboardrbaccreateopen-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2767925479974969}],"notify_list":[],"created_at":"2025-02-25T14:48:40.708000+00:00","modified_at":"2025-02-25T14:48:40.708000+00:00","template_variable_presets":[],"tags":[]} + {"id":"q4g-dg6-g8p","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/q4g-dg6-g8p/tf-testaccdatadogdashboardrbaccreateopen-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":3337191839951989}],"notify_list":[],"created_at":"2025-02-26T09:13:26.344262+00:00","modified_at":"2025-02-26T09:13:26.344262+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 172.371375ms + duration: 176.372625ms - id: 3 request: proto: HTTP/1.1 @@ -125,7 +125,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/3uy-3aa-qrh + url: https://api.datadoghq.com/api/v1/dashboard/q4g-dg6-g8p method: GET response: proto: HTTP/1.1 @@ -137,13 +137,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"3uy-3aa-qrh","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/3uy-3aa-qrh/tf-testaccdatadogdashboardrbaccreateopen-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2767925479974969}],"notify_list":[],"created_at":"2025-02-25T14:48:40.708000+00:00","modified_at":"2025-02-25T14:48:40.708000+00:00","template_variable_presets":[],"tags":[]} + {"id":"q4g-dg6-g8p","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/q4g-dg6-g8p/tf-testaccdatadogdashboardrbaccreateopen-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":3337191839951989}],"notify_list":[],"created_at":"2025-02-26T09:13:26.344262+00:00","modified_at":"2025-02-26T09:13:26.344262+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 169.945167ms + duration: 342.503709ms - id: 4 request: proto: HTTP/1.1 @@ -160,7 +160,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/3uy-3aa-qrh + url: https://api.datadoghq.com/api/v1/dashboard/q4g-dg6-g8p method: DELETE response: proto: HTTP/1.1 @@ -172,10 +172,10 @@ interactions: content_length: -1 uncompressed: true body: | - {"deleted_dashboard_id":"3uy-3aa-qrh"} + {"deleted_dashboard_id":"q4g-dg6-g8p"} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 218.237917ms + duration: 319.163667ms diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.freeze b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.freeze index 38b9b1782..8c25750b2 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.freeze +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.freeze @@ -1 +1 @@ -2025-02-25T15:48:37.058755+01:00 \ No newline at end of file +2025-02-26T10:13:22.33888+01:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.yaml b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.yaml index 9c0829107..aa0a8e547 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.yaml +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.yaml @@ -13,7 +13,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740494917"},"relationships":{},"type":"roles"}} + {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740561202"},"relationships":{},"type":"roles"}} form: {} headers: Accept: @@ -30,13 +30,13 @@ interactions: trailer: {} content_length: 982 uncompressed: false - body: '{"data":{"id":"9a0be27e-f387-11ef-ac8c-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:40.238274Z","modified_at":"2025-02-25T14:48:40.237668Z","name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"ef5a892a-f421-11ef-8cab-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:25.855241Z","modified_at":"2025-02-26T09:13:25.855834Z","name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 384.596167ms + duration: 416.067417ms - id: 1 request: proto: HTTP/1.1 @@ -53,7 +53,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/9a0be27e-f387-11ef-ac8c-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/ef5a892a-f421-11ef-8cab-da7ad0900002 method: GET response: proto: HTTP/1.1 @@ -63,13 +63,13 @@ interactions: trailer: {} content_length: 1065 uncompressed: false - body: '{"data":{"id":"9a0be27e-f387-11ef-ac8c-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:40.238274Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-25T14:48:40.237668Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"ef5a892a-f421-11ef-8cab-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:25.855241Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:13:25.855834Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 345.9395ms + duration: 412.265125ms - id: 2 request: proto: HTTP/1.1 @@ -97,13 +97,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"data":[{"id":"984a2bd4-d3b4-11e8-a1ff-a7f660d43029","type":"permissions","attributes":{"created":"2018-10-19T15:35:23.734317Z","description":"Deprecated. Privileged Access (also known as Admin permission) has been replaced by more specific permissions: Access Management, Org Management, Billing Read/Write, Usage Read/Write.","display_name":"Privileged Access","display_type":"other","group_name":"General","name":"admin","restricted":false}},{"id":"984d2f00-d3b4-11e8-a200-bb47109e9987","type":"permissions","attributes":{"created":"2018-10-19T15:35:23.756736Z","description":"Deprecated. Standard Access has been replaced by more specific permissions.","display_name":"Standard Access","display_type":"other","group_name":"General","name":"standard","restricted":false}},{"id":"5e605652-dd12-11e8-9e53-375565b8970e","type":"permissions","attributes":{"created":"2018-10-31T13:39:19.72745Z","description":"Read log data, possibly scoped to one or more indexes. In order to read log data, a user must have both this permission and Logs Read Data. This permission can be granted in a limited capacity per index from the Logs interface or APIs. If granted via the Roles interface or API the permission has global scope. Restrictions are limited to the Log Management product.","display_name":"Logs Read Index Data","display_type":"read","group_name":"Log Management","name":"logs_read_index_data","restricted":false}},{"id":"62cc036c-dd12-11e8-9e54-db9995643092","type":"permissions","attributes":{"created":"2018-10-31T13:39:27.148615Z","description":"Read and modify all indexes in your account. This includes the ability to grant the Logs Read Index Data and Logs Write Exclusion Filters permission to other roles, for some or all indexes.","display_name":"Logs Modify Indexes","display_type":"write","group_name":"Log Management","name":"logs_modify_indexes","restricted":false}},{"id":"6f66600e-dd12-11e8-9e55-7f30fbb45e73","type":"permissions","attributes":{"created":"2018-10-31T13:39:48.292879Z","description":"View the live tail feed for all log indexes, even if otherwise specifically restricted.","display_name":"Logs Live Tail","display_type":"read","group_name":"Log Management","name":"logs_live_tail","restricted":false}},{"id":"7d7c98ac-dd12-11e8-9e56-93700598622d","type":"permissions","attributes":{"created":"2018-10-31T13:40:11.926613Z","description":"Add and change exclusion filters for all or some log indexes. Can be granted in a limited capacity per index to specific roles via the Logs interface or API. If granted from the Roles interface or API, the permission has global scope.","display_name":"Logs Write Exclusion Filters","display_type":"write","group_name":"Log Management","name":"logs_write_exclusion_filters","restricted":false}},{"id":"811ac4ca-dd12-11e8-9e57-676a7f0beef9","type":"permissions","attributes":{"created":"2018-10-31T13:40:17.996379Z","description":"Add and change log pipeline configurations, including the ability to grant the Logs Write Processors permission to other roles, for some or all pipelines.","display_name":"Logs Write Pipelines","display_type":"write","group_name":"Log Management","name":"logs_write_pipelines","restricted":false}},{"id":"84aa3ae4-dd12-11e8-9e58-a373a514ccd0","type":"permissions","attributes":{"created":"2018-10-31T13:40:23.969725Z","description":"Add and change some or all log processor configurations. Can be granted in a limited capacity per pipeline to specific roles via the Logs interface or API. If granted via the Roles interface or API the permission has global scope.","display_name":"Logs Write Processors","display_type":"write","group_name":"Log Management","name":"logs_write_processors","restricted":false}},{"id":"87b00304-dd12-11e8-9e59-cbeb5f71f72f","type":"permissions","attributes":{"created":"2018-10-31T13:40:29.040786Z","description":"Add and edit Log Archives.","display_name":"Logs Write Archives","display_type":"write","group_name":"Log Management","name":"logs_write_archives","restricted":false}},{"id":"979df720-aed7-11e9-99c6-a7eb8373165a","type":"permissions","attributes":{"created":"2019-07-25T12:27:39.640758Z","description":"Create custom metrics from logs.","display_name":"Logs Generate Metrics","display_type":"write","group_name":"Log Management","name":"logs_generate_metrics","restricted":false}},{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions","attributes":{"created":"2019-09-10T14:39:51.955175Z","description":"View dashboards.","display_name":"Dashboards Read","display_type":"read","group_name":"Dashboards","name":"dashboards_read","restricted":true}},{"id":"d90f6831-d3d8-11e9-a77a-4fd230ddbc6a","type":"permissions","attributes":{"created":"2019-09-10T14:39:51.962944Z","description":"Create and change dashboards.","display_name":"Dashboards Write","display_type":"write","group_name":"Dashboards","name":"dashboards_write","restricted":false}},{"id":"d90f6832-d3d8-11e9-a77a-bf8a2607f864","type":"permissions","attributes":{"created":"2019-09-10T14:39:51.967094Z","description":"Generate public and authenticated links to share dashboards or embeddable graphs externally.","display_name":"Dashboards Public Share","display_type":"write","group_name":"Dashboards","name":"dashboards_public_share","restricted":false}},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions","attributes":{"created":"2019-09-16T18:39:07.744297Z","description":"View monitors.","display_name":"Monitors Read","display_type":"read","group_name":"Monitors","name":"monitors_read","restricted":true}},{"id":"48ef71ea-d8b1-11e9-a77a-93f408470ad0","type":"permissions","attributes":{"created":"2019-09-16T18:39:15.597109Z","description":"Edit and delete individual monitors.","display_name":"Monitors Write","display_type":"write","group_name":"Monitors","name":"monitors_write","restricted":false}},{"id":"4d87d5f8-d8b1-11e9-a77a-eb9c8350d04f","type":"permissions","attributes":{"created":"2019-09-16T18:39:23.306702Z","description":"Set downtimes to suppress alerts from any monitor in an organization. Mute and unmute monitors. The ability to write monitors is not required to set downtimes.","display_name":"Manage Downtimes","display_type":"write","group_name":"Monitors","name":"monitors_downtime","restricted":false}},{"id":"1af86ce4-7823-11ea-93dc-d7cad1b1c6cb","type":"permissions","attributes":{"created":"2020-04-06T16:24:35.989108Z","description":"Read log data. In order to read log data, a user must have both this permission and Logs Read Index Data. This permission can be restricted with restriction queries. Restrictions are limited to the Log Management product.","display_name":"Logs Read Data","display_type":"read","group_name":"Log Management","name":"logs_read_data","restricted":false}},{"id":"b382b982-8535-11ea-93de-2bf1bdf20798","type":"permissions","attributes":{"created":"2020-04-23T07:40:27.966133Z","description":"Read Log Archives location and use it for rehydration.","display_name":"Logs Read Archives","display_type":"read","group_name":"Log Management","name":"logs_read_archives","restricted":false}},{"id":"7314eb20-aa58-11ea-95e2-6fb6e4a451d5","type":"permissions","attributes":{"created":"2020-06-09T13:52:25.279909Z","description":"Read Detection Rules.","display_name":"Security Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_rules_read","restricted":false}},{"id":"7b516476-aa58-11ea-95e2-93718cd56369","type":"permissions","attributes":{"created":"2020-06-09T13:52:39.099413Z","description":"Create and edit Detection Rules.","display_name":"Security Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_rules_write","restricted":false}},{"id":"80de1ec0-aa58-11ea-95e2-aff381626d5d","type":"permissions","attributes":{"created":"2020-06-09T13:52:48.410398Z","description":"View Security Signals.","display_name":"Security Signals Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_signals_read","restricted":false}},{"id":"58b412cc-ff6d-11eb-bc9c-da7ad0900002","type":"permissions","attributes":{"created":"2021-08-17T15:11:06.963503Z","description":"Modify Security Signals.","display_name":"Security Signals Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_signals_write","restricted":false}},{"id":"9ac1d8cc-e707-11ea-aa2d-73d37e989a9d","type":"permissions","attributes":{"created":"2020-08-25T19:17:23.539701Z","description":"Invite other users to your organization.","display_name":"User Access Invite","display_type":"write","group_name":"Access Management","name":"user_access_invite","restricted":false}},{"id":"9de604d8-e707-11ea-aa2d-93f1a783b3a3","type":"permissions","attributes":{"created":"2020-08-25T19:17:28.810412Z","description":"Disable users, manage user roles, manage SAML-to-role mappings, and configure logs restriction queries.","display_name":"User Access Manage","display_type":"write","group_name":"Access Management","name":"user_access_manage","restricted":false}},{"id":"46a301da-ec5c-11ea-aa9f-73bedeab67ee","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View and manage Application Keys owned by the user.","display_name":"User App Keys","display_type":"write","group_name":"API and Application Keys","name":"user_app_keys","restricted":false}},{"id":"46a301db-ec5c-11ea-aa9f-2fe72193d60e","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View Application Keys owned by all users in the organization.","display_name":"Org App Keys Read","display_type":"read","group_name":"API and Application Keys","name":"org_app_keys_read","restricted":false}},{"id":"46a301dc-ec5c-11ea-aa9f-13b33f8f46ea","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Manage Application Keys owned by all users in the organization.","display_name":"Org App Keys Write","display_type":"write","group_name":"API and Application Keys","name":"org_app_keys_write","restricted":false}},{"id":"46a301dd-ec5c-11ea-aa9f-97edfb345bc9","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View, search, and use Synthetics private locations.","display_name":"Synthetics Private Locations Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_private_location_read","restricted":false}},{"id":"46a301de-ec5c-11ea-aa9f-a73252c24806","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Create and delete private locations in addition to having access to the associated installation guidelines.","display_name":"Synthetics Private Locations Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_private_location_write","restricted":false}},{"id":"46a301df-ec5c-11ea-aa9f-970a9ae645e5","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View your organization''s subscription and payment method but not make edits.","display_name":"Billing Read","display_type":"read","group_name":"Billing and Usage","name":"billing_read","restricted":false}},{"id":"46a301e0-ec5c-11ea-aa9f-6ba6cc675d8c","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Manage your organization''s subscription and payment method.","display_name":"Billing Edit","display_type":"write","group_name":"Billing and Usage","name":"billing_edit","restricted":false}},{"id":"46a301e1-ec5c-11ea-aa9f-afa39f6f3e36","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View your organization''s usage and usage attribution.","display_name":"Usage Read","display_type":"read","group_name":"Billing and Usage","name":"usage_read","restricted":false}},{"id":"46a301e2-ec5c-11ea-aa9f-1f511b7305fd","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Manage your organization''s usage attribution set-up.","display_name":"Usage Edit","display_type":"write","group_name":"Billing and Usage","name":"usage_edit","restricted":false}},{"id":"46a301e4-ec5c-11ea-aa9f-87282b3a50cc","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Edit and save tag configurations for custom metrics.","display_name":"Metric Tags Write","display_type":"write","group_name":"Metrics","name":"metric_tags_write","restricted":false}},{"id":"07c3c146-f7f8-11ea-acf6-0bd62b9ae60e","type":"permissions","attributes":{"created":"2020-09-16T08:38:44.242076Z","description":"Rehydrate logs from Archives.","display_name":"Logs Write Historical Views","display_type":"write","group_name":"Log Management","name":"logs_write_historical_view","restricted":false}},{"id":"2fbdac76-f923-11ea-adbc-07f3823e2b43","type":"permissions","attributes":{"created":"2020-09-17T20:20:10.834252Z","description":"View Audit Trail in your organization.","display_name":"Audit Trail Read","display_type":"read","group_name":"Compliance","name":"audit_logs_read","restricted":false}},{"id":"372896c4-f923-11ea-adbc-4fecd107156d","type":"permissions","attributes":{"created":"2020-09-17T20:20:23.279769Z","description":"List and retrieve the key values of all API Keys in your organization.","display_name":"API Keys Read","display_type":"read","group_name":"API and Application Keys","name":"api_keys_read","restricted":false}},{"id":"3e4d4d28-f923-11ea-adbc-e3565938c12e","type":"permissions","attributes":{"created":"2020-09-17T20:20:35.26443Z","description":"Create and rename API Keys for your organization.","display_name":"API Keys Write","display_type":"write","group_name":"API and Application Keys","name":"api_keys_write","restricted":false}},{"id":"4628ca54-f923-11ea-adbc-4b2b7f88c5e9","type":"permissions","attributes":{"created":"2020-09-17T20:20:48.446916Z","description":"View, search, and use Synthetics global variables.","display_name":"Synthetics Global Variable Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_global_variable_read","restricted":false}},{"id":"4ada6e36-f923-11ea-adbc-0788e5c5e3cf","type":"permissions","attributes":{"created":"2020-09-17T20:20:56.322003Z","description":"Create, edit, and delete global variables for Synthetics.","display_name":"Synthetics Global Variable Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_global_variable_write","restricted":false}},{"id":"5025ee24-f923-11ea-adbc-576ea241df8d","type":"permissions","attributes":{"created":"2020-09-17T20:21:05.205361Z","description":"List and view configured Synthetic tests and test results.","display_name":"Synthetics Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_read","restricted":false}},{"id":"55f4b5ec-f923-11ea-adbc-1bfa2334a755","type":"permissions","attributes":{"created":"2020-09-17T20:21:14.94914Z","description":"Create, edit, and delete Synthetic tests.","display_name":"Synthetics Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_write","restricted":false}},{"id":"5c6b88e2-f923-11ea-adbc-abf57d079420","type":"permissions","attributes":{"created":"2020-09-17T20:21:25.79416Z","description":"View the default settings for Synthetic Monitoring.","display_name":"Synthetics Default Settings Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_default_settings_read","restricted":false}},{"id":"642eebe6-f923-11ea-adbc-eb617674ea04","type":"permissions","attributes":{"created":"2020-09-17T20:21:38.818771Z","description":"Edit the default settings for Synthetic Monitoring.","display_name":"Synthetics Default Settings Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_default_settings_write","restricted":false}},{"id":"6ba32d22-0e1a-11eb-ba44-bf9a5aafaa39","type":"permissions","attributes":{"created":"2020-10-14T12:40:20.271908Z","description":"Create or edit Log Facets.","display_name":"Logs Write Facets","display_type":"write","group_name":"Log Management","name":"logs_write_facets","restricted":false}},{"id":"a42e94b2-1476-11eb-bd08-efda28c04248","type":"permissions","attributes":{"created":"2020-10-22T14:55:35.814239Z","description":"Create, disable, and use Service Accounts in your organization.","display_name":"Service Account Write","display_type":"write","group_name":"Access Management","name":"service_account_write","restricted":false}},{"id":"fcac2ad8-2843-11eb-8315-0fe47949d625","type":"permissions","attributes":{"created":"2020-11-16T19:43:23.198568Z","description":"Deprecated. Use the Integrations APIs to configure integrations. In order to configure integrations from the UI, a user must also have Standard Access.","display_name":"Integrations API","display_type":"other","group_name":"Integrations","name":"integrations_api","restricted":false}},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions","attributes":{"created":"2020-11-23T20:55:45.00611Z","description":"Read and query APM and Trace Analytics.","display_name":"APM Read","display_type":"read","group_name":"APM","name":"apm_read","restricted":true}},{"id":"43fa188e-2dce-11eb-84c0-835ad1fd6287","type":"permissions","attributes":{"created":"2020-11-23T20:55:49.190595Z","description":"Read trace retention filters. A user with this permission can view the retention filters page, list of filters, their statistics, and creation info.","display_name":"APM Retention Filters Read","display_type":"read","group_name":"APM","name":"apm_retention_filter_read","restricted":false}},{"id":"465cfe66-2dce-11eb-84c0-6baa888239fa","type":"permissions","attributes":{"created":"2020-11-23T20:55:53.194236Z","description":"Create, edit, and delete trace retention filters. A user with this permission can create new retention filters, and update or delete to existing retention filters.","display_name":"APM Retention Filters Write","display_type":"write","group_name":"APM","name":"apm_retention_filter_write","restricted":false}},{"id":"4916eebe-2dce-11eb-84c0-271cb2c672e8","type":"permissions","attributes":{"created":"2020-11-23T20:55:57.768261Z","description":"Access service ingestion pages. A user with this permission can view the service ingestion page, list of root services, their statistics, and creation info.","display_name":"APM Service Ingest Read","display_type":"read","group_name":"APM","name":"apm_service_ingest_read","restricted":false}},{"id":"4e3f02b4-2dce-11eb-84c0-2fca946a6efc","type":"permissions","attributes":{"created":"2020-11-23T20:56:06.419518Z","description":"Edit service ingestion pages'' root services. A user with this permission can edit the root service ingestion and generate a code snippet to increase ingestion per service.","display_name":"APM Service Ingest Write","display_type":"write","group_name":"APM","name":"apm_service_ingest_write","restricted":false}},{"id":"53950c54-2dce-11eb-84c0-a79ae108f6f8","type":"permissions","attributes":{"created":"2020-11-23T20:56:15.371926Z","description":"Set Apdex T value on any service. A user with this permission can set the T value from the Apdex graph on the service page.","display_name":"APM Apdex Manage Write","display_type":"write","group_name":"APM","name":"apm_apdex_manage_write","restricted":false}},{"id":"5cbe5f9c-2dce-11eb-84c0-872d3e9f1076","type":"permissions","attributes":{"created":"2020-11-23T20:56:30.742299Z","description":"Edit second primary tag selection. A user with this permission can modify the second primary tag dropdown in the APM settings page.","display_name":"APM Tag Management Write","display_type":"write","group_name":"APM","name":"apm_tag_management_write","restricted":false}},{"id":"61765026-2dce-11eb-84c0-833e230d1b8f","type":"permissions","attributes":{"created":"2020-11-23T20:56:38.658649Z","description":"Edit the operation name value selection. A user with this permission can modify the operation name list in the APM settings page and the operation name controller on the service page.","display_name":"APM Primary Operation Write","display_type":"write","group_name":"APM","name":"apm_primary_operation_write","restricted":false}},{"id":"04bc1cf2-340a-11eb-873a-43b973c760dd","type":"permissions","attributes":{"created":"2020-12-01T19:18:39.866516Z","description":"Configure Audit Trail in your organization.","display_name":"Audit Trail Write","display_type":"write","group_name":"Compliance","name":"audit_logs_write","restricted":false}},{"id":"8106300a-54f7-11eb-8cbc-7781a434a67b","type":"permissions","attributes":{"created":"2021-01-12T16:59:16.32448Z","description":"Create, edit, and delete RUM applications. Creating a RUM application automatically generates a Client Token. In order to create Client Tokens directly, a user needs the Client Tokens Write permission.","display_name":"RUM Apps Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_apps_write","restricted":false}},{"id":"edfd5e74-801f-11eb-96d8-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-08T15:06:59.006815Z","description":"Edit Dynamic Instrumentation configuration. Create or modify Dynamic Instrumentation probes that do not capture function state.","display_name":"Dynamic Instrumentation Write","display_type":"write","group_name":"APM","name":"debugger_write","restricted":false}},{"id":"edfd5e75-801f-11eb-96d8-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-08T15:06:59.010517Z","description":"View Dynamic Instrumentation configuration.","display_name":"Dynamic Instrumentation Read","display_type":"read","group_name":"APM","name":"debugger_read","restricted":false}},{"id":"bf0dcf7c-90af-11eb-9b82-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-29T16:56:46.394971Z","description":"View Sensitive Data Scanner configurations and scanning results.","display_name":"Data Scanner Read","display_type":"read","group_name":"Compliance","name":"data_scanner_read","restricted":false}},{"id":"bf0dcf7d-90af-11eb-9b82-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-29T16:56:46.398584Z","description":"Edit Sensitive Data Scanner configurations.","display_name":"Data Scanner Write","display_type":"write","group_name":"Compliance","name":"data_scanner_write","restricted":false}},{"id":"7df222b6-a45c-11eb-a0af-da7ad0900002","type":"permissions","attributes":{"created":"2021-04-23T17:51:12.18734Z","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 \u0026 unsubscribing from apps in the marketplace, and enabling \u0026 disabling Remote Configuration for the entire organization.","display_name":"Org Management","display_type":"write","group_name":"Access Management","name":"org_management","restricted":false}},{"id":"98b984f4-b16d-11eb-a2c6-da7ad0900002","type":"permissions","attributes":{"created":"2021-05-10T08:56:23.676833Z","description":"Read Security Filters.","display_name":"Security Filters Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_filters_read","restricted":false}},{"id":"98b984f5-b16d-11eb-a2c6-da7ad0900002","type":"permissions","attributes":{"created":"2021-05-10T08:56:23.680551Z","description":"Create, edit, and delete Security Filters.","display_name":"Security Filters Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_filters_write","restricted":false}},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.255499Z","description":"View incidents in Datadog.","display_name":"Incidents Read","display_type":"read","group_name":"Case and Incident Management","name":"incident_read","restricted":true}},{"id":"12efc211-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.264369Z","description":"Create, view, and manage incidents in Datadog.","display_name":"Incidents Write","display_type":"write","group_name":"Case and Incident Management","name":"incident_write","restricted":false}},{"id":"12efc20f-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.259568Z","description":"View Incident Settings.","display_name":"Incident Settings Read","display_type":"read","group_name":"Case and Incident Management","name":"incident_settings_read","restricted":false}},{"id":"12efc210-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.261986Z","description":"Configure Incident Settings.","display_name":"Incident Settings Write","display_type":"write","group_name":"Case and Incident Management","name":"incident_settings_write","restricted":false}},{"id":"97971c1c-e895-11eb-b13c-da7ad0900002","type":"permissions","attributes":{"created":"2021-07-19T13:31:15.595771Z","description":"View Application Security Management Event Rules.","display_name":"Application Security Management Event Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_event_rule_read","restricted":false}},{"id":"97971c1d-e895-11eb-b13c-da7ad0900002","type":"permissions","attributes":{"created":"2021-07-19T13:31:15.598808Z","description":"Edit Application Security Management Event Rules.","display_name":"Application Security Management Event Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_event_rule_write","restricted":false}},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions","attributes":{"created":"2021-08-02T09:46:07.671535Z","description":"View RUM Applications data.","display_name":"RUM Apps Read","display_type":"read","group_name":"Real User Monitoring","name":"rum_apps_read","restricted":true}},{"id":"7605ef25-f376-11eb-b90b-da7ad0900002","type":"permissions","attributes":{"created":"2021-08-02T09:46:07.67464Z","description":"View Session Replays.","display_name":"RUM Session Replay Read","display_type":"read","group_name":"Real User Monitoring","name":"rum_session_replay_read","restricted":false}},{"id":"c95412b8-16c7-11ec-85c0-da7ad0900002","type":"permissions","attributes":{"created":"2021-09-16T08:26:27.366789Z","description":"Read Notification Rules.","display_name":"Security Notification Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_notification_profiles_read","restricted":false}},{"id":"c95412b9-16c7-11ec-85c0-da7ad0900002","type":"permissions","attributes":{"created":"2021-09-16T08:26:27.369359Z","description":"Create, edit, and delete Notification Rules.","display_name":"Security Notification Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_notification_profiles_write","restricted":false}},{"id":"26c79920-1703-11ec-85d2-da7ad0900002","type":"permissions","attributes":{"created":"2021-09-16T15:31:24.458963Z","description":"Create custom metrics from spans.","display_name":"APM Generate Metrics","display_type":"write","group_name":"APM","name":"apm_generate_metrics","restricted":false}},{"id":"f4473c60-4792-11ec-a27b-da7ad0900002","type":"permissions","attributes":{"created":"2021-11-17T10:41:43.074031Z","description":"Read Cloud Workload Security Agent Rules.","display_name":"Cloud Workload Security Agent Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_cws_agent_rules_read","restricted":false}},{"id":"f4473c61-4792-11ec-a27b-da7ad0900002","type":"permissions","attributes":{"created":"2021-11-17T10:41:43.077905Z","description":"Create, edit, and delete Cloud Workload Security Agent Rules.","display_name":"Cloud Workload Security Agent Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_cws_agent_rules_write","restricted":false}},{"id":"020a563c-56a4-11ec-a982-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-06T14:51:35.049129Z","description":"Add and change APM pipeline configurations.","display_name":"APM Pipelines Write","display_type":"write","group_name":"APM","name":"apm_pipelines_write","restricted":false}},{"id":"8e4d6b6e-5750-11ec-a9f4-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-07T11:26:43.807269Z","description":"View APM pipeline configurations.","display_name":"APM Pipelines Read","display_type":"read","group_name":"APM","name":"apm_pipelines_read","restricted":false}},{"id":"945b3bb4-5884-11ec-aa6d-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-09T00:11:38.956827Z","description":"View pipelines in your organization.","display_name":"Observability Pipelines Read","display_type":"read","group_name":"Observability Pipelines","name":"observability_pipelines_read","restricted":false}},{"id":"945b3bb5-5884-11ec-aa6d-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-09T00:11:38.960833Z","description":"Edit pipelines in your organization.","display_name":"Observability Pipelines Write","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_write","restricted":false}},{"id":"f6e917a8-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.058412Z","description":"View workflows.","display_name":"Workflows Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"workflows_read","restricted":false}},{"id":"f6e917aa-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.061765Z","description":"Create, edit, and delete workflows.","display_name":"Workflows Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"workflows_write","restricted":false}},{"id":"f6e917a9-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.060079Z","description":"Run workflows.","display_name":"Workflows Run","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"workflows_run","restricted":false}},{"id":"f6e917a6-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.053432Z","description":"List and view available connections. Connections contain secrets that cannot be revealed.","display_name":"Connections Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"connections_read","restricted":false}},{"id":"f6e917a7-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.05659Z","description":"Create and delete connections.","display_name":"Connections Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"connections_write","restricted":false}},{"id":"7a89ec40-8b69-11ec-812d-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-11T18:36:08.531989Z","description":"Access all private incidents in Datadog, even when not added as a responder.","display_name":"Private Incidents Global Access","display_type":"read","group_name":"Case and Incident Management","name":"incidents_private_global_access","restricted":false}},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions","attributes":{"created":"2022-03-02T18:51:05.04095Z","description":"View notebooks.","display_name":"Notebooks Read","display_type":"read","group_name":"Notebooks","name":"notebooks_read","restricted":true}},{"id":"b6bf9ac7-9a59-11ec-8480-da7ad0900002","type":"permissions","attributes":{"created":"2022-03-02T18:51:05.044683Z","description":"Create and change notebooks.","display_name":"Notebooks Write","display_type":"write","group_name":"Notebooks","name":"notebooks_write","restricted":false}},{"id":"e35c06b0-966b-11ec-83c9-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-25T18:51:06.176019Z","description":"Delete data from your Logs, including entire indexes.","display_name":"Logs Delete Data","display_type":"write","group_name":"Log Management","name":"logs_delete_data","restricted":false}},{"id":"2108215e-b9b4-11ec-958e-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-11T16:26:24.106645Z","description":"Create custom metrics from RUM events.","display_name":"RUM Generate Metrics","display_type":"write","group_name":"Real User Monitoring","name":"rum_generate_metrics","restricted":false}},{"id":"7b1f5086-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.278829Z","description":"Add or remove but not edit AWS integration configurations.","display_name":"AWS Configurations Manage","display_type":"write","group_name":"Integrations","name":"aws_configurations_manage","restricted":false}},{"id":"7b1f5088-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.284056Z","description":"Add or remove but not edit Azure integration configurations.","display_name":"Azure Configurations Manage","display_type":"write","group_name":"Integrations","name":"azure_configurations_manage","restricted":false}},{"id":"7b1f5087-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.282282Z","description":"Add or remove but not edit GCP integration configurations.","display_name":"GCP Configurations Manage","display_type":"write","group_name":"Integrations","name":"gcp_configurations_manage","restricted":false}},{"id":"7b1f5089-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.285834Z","description":"Install, uninstall, and configure integrations.","display_name":"Integrations Manage","display_type":"write","group_name":"Integrations","name":"manage_integrations","restricted":false}},{"id":"1afff448-d5e9-11ec-ae37-da7ad0900002","type":"permissions","attributes":{"created":"2022-05-17T13:56:09.870985Z","description":"Receive notifications and view currently configured notification settings.","display_name":"Usage Notifications Read","display_type":"read","group_name":"Billing and Usage","name":"usage_notifications_read","restricted":false}},{"id":"1afff449-d5e9-11ec-ae37-da7ad0900002","type":"permissions","attributes":{"created":"2022-05-17T13:56:09.876124Z","description":"Receive notifications and configure notification settings.","display_name":"Usage Notifications Write","display_type":"write","group_name":"Billing and Usage","name":"usage_notifications_write","restricted":false}},{"id":"6c87d3da-e5c5-11ec-b1d6-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-06T18:21:03.378896Z","description":"Schedule PDF reports from a dashboard.","display_name":"Dashboards Report Write","display_type":"write","group_name":"Dashboards","name":"generate_dashboard_reports","restricted":false}},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-08T16:20:55.142591Z","description":"View SLOs and status corrections.","display_name":"SLOs Read","display_type":"read","group_name":"Service Level Objectives","name":"slos_read","restricted":true}},{"id":"f8e941d0-e746-11ec-b22d-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-08T16:20:55.143869Z","description":"Create, edit, and delete SLOs.","display_name":"SLOs Write","display_type":"write","group_name":"Service Level Objectives","name":"slos_write","restricted":false}},{"id":"f8e941ce-e746-11ec-b22d-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-08T16:20:55.13941Z","description":"Apply, edit, and delete SLO status corrections. A user with this permission can make status corrections, even if they do not have permission to edit those SLOs.","display_name":"SLOs Status Corrections","display_type":"write","group_name":"Service Level Objectives","name":"slos_corrections","restricted":false}},{"id":"4784b11c-f311-11ec-a5f5-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-23T16:26:48.150556Z","description":"Create, update, and delete monitor configuration policies.","display_name":"Monitor Configuration Policy Write","display_type":"write","group_name":"Monitors","name":"monitor_config_policy_write","restricted":false}},{"id":"ee68fba9-173a-11ed-b00b-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-08T16:55:39.377188Z","description":"Add, modify, and delete service catalog definitions when those definitions are maintained by Datadog.","display_name":"Service Catalog Write","display_type":"write","group_name":"APM","name":"apm_service_catalog_write","restricted":false}},{"id":"ee68fba8-173a-11ed-b00b-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-08T16:55:39.374377Z","description":"View service catalog and service definitions.","display_name":"Service Catalog Read","display_type":"read","group_name":"APM","name":"apm_service_catalog_read","restricted":false}},{"id":"5b2c3e28-1761-11ed-b018-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-08T21:30:42.723663Z","description":"Add and edit forwarding destinations and rules for logs.","display_name":"Logs Write Forwarding Rules","display_type":"write","group_name":"Log Management","name":"logs_write_forwarding_rules","restricted":false}},{"id":"6be119a6-1cd8-11ed-b185-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-15T20:25:36.677197Z","description":"Deprecated. Watchdog Insights endpoints are now OPEN.","display_name":"Watchdog Insights Read","display_type":"read","group_name":"Watchdog","name":"watchdog_insights_read","restricted":false}},{"id":"36e2a22e-248a-11ed-b405-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-25T15:25:56.32517Z","description":"Resolve connections.","display_name":"Connections Resolve","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"connections_resolve","restricted":false}},{"id":"4ee674f6-55d9-11ed-b10d-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.834253Z","description":"View blocked attackers.","display_name":"Application Security Management Protect Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_protect_read","restricted":false}},{"id":"4ee7e46c-55d9-11ed-b10e-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.843656Z","description":"Manage blocked attackers.","display_name":"Application Security Management Protect Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_protect_write","restricted":false}},{"id":"4ee5731c-55d9-11ed-b10b-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.827076Z","description":"View whether Application Security Management has been enabled or disabled on services via 1-click enablement with Remote Configuration.","display_name":"Application Security Management 1-click Enablement Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_activation_read","restricted":false}},{"id":"4ee60688-55d9-11ed-b10c-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.831383Z","description":"Enable or disable Application Security Management on services via 1-click enablement.","display_name":"Application Security Management 1-click Enablement Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_activation_write","restricted":false}},{"id":"99474cc2-5a12-11ed-b547-da7ad0900002","type":"permissions","attributes":{"created":"2022-11-01T18:25:44.584393Z","description":"View and run Apps in App Builder.","display_name":"Apps View","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_run","restricted":false}},{"id":"9948271e-5a12-11ed-b548-da7ad0900002","type":"permissions","attributes":{"created":"2022-11-01T18:25:44.590588Z","description":"Create, edit, and delete Apps in App Builder.","display_name":"Apps Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_write","restricted":false}},{"id":"8247acc4-7a4c-11ed-958f-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T18:40:54.018521Z","description":"View Cases.","display_name":"Cases Read","display_type":"read","group_name":"Case and Incident Management","name":"cases_read","restricted":false}},{"id":"824851a6-7a4c-11ed-9590-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T18:40:54.02328Z","description":"Create and update cases.","display_name":"Cases Write","display_type":"write","group_name":"Case and Incident Management","name":"cases_write","restricted":false}},{"id":"77d5f45e-7a5a-11ed-8abf-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T20:20:49.450768Z","description":"Edit APM Remote Configuration.","display_name":"APM Remote Configuration Write","display_type":"write","group_name":"APM","name":"apm_remote_configuration_write","restricted":false}},{"id":"77d55a44-7a5a-11ed-8abe-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T20:20:49.446298Z","description":"View APM Remote Configuration.","display_name":"APM Remote Configuration Read","display_type":"read","group_name":"APM","name":"apm_remote_configuration_read","restricted":false}},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.149406Z","description":"View CI Visibility.","display_name":"CI Visibility Read","display_type":"read","group_name":"Software Delivery","name":"ci_visibility_read","restricted":true}},{"id":"6c5c1090-7aff-11ed-a5cf-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.157428Z","description":"Edit flaky tests and delete Test Services.","display_name":"CI Visibility Tests Write","display_type":"write","group_name":"Software Delivery","name":"ci_visibility_write","restricted":false}},{"id":"6c59ae72-7aff-11ed-a5cc-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.141217Z","description":"Edit CI Provider settings. Manage GitHub accounts and repositories for enabling CI Visibility and job logs collection.","display_name":"CI Provider Settings Write","display_type":"write","group_name":"Software Delivery","name":"ci_provider_settings_write","restricted":false}},{"id":"6c5b7428-7aff-11ed-a5ce-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.153418Z","description":"Configure CI Visibility settings. Set a repository default branch, enable GitHub comments, and delete test services.","display_name":"CI Visibility Settings Write","display_type":"write","group_name":"Software Delivery","name":"ci_visibility_settings_write","restricted":false}},{"id":"6c5d0892-7aff-11ed-a5d0-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.163771Z","description":"Enable or disable Intelligent Test Runner.","display_name":"Intelligent Test Runner Activation Write","display_type":"write","group_name":"Software Delivery","name":"intelligent_test_runner_activation_write","restricted":false}},{"id":"6c5de654-7aff-11ed-a5d1-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.16943Z","description":"Edit Intelligent Test Runner settings, such as modifying ITR excluded branch list.","display_name":"Intelligent Test Runner Settings Write","display_type":"write","group_name":"Software Delivery","name":"intelligent_test_runner_settings_write","restricted":false}},{"id":"c13a2368-7d61-11ed-b5b7-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-16T16:50:32.545882Z","description":"View data in Continuous Profiler.","display_name":"Continuous Profiler Read","display_type":"read","group_name":"APM","name":"continuous_profiler_read","restricted":false}},{"id":"1d76ecfa-9771-11ed-9c2f-da7ad0900002","type":"permissions","attributes":{"created":"2023-01-18T20:45:59.977837Z","description":"Manage Teams. Create, delete, rename, and edit metadata of all Teams. To control Team membership across all Teams, use the User Access Manage permission.","display_name":"Teams Manage","display_type":"write","group_name":"Teams","name":"teams_manage","restricted":false}},{"id":"ca6bfb3a-b44f-11ed-adb2-da7ad0900002","type":"permissions","attributes":{"created":"2023-02-24T14:30:30.983679Z","description":"View a list of findings that include both misconfigurations and identity risks.","display_name":"Security Monitoring Findings Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_findings_read","restricted":false}},{"id":"4dc3eec6-b468-11ed-8539-da7ad0900002","type":"permissions","attributes":{"created":"2023-02-24T17:25:59.263037Z","description":"View Incidents Notification settings.","display_name":"Incident Notification Settings Read","display_type":"read","group_name":"Case and Incident Management","name":"incident_notification_settings_read","restricted":false}},{"id":"4dc4094c-b468-11ed-853a-da7ad0900002","type":"permissions","attributes":{"created":"2023-02-24T17:25:59.263037Z","description":"Configure Incidents Notification settings.","display_name":"Incident Notification Settings Write","display_type":"write","group_name":"Case and Incident Management","name":"incident_notification_settings_write","restricted":false}},{"id":"35dd33ea-ca2e-11ed-bca0-da7ad0900002","type":"permissions","attributes":{"created":"2023-03-24T10:25:33.934187Z","description":"Edit CI Ingestion Control exclusion filters.","display_name":"CI Visibility Ingestion Control Write","display_type":"write","group_name":"Software Delivery","name":"ci_ingestion_control_write","restricted":false}},{"id":"36bf3d0a-ccc0-11ed-9453-da7ad0900002","type":"permissions","attributes":{"created":"2023-03-27T16:55:44.263627Z","description":"Edit Error Tracking issues.","display_name":"Error Tracking Issue Write","display_type":"write","group_name":"Error Tracking","name":"error_tracking_write","restricted":false}},{"id":"f416f55e-db3f-11ed-8028-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-15T03:45:24.289668Z","description":"Manage Watchdog Alerts.","display_name":"Watchdog Alerts Write","display_type":"write","group_name":"Watchdog","name":"watchdog_alerts_write","restricted":false}},{"id":"f416b1ac-db3f-11ed-8027-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-15T03:45:24.289668Z","description":"Modify Saved Views across all Datadog products.","display_name":"Saved Views Write","display_type":"write","group_name":"Cross-Product Features","name":"saved_views_write","restricted":false}},{"id":"4e61a95e-de98-11ed-aa23-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-19T09:55:24.976379Z","description":"Read Client Tokens. Unlike API keys, client tokens may be exposed client-side in JavaScript code for web browsers and other clients to send data to Datadog.","display_name":"Client Tokens Read","display_type":"read","group_name":"API and Application Keys","name":"client_tokens_read","restricted":false}},{"id":"4e61ea18-de98-11ed-aa24-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-19T09:55:24.976379Z","description":"Create and edit Client Tokens. Unlike API keys, client tokens may be exposed client-side in JavaScript code for web browsers and other clients to send data to Datadog.","display_name":"Client Tokens Write","display_type":"write","group_name":"API and Application Keys","name":"client_tokens_write","restricted":false}},{"id":"a4316eb8-f438-11ed-8af2-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-16T22:26:02.839419Z","description":"Read Event Correlation Configuration data such as Correlation Rules and Settings.","display_name":"Event Correlation Config Read","display_type":"read","group_name":"Events","name":"event_correlation_config_read","restricted":false}},{"id":"a431bf12-f438-11ed-8af3-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-16T22:26:02.839419Z","description":"Manage Event Correlation Configuration such as Correlation Rules and Settings.","display_name":"Event Correlation Config Write","display_type":"write","group_name":"Events","name":"event_correlation_config_write","restricted":false}},{"id":"8352cf04-f6ac-11ed-9ec7-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-20T01:20:31.639587Z","description":"Manage general event configuration such as API Emails.","display_name":"Event Config Write","display_type":"write","group_name":"Events","name":"event_config_write","restricted":false}},{"id":"3a48350c-f9bc-11ed-b81c-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-23T22:50:34.532448Z","description":"Mute CSPM Findings.","display_name":"Security Monitoring Findings Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_findings_write","restricted":false}},{"id":"a773e3d8-fff2-11ed-965c-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-31T20:35:17.490437Z","description":"View Cloud Cost pages. This does not restrict access to the cloud cost data source in dashboards and notebooks.","display_name":"Cloud Cost Management Read","display_type":"read","group_name":"Cloud Cost Management","name":"cloud_cost_management_read","restricted":false}},{"id":"a77452c8-fff2-11ed-965d-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-31T20:35:17.490437Z","description":"Configure cloud cost accounts and global customizations.","display_name":"Cloud Cost Management Write","display_type":"write","group_name":"Cloud Cost Management","name":"cloud_cost_management_write","restricted":false}},{"id":"a51b375a-ff73-11ed-8c18-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-31T05:26:07.469293Z","description":"Add and change tags on hosts.","display_name":"Host Tags Write","display_type":"write","group_name":"Metrics","name":"host_tags_write","restricted":false}},{"id":"61f9891a-0070-11ee-9c3f-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-01T11:35:17.513706Z","description":"Create CI Visibility pipeline spans using the API.","display_name":"CI Visibility Pipelines Write","display_type":"write","group_name":"Software Delivery","name":"ci_visibility_pipelines_write","restricted":false}},{"id":"1377d9e4-0ec7-11ee-aebc-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-19T17:31:08.295856Z","description":"View Quality Gate Rules.","display_name":"Quality Gate Rules Read","display_type":"read","group_name":"Software Delivery","name":"quality_gate_rules_read","restricted":false}},{"id":"1377ff28-0ec7-11ee-aebd-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-19T17:31:08.295856Z","description":"Edit Quality Gate Rules.","display_name":"Quality Gate Rules Write","display_type":"write","group_name":"Software Delivery","name":"quality_gate_rules_write","restricted":false}},{"id":"cc8cd958-11eb-11ee-ade2-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-23T17:31:34.182629Z","description":"Edit metadata on metrics.","display_name":"Metrics Metadata Write","display_type":"write","group_name":"Metrics","name":"metrics_metadata_write","restricted":false}},{"id":"b1adb6e8-0949-11ee-b2c5-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-12T17:51:01.32545Z","description":"Delete data from RUM.","display_name":"RUM Delete Data","display_type":"write","group_name":"Real User Monitoring","name":"rum_delete_data","restricted":false}},{"id":"b1ad77e6-0949-11ee-b2c3-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-12T17:51:01.32545Z","description":"Update status or assignee of vulnerabilities.","display_name":"Vulnerability Management Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_vm_write","restricted":false}},{"id":"b1adb5da-0949-11ee-b2c4-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-12T17:51:01.32545Z","description":"Create or modify Reference Tables.","display_name":"Reference Tables Write","display_type":"write","group_name":"Reference Tables","name":"reference_tables_write","restricted":false}},{"id":"0efeff18-1cec-11ee-992d-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-07T17:31:08.450865Z","description":"Create, update, and delete RUM playlists. Add and remove sessions from RUM playlists.","display_name":"RUM Playlist Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_playlist_write","restricted":false}},{"id":"6c5ce898-21a4-11ee-99ef-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-13T17:40:57.140947Z","description":"Delete pipelines from your organization.","display_name":"Observability Pipelines Delete","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_delete","restricted":false}},{"id":"6c5ce992-21a4-11ee-99f0-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-13T17:40:57.140947Z","description":"Deploy pipelines in your organization.","display_name":"Observability Pipelines Deploy","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_deploy","restricted":false}},{"id":"785177a6-20da-11ee-bed7-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-12T17:35:18.858294Z","description":"Create custom metrics from processes.","display_name":"Processes Generate Metrics","display_type":"write","group_name":"Processes","name":"processes_generate_metrics","restricted":false}},{"id":"7850e390-20da-11ee-bed6-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-12T17:35:18.858294Z","description":"Delete API Keys for your organization.","display_name":"API Keys Delete","display_type":"write","group_name":"API and Application Keys","name":"api_keys_delete","restricted":false}},{"id":"6c5c79b2-21a4-11ee-99ee-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-13T17:40:57.140947Z","description":"Collect an Agent flare with Fleet Automation.","display_name":"Agent Flare Collection","display_type":"write","group_name":"Fleet Automation","name":"agent_flare_collection","restricted":false}},{"id":"807a82d8-2724-11ee-84ec-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-20T17:40:22.283891Z","description":"Control which organizations can query your organization''s data.","display_name":"Org Connections Write","display_type":"write","group_name":"Access Management","name":"org_connections_write","restricted":false}},{"id":"8079f2e6-2724-11ee-84eb-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-20T17:40:22.283891Z","description":"View which organizations can query data from your organization. Query data from other organizations.","display_name":"Org Connections Read","display_type":"read","group_name":"Access Management","name":"org_connections_read","restricted":false}},{"id":"1b8f54cc-2ca4-11ee-9e72-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-27T17:36:24.369352Z","description":"Manage facets for products other than Log Management, such as APM Traces. To modify Log Facets, use Logs Write Facets.","display_name":"Facets Write","display_type":"write","group_name":"Cross-Product Features","name":"facets_write","restricted":false}},{"id":"de0e73c2-3d23-11ee-aa7d-da7ad0900002","type":"permissions","attributes":{"created":"2023-08-17T17:31:15.369551Z","description":"Read Rule Suppressions.","display_name":"Security Suppressions Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_suppressions_read","restricted":false}},{"id":"de0eb666-3d23-11ee-aa7e-da7ad0900002","type":"permissions","attributes":{"created":"2023-08-17T17:31:15.369551Z","description":"Write Rule Suppressions.","display_name":"Security Suppressions Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_suppressions_write","restricted":false}},{"id":"5356dfd2-3dee-11ee-b07b-da7ad0900002","type":"permissions","attributes":{"created":"2023-08-18T17:40:30.474557Z","description":"Edit Static Analysis settings.","display_name":"Static Analysis Settings Write","display_type":"write","group_name":"Software Delivery","name":"static_analysis_settings_write","restricted":false}},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions","attributes":{"created":"2023-09-09T00:06:00.708335Z","description":"View CD Visibility.","display_name":"CD Visibility Read","display_type":"read","group_name":"Software Delivery","name":"cd_visibility_read","restricted":true}},{"id":"263eff86-6925-11ee-acc0-da7ad0900002","type":"permissions","attributes":{"created":"2023-10-12T17:31:17.142666Z","description":"Write NDM Netflow port mappings.","display_name":"NDM Netflow Port Mappings Write","display_type":"write","group_name":"Network Device Monitoring","name":"ndm_netflow_port_mappings_write","restricted":false}},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions","attributes":{"created":"2023-10-13T17:31:17.311029Z","description":"View infrastructure, application code and library vulnerabilities. This does not restrict access to the vulnerability data source through the API or inventory SQL.","display_name":"Vulnerability Management Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_vm_read","restricted":true}},{"id":"7c7836fc-6f6e-11ee-8cdd-da7ad0900002","type":"permissions","attributes":{"created":"2023-10-20T17:31:22.039614Z","description":"Create or modify Dynamic Instrumentation probes that capture function state: local variables, method arguments, fields, and return value or thrown exception.","display_name":"Dynamic Instrumentation Capture Variables","display_type":"write","group_name":"APM","name":"debugger_capture_variables","restricted":false}},{"id":"10098bc8-984b-11ee-9b69-da7ad0900002","type":"permissions","attributes":{"created":"2023-12-11T17:31:05.405902Z","description":"Disable Error Tracking, edit inclusion filters, and edit rate limit.","display_name":"Error Tracking Settings Write","display_type":"write","group_name":"Error Tracking","name":"error_tracking_settings_write","restricted":false}},{"id":"10091e90-984b-11ee-9b68-da7ad0900002","type":"permissions","attributes":{"created":"2023-12-11T17:31:05.405902Z","description":"Add or change Error Tracking exclusion filters.","display_name":"Error Tracking Exclusion Filters Write","display_type":"write","group_name":"Error Tracking","name":"error_tracking_exclusion_filters_write","restricted":false}},{"id":"1b572396-ba15-11ee-9e19-da7ad0900002","type":"permissions","attributes":{"created":"2024-01-23T17:30:31.083178Z","description":"View integrations and their configurations.","display_name":"Integrations Read","display_type":"read","group_name":"Integrations","name":"integrations_read","restricted":false}},{"id":"bdda759a-c1f0-11ee-b428-da7ad0900002","type":"permissions","attributes":{"created":"2024-02-02T17:30:21.655244Z","description":"Add, modify, and delete API catalog definitions.","display_name":"API Catalog Write","display_type":"write","group_name":"APM","name":"apm_api_catalog_write","restricted":false}},{"id":"bdda0cea-c1f0-11ee-b427-da7ad0900002","type":"permissions","attributes":{"created":"2024-02-02T17:30:21.655244Z","description":"View API catalog and API definitions.","display_name":"API Catalog Read","display_type":"read","group_name":"APM","name":"apm_api_catalog_read","restricted":false}},{"id":"27b95c32-ccf1-11ee-ae65-da7ad0900002","type":"permissions","attributes":{"created":"2024-02-16T17:31:02.07009Z","description":"Create or edit trend metrics from container images.","display_name":"Containers Write Image Trend Metrics","display_type":"write","group_name":"Containers","name":"containers_generate_image_metrics","restricted":false}},{"id":"a82d01ce-e228-11ee-870e-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-14T17:31:14.314721Z","description":"Extend the retention of Session Replays.","display_name":"RUM Session Replay Extend Retention","display_type":"write","group_name":"Real User Monitoring","name":"rum_extend_retention","restricted":false}},{"id":"50c173fc-e54d-11ee-bb23-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-18T17:31:12.515412Z","description":"View and search Private Action Runners for Workflow Automation and App Builder.","display_name":"Private Action Runner Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"on_prem_runner_read","restricted":false}},{"id":"50c1dd10-e54d-11ee-bb24-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-18T17:31:12.515412Z","description":"Attach a Private Action Runner to a connection.","display_name":"Private Action Runner Use","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"on_prem_runner_use","restricted":false}},{"id":"50c1e0b2-e54d-11ee-bb25-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-18T17:31:12.515412Z","description":"Create and edit Private Action Runners for Workflow Automation and App Builder.","display_name":"Private Action Runner Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"on_prem_runner_write","restricted":false}},{"id":"ca06b2b4-f5cd-11ee-9e77-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-08T17:31:10.159381Z","description":"Edit the settings for DORA.","display_name":"DORA Settings Write","display_type":"write","group_name":"Software Delivery","name":"dora_settings_write","restricted":false}},{"id":"ce892b8a-00ce-11ef-8fca-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-22T17:36:10.012624Z","description":"Upgrade Datadog Agents with Fleet Automation.","display_name":"Agent Upgrade","display_type":"write","group_name":"Fleet Automation","name":"agent_upgrade_write","restricted":false}},{"id":"f5f475d4-0197-11ef-be1f-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).","display_name":"Read Continuous Profiler Profile-Guided Optimization (PGO) Data","display_type":"read","group_name":"APM","name":"continuous_profiler_pgo_read","restricted":false}},{"id":"f5f4d31c-0197-11ef-be20-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"Add or remove but not edit Oracle Cloud integration configurations.","display_name":"OCI Configurations Manage","display_type":"write","group_name":"Integrations","name":"oci_configurations_manage","restricted":false}},{"id":"f5f4e8fc-0197-11ef-be21-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit AWS integration configurations.","display_name":"AWS Configuration Read","display_type":"read","group_name":"Integrations","name":"aws_configuration_read","restricted":false}},{"id":"f5f4e9a6-0197-11ef-be22-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit Azure integration configurations.","display_name":"Azure Configuration Read","display_type":"read","group_name":"Integrations","name":"azure_configuration_read","restricted":false}},{"id":"f5f4ec44-0197-11ef-be23-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit GCP integration configurations.","display_name":"GCP Configuration Read","display_type":"read","group_name":"Integrations","name":"gcp_configuration_read","restricted":false}},{"id":"f5f4f068-0197-11ef-be24-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit Oracle Cloud integration configurations.","display_name":"OCI Configuration Read","display_type":"read","group_name":"Integrations","name":"oci_configuration_read","restricted":false}},{"id":"e2310daa-08a9-11ef-8653-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove AWS integration configurations.","display_name":"AWS Configuration Edit","display_type":"write","group_name":"Integrations","name":"aws_configuration_edit","restricted":false}},{"id":"e23194fa-08a9-11ef-8654-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove Azure integration configurations.","display_name":"Azure Configuration Edit","display_type":"write","group_name":"Integrations","name":"azure_configuration_edit","restricted":false}},{"id":"e2319608-08a9-11ef-8655-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove GCP integration configurations.","display_name":"GCP Configuration Edit","display_type":"write","group_name":"Integrations","name":"gcp_configuration_edit","restricted":false}},{"id":"e231ca6a-08a9-11ef-8656-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove Oracle Cloud integration configurations.","display_name":"OCI Configuration Edit","display_type":"write","group_name":"Integrations","name":"oci_configuration_edit","restricted":false}},{"id":"8c3a9cde-0973-11ef-a2be-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-03T17:35:35.030875Z","description":"View LLM Observability.","display_name":"LLM Observability Read","display_type":"read","group_name":"LLM Observability","name":"llm_observability_read","restricted":false}},{"id":"cb5a53dc-13aa-11ef-9749-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-16T17:36:14.883078Z","description":"Manage your organization''s flex logs configuration.","display_name":"Flex Logs Configuration Write","display_type":"write","group_name":"Log Management","name":"flex_logs_config_write","restricted":false}},{"id":"3cf14194-2298-11ef-9d71-da7ad0900002","type":"permissions","attributes":{"created":"2024-06-04T17:31:12.458506Z","description":"View Reference Tables.","display_name":"Reference Tables Read","display_type":"read","group_name":"Reference Tables","name":"reference_tables_read","restricted":false}},{"id":"2757c192-389a-11ef-b37c-da7ad0900002","type":"permissions","attributes":{"created":"2024-07-02T17:40:20.794842Z","description":"Create Fleet Automation Policies.","display_name":"Fleet Policies Write","display_type":"write","group_name":"Fleet Automation","name":"fleet_policies_write","restricted":false}},{"id":"27583ae6-389a-11ef-b37d-da7ad0900002","type":"permissions","attributes":{"created":"2024-07-02T17:40:20.794842Z","description":"Enable, disable and update custom resource indexing.","display_name":"Custom Resource Definition Write","display_type":"write","group_name":"Orchestration","name":"orchestration_custom_resource_definitions_write","restricted":false}},{"id":"ce67705a-5419-11ef-8c73-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-06T17:32:08.55681Z","description":"View Code Analysis.","display_name":"Code Analysis Read","display_type":"read","group_name":"Software Delivery","name":"code_analysis_read","restricted":false}},{"id":"ce67efb2-5419-11ef-8c74-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-06T17:32:08.55681Z","description":"Enable, disable, and configure workload autoscaling. Apply workload scaling recommendations.","display_name":"Workload Scaling Write","display_type":"write","group_name":"Orchestration","name":"orchestration_workload_scaling_write","restricted":false}},{"id":"ad8b4c4a-5990-11ef-b34b-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-13T16:25:39.351685Z","description":"Create, Update, and Delete LLM Observability resources including User Defined Evaluations, OOTB Evaluations, and User Defined Topics.","display_name":"LLM Observability Write","display_type":"write","group_name":"LLM Observability","name":"llm_observability_write","restricted":false}},{"id":"5377e20c-6563-11ef-bd11-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-28T17:31:14.83001Z","description":"View captured events of pipelines in your organization.","display_name":"Observability Pipelines Live Capture Read","display_type":"read","group_name":"Observability Pipelines","name":"observability_pipelines_capture_read","restricted":false}},{"id":"53784710-6563-11ef-bd12-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-28T17:31:14.83001Z","description":"Capture live events of pipelines in your organization.","display_name":"Observability Pipelines Live Capture Write","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_capture_write","restricted":false}},{"id":"bf446b0a-60ad-11ef-83c4-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-22T17:41:22.628257Z","description":"Allows read access to the data within the Actions Datastore.","display_name":"Actions Datastore Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"apps_datastore_read","restricted":false}},{"id":"bf446e2a-60ad-11ef-83c5-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-22T17:41:22.628257Z","description":"Allows modification of data within the Actions Datastore, including adding, editing, and deleting records.","display_name":"Actions Datastore Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_datastore_write","restricted":false}},{"id":"bf4407e6-60ad-11ef-83c3-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-22T17:41:22.628257Z","description":"Allows management of the Actions Datastore, including creating, updating, and deleting the datastore itself.","display_name":"Actions Datastore Manage","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_datastore_manage","restricted":false}},{"id":"5dffba8a-66f6-11ef-8976-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-30T17:36:19.679492Z","description":"View Security Pipelines.","display_name":"Security Pipelines Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_pipelines_read","restricted":false}},{"id":"5e0024fc-66f6-11ef-8977-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-30T17:36:19.679492Z","description":"Create, edit, and delete Security Pipelines.","display_name":"Security Pipelines Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_pipelines_write","restricted":false}},{"id":"503d01ea-751b-11ef-85ac-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-17T17:36:04.251012Z","description":"Create, delete and update connection groups.","display_name":"Connection Groups Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"connection_groups_write","restricted":false}},{"id":"479d4934-79e2-11ef-98d5-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-23T19:30:24.281417Z","description":"Allow quality gates evaluations.","display_name":"Quality Gates Evaluations","display_type":"read","group_name":"Software Delivery","name":"quality_gates_evaluations_read","restricted":false}},{"id":"bdc2acbe-7c1f-11ef-b362-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-26T15:55:24.124953Z","description":"Read and use connection groups.","display_name":"Connection Groups Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"connection_groups_read","restricted":false}},{"id":"824e509c-7c5c-11ef-ba38-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-26T23:10:23.67733Z","description":"Managing actions on Cloud Workload Security Agent Rules.","display_name":"Cloud Workload Security Agent Actions","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_cws_agent_rules_actions","restricted":false}},{"id":"a91ee0ba-8184-11ef-ac5a-da7ad0900002","type":"permissions","attributes":{"created":"2024-10-03T12:40:24.480611Z","description":"View RUM Retention filters data.","display_name":"RUM Retention Filters Read","display_type":"read","group_name":"Real User Monitoring","name":"rum_retention_filters_read","restricted":false}},{"id":"a91f5112-8184-11ef-ac5b-da7ad0900002","type":"permissions","attributes":{"created":"2024-10-03T12:40:24.480611Z","description":"Write RUM Retention filters.","display_name":"RUM Retention Filters Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_retention_filters_write","restricted":false}},{"id":"bc3f9ed4-8a3d-11ef-b5a4-da7ad0900002","type":"permissions","attributes":{"created":"2024-10-14T15:05:22.769126Z","description":"View and use DDSQL Editor.","display_name":"DDSQL Editor Read","display_type":"read","group_name":"DDSQL Editor","name":"ddsql_editor_read","restricted":false}},{"id":"a8c986a6-989a-11ef-873e-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-01T21:45:49.593207Z","description":"View the disaster recovery status.","display_name":"Datadog Disaster Recovery Read","display_type":"read","group_name":"Disaster Recovery","name":"disaster_recovery_status_read","restricted":false}},{"id":"a8ca1fda-989a-11ef-873f-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-01T21:45:49.593207Z","description":"Update the disaster recovery status.","display_name":"Datadog Disaster Recovery Write","display_type":"write","group_name":"Disaster Recovery","name":"disaster_recovery_status_write","restricted":false}},{"id":"ebae5be2-9d16-11ef-9394-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-07T14:45:24.068066Z","description":"Write RUM Settings.","display_name":"RUM Settings Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_settings_write","restricted":false}},{"id":"ebaf0448-9d16-11ef-9397-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-07T14:45:24.068066Z","description":"View Test Optimization.","display_name":"Test Optimization Read","display_type":"read","group_name":"Software Delivery","name":"test_optimization_read","restricted":false}},{"id":"ebaf05ba-9d16-11ef-9398-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-07T14:45:24.068066Z","description":"Manage flaky tests for Test Optimization.","display_name":"Test Optimization Write","display_type":"write","group_name":"Software Delivery","name":"test_optimization_write","restricted":false}},{"id":"09e34b76-a6b4-11ef-8ab9-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-19T20:22:46.198145Z","description":"Create, delete and update Test Optimization settings.","display_name":"Test Optimization Settings Write","display_type":"write","group_name":"Software Delivery","name":"test_optimization_settings_write","restricted":false}},{"id":"8babfb74-a90e-11ef-b4c3-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-22T20:15:40.970745Z","description":"Write comments into vulnerabilities.","display_name":"Security Comments Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_comments_write","restricted":false}},{"id":"8baca0ba-a90e-11ef-b4c4-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-22T20:15:40.970745Z","description":"Read comments of vulnerabilities.","display_name":"Security Comments Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_comments_read","restricted":false}},{"id":"6595b70a-b7fe-11ef-977d-da7ad0900002","type":"permissions","attributes":{"created":"2024-12-11T20:27:52.565232Z","description":"View Logs Workspaces.","display_name":"Read Logs Workspaces","display_type":"read","group_name":"Log Management","name":"logs_read_workspaces","restricted":false}},{"id":"6596753c-b7fe-11ef-977e-da7ad0900002","type":"permissions","attributes":{"created":"2024-12-11T20:27:52.565232Z","description":"Create, update, and delete Logs Workspaces.","display_name":"Write Logs Workspaces","display_type":"write","group_name":"Log Management","name":"logs_write_workspaces","restricted":false}},{"id":"bccba216-cd37-11ef-b636-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-07T20:41:14.612376Z","description":"View Audience Management data.","display_name":"Profiles Read","display_type":"read","group_name":"Product Analytics","name":"audience_management_read","restricted":false}},{"id":"bccc2ee8-cd37-11ef-b637-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-07T20:41:14.612376Z","description":"Modify Audience Management data.","display_name":"Profiles Write","display_type":"write","group_name":"Product Analytics","name":"audience_management_write","restricted":false}},{"id":"8da487f0-d2af-11ef-91c8-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-14T19:41:30.924708Z","description":"Read logs configuration.","display_name":"Logs Configuration Read","display_type":"read","group_name":"Log Management","name":"logs_read_config","restricted":false}},{"id":"1c23f168-da90-11ef-910a-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-24T20:16:35.403038Z","description":"View On-Call teams, schedules, escalation policies and overrides.","display_name":"On-Call Read","display_type":"read","group_name":"On-Call","name":"on_call_read","restricted":false}},{"id":"1c248fc4-da90-11ef-910b-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-24T20:16:35.403038Z","description":"Create, update, and delete On-Call teams, schedules and escalation policies.","display_name":"On-Call Write","display_type":"write","group_name":"On-Call","name":"on_call_write","restricted":false}},{"id":"1c24b292-da90-11ef-910c-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-24T20:16:35.403038Z","description":"Page On-Call teams and users.","display_name":"On-Call Page","display_type":"write","group_name":"On-Call","name":"on_call_page","restricted":false}},{"id":"66c075bc-e296-11ef-bba7-da7ad0900002","type":"permissions","attributes":{"created":"2025-02-04T01:21:46.862659Z","description":"Acknowledge, resolve pages and edit overrides. Allow users to configure their On-Call profile.","display_name":"On-Call Responder","display_type":"write","group_name":"On-Call","name":"on_call_respond","restricted":false}}]}' + body: '{"data":[{"id":"984a2bd4-d3b4-11e8-a1ff-a7f660d43029","type":"permissions","attributes":{"created":"2018-10-19T15:35:23.734317Z","description":"Deprecated. Privileged Access (also known as Admin permission) has been replaced by more specific permissions: Access Management, Org Management, Billing Read/Write, Usage Read/Write.","display_name":"Privileged Access","display_type":"other","group_name":"General","name":"admin","restricted":false}},{"id":"984d2f00-d3b4-11e8-a200-bb47109e9987","type":"permissions","attributes":{"created":"2018-10-19T15:35:23.756736Z","description":"Deprecated. Standard Access has been replaced by more specific permissions.","display_name":"Standard Access","display_type":"other","group_name":"General","name":"standard","restricted":false}},{"id":"5e605652-dd12-11e8-9e53-375565b8970e","type":"permissions","attributes":{"created":"2018-10-31T13:39:19.72745Z","description":"Read log data, possibly scoped to one or more indexes. In order to read log data, a user must have both this permission and Logs Read Data. This permission can be granted in a limited capacity per index from the Logs interface or APIs. If granted via the Roles interface or API the permission has global scope. Restrictions are limited to the Log Management product.","display_name":"Logs Read Index Data","display_type":"read","group_name":"Log Management","name":"logs_read_index_data","restricted":false}},{"id":"62cc036c-dd12-11e8-9e54-db9995643092","type":"permissions","attributes":{"created":"2018-10-31T13:39:27.148615Z","description":"Read and modify all indexes in your account. This includes the ability to grant the Logs Read Index Data and Logs Write Exclusion Filters permission to other roles, for some or all indexes.","display_name":"Logs Modify Indexes","display_type":"write","group_name":"Log Management","name":"logs_modify_indexes","restricted":false}},{"id":"6f66600e-dd12-11e8-9e55-7f30fbb45e73","type":"permissions","attributes":{"created":"2018-10-31T13:39:48.292879Z","description":"View the live tail feed for all log indexes, even if otherwise specifically restricted.","display_name":"Logs Live Tail","display_type":"read","group_name":"Log Management","name":"logs_live_tail","restricted":false}},{"id":"7d7c98ac-dd12-11e8-9e56-93700598622d","type":"permissions","attributes":{"created":"2018-10-31T13:40:11.926613Z","description":"Add and change exclusion filters for all or some log indexes. Can be granted in a limited capacity per index to specific roles via the Logs interface or API. If granted from the Roles interface or API, the permission has global scope.","display_name":"Logs Write Exclusion Filters","display_type":"write","group_name":"Log Management","name":"logs_write_exclusion_filters","restricted":false}},{"id":"811ac4ca-dd12-11e8-9e57-676a7f0beef9","type":"permissions","attributes":{"created":"2018-10-31T13:40:17.996379Z","description":"Add and change log pipeline configurations, including the ability to grant the Logs Write Processors permission to other roles, for some or all pipelines.","display_name":"Logs Write Pipelines","display_type":"write","group_name":"Log Management","name":"logs_write_pipelines","restricted":false}},{"id":"84aa3ae4-dd12-11e8-9e58-a373a514ccd0","type":"permissions","attributes":{"created":"2018-10-31T13:40:23.969725Z","description":"Add and change some or all log processor configurations. Can be granted in a limited capacity per pipeline to specific roles via the Logs interface or API. If granted via the Roles interface or API the permission has global scope.","display_name":"Logs Write Processors","display_type":"write","group_name":"Log Management","name":"logs_write_processors","restricted":false}},{"id":"87b00304-dd12-11e8-9e59-cbeb5f71f72f","type":"permissions","attributes":{"created":"2018-10-31T13:40:29.040786Z","description":"Add and edit Log Archives.","display_name":"Logs Write Archives","display_type":"write","group_name":"Log Management","name":"logs_write_archives","restricted":false}},{"id":"979df720-aed7-11e9-99c6-a7eb8373165a","type":"permissions","attributes":{"created":"2019-07-25T12:27:39.640758Z","description":"Create custom metrics from logs.","display_name":"Logs Generate Metrics","display_type":"write","group_name":"Log Management","name":"logs_generate_metrics","restricted":false}},{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions","attributes":{"created":"2019-09-10T14:39:51.955175Z","description":"View dashboards.","display_name":"Dashboards Read","display_type":"read","group_name":"Dashboards","name":"dashboards_read","restricted":true}},{"id":"d90f6831-d3d8-11e9-a77a-4fd230ddbc6a","type":"permissions","attributes":{"created":"2019-09-10T14:39:51.962944Z","description":"Create and change dashboards.","display_name":"Dashboards Write","display_type":"write","group_name":"Dashboards","name":"dashboards_write","restricted":false}},{"id":"d90f6832-d3d8-11e9-a77a-bf8a2607f864","type":"permissions","attributes":{"created":"2019-09-10T14:39:51.967094Z","description":"Generate public and authenticated links to share dashboards or embeddable graphs externally.","display_name":"Dashboards Public Share","display_type":"write","group_name":"Dashboards","name":"dashboards_public_share","restricted":false}},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions","attributes":{"created":"2019-09-16T18:39:07.744297Z","description":"View monitors.","display_name":"Monitors Read","display_type":"read","group_name":"Monitors","name":"monitors_read","restricted":true}},{"id":"48ef71ea-d8b1-11e9-a77a-93f408470ad0","type":"permissions","attributes":{"created":"2019-09-16T18:39:15.597109Z","description":"Edit and delete individual monitors.","display_name":"Monitors Write","display_type":"write","group_name":"Monitors","name":"monitors_write","restricted":false}},{"id":"4d87d5f8-d8b1-11e9-a77a-eb9c8350d04f","type":"permissions","attributes":{"created":"2019-09-16T18:39:23.306702Z","description":"Set downtimes to suppress alerts from any monitor in an organization. Mute and unmute monitors. The ability to write monitors is not required to set downtimes.","display_name":"Manage Downtimes","display_type":"write","group_name":"Monitors","name":"monitors_downtime","restricted":false}},{"id":"1af86ce4-7823-11ea-93dc-d7cad1b1c6cb","type":"permissions","attributes":{"created":"2020-04-06T16:24:35.989108Z","description":"Read log data. In order to read log data, a user must have both this permission and Logs Read Index Data. This permission can be restricted with restriction queries. Restrictions are limited to the Log Management product.","display_name":"Logs Read Data","display_type":"read","group_name":"Log Management","name":"logs_read_data","restricted":false}},{"id":"b382b982-8535-11ea-93de-2bf1bdf20798","type":"permissions","attributes":{"created":"2020-04-23T07:40:27.966133Z","description":"Read Log Archives location and use it for rehydration.","display_name":"Logs Read Archives","display_type":"read","group_name":"Log Management","name":"logs_read_archives","restricted":false}},{"id":"7314eb20-aa58-11ea-95e2-6fb6e4a451d5","type":"permissions","attributes":{"created":"2020-06-09T13:52:25.279909Z","description":"Read Detection Rules.","display_name":"Security Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_rules_read","restricted":false}},{"id":"7b516476-aa58-11ea-95e2-93718cd56369","type":"permissions","attributes":{"created":"2020-06-09T13:52:39.099413Z","description":"Create and edit Detection Rules.","display_name":"Security Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_rules_write","restricted":false}},{"id":"80de1ec0-aa58-11ea-95e2-aff381626d5d","type":"permissions","attributes":{"created":"2020-06-09T13:52:48.410398Z","description":"View Security Signals.","display_name":"Security Signals Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_signals_read","restricted":false}},{"id":"58b412cc-ff6d-11eb-bc9c-da7ad0900002","type":"permissions","attributes":{"created":"2021-08-17T15:11:06.963503Z","description":"Modify Security Signals.","display_name":"Security Signals Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_signals_write","restricted":false}},{"id":"9ac1d8cc-e707-11ea-aa2d-73d37e989a9d","type":"permissions","attributes":{"created":"2020-08-25T19:17:23.539701Z","description":"Invite other users to your organization.","display_name":"User Access Invite","display_type":"write","group_name":"Access Management","name":"user_access_invite","restricted":false}},{"id":"9de604d8-e707-11ea-aa2d-93f1a783b3a3","type":"permissions","attributes":{"created":"2020-08-25T19:17:28.810412Z","description":"Disable users, manage user roles, manage SAML-to-role mappings, and configure logs restriction queries.","display_name":"User Access Manage","display_type":"write","group_name":"Access Management","name":"user_access_manage","restricted":false}},{"id":"46a301da-ec5c-11ea-aa9f-73bedeab67ee","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View and manage Application Keys owned by the user.","display_name":"User App Keys","display_type":"write","group_name":"API and Application Keys","name":"user_app_keys","restricted":false}},{"id":"46a301db-ec5c-11ea-aa9f-2fe72193d60e","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View Application Keys owned by all users in the organization.","display_name":"Org App Keys Read","display_type":"read","group_name":"API and Application Keys","name":"org_app_keys_read","restricted":false}},{"id":"46a301dc-ec5c-11ea-aa9f-13b33f8f46ea","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Manage Application Keys owned by all users in the organization.","display_name":"Org App Keys Write","display_type":"write","group_name":"API and Application Keys","name":"org_app_keys_write","restricted":false}},{"id":"46a301dd-ec5c-11ea-aa9f-97edfb345bc9","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View, search, and use Synthetics private locations.","display_name":"Synthetics Private Locations Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_private_location_read","restricted":false}},{"id":"46a301de-ec5c-11ea-aa9f-a73252c24806","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Create and delete private locations in addition to having access to the associated installation guidelines.","display_name":"Synthetics Private Locations Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_private_location_write","restricted":false}},{"id":"46a301df-ec5c-11ea-aa9f-970a9ae645e5","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View your organization''s subscription and payment method but not make edits.","display_name":"Billing Read","display_type":"read","group_name":"Billing and Usage","name":"billing_read","restricted":false}},{"id":"46a301e0-ec5c-11ea-aa9f-6ba6cc675d8c","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Manage your organization''s subscription and payment method.","display_name":"Billing Edit","display_type":"write","group_name":"Billing and Usage","name":"billing_edit","restricted":false}},{"id":"46a301e1-ec5c-11ea-aa9f-afa39f6f3e36","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View your organization''s usage and usage attribution.","display_name":"Usage Read","display_type":"read","group_name":"Billing and Usage","name":"usage_read","restricted":false}},{"id":"46a301e2-ec5c-11ea-aa9f-1f511b7305fd","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Manage your organization''s usage attribution set-up.","display_name":"Usage Edit","display_type":"write","group_name":"Billing and Usage","name":"usage_edit","restricted":false}},{"id":"46a301e4-ec5c-11ea-aa9f-87282b3a50cc","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Edit and save tag configurations for custom metrics.","display_name":"Metric Tags Write","display_type":"write","group_name":"Metrics","name":"metric_tags_write","restricted":false}},{"id":"07c3c146-f7f8-11ea-acf6-0bd62b9ae60e","type":"permissions","attributes":{"created":"2020-09-16T08:38:44.242076Z","description":"Rehydrate logs from Archives.","display_name":"Logs Write Historical Views","display_type":"write","group_name":"Log Management","name":"logs_write_historical_view","restricted":false}},{"id":"2fbdac76-f923-11ea-adbc-07f3823e2b43","type":"permissions","attributes":{"created":"2020-09-17T20:20:10.834252Z","description":"View Audit Trail in your organization.","display_name":"Audit Trail Read","display_type":"read","group_name":"Compliance","name":"audit_logs_read","restricted":false}},{"id":"372896c4-f923-11ea-adbc-4fecd107156d","type":"permissions","attributes":{"created":"2020-09-17T20:20:23.279769Z","description":"List and retrieve the key values of all API Keys in your organization.","display_name":"API Keys Read","display_type":"read","group_name":"API and Application Keys","name":"api_keys_read","restricted":false}},{"id":"3e4d4d28-f923-11ea-adbc-e3565938c12e","type":"permissions","attributes":{"created":"2020-09-17T20:20:35.26443Z","description":"Create and rename API Keys for your organization.","display_name":"API Keys Write","display_type":"write","group_name":"API and Application Keys","name":"api_keys_write","restricted":false}},{"id":"4628ca54-f923-11ea-adbc-4b2b7f88c5e9","type":"permissions","attributes":{"created":"2020-09-17T20:20:48.446916Z","description":"View, search, and use Synthetics global variables.","display_name":"Synthetics Global Variable Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_global_variable_read","restricted":false}},{"id":"4ada6e36-f923-11ea-adbc-0788e5c5e3cf","type":"permissions","attributes":{"created":"2020-09-17T20:20:56.322003Z","description":"Create, edit, and delete global variables for Synthetics.","display_name":"Synthetics Global Variable Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_global_variable_write","restricted":false}},{"id":"5025ee24-f923-11ea-adbc-576ea241df8d","type":"permissions","attributes":{"created":"2020-09-17T20:21:05.205361Z","description":"List and view configured Synthetic tests and test results.","display_name":"Synthetics Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_read","restricted":false}},{"id":"55f4b5ec-f923-11ea-adbc-1bfa2334a755","type":"permissions","attributes":{"created":"2020-09-17T20:21:14.94914Z","description":"Create, edit, and delete Synthetic tests.","display_name":"Synthetics Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_write","restricted":false}},{"id":"5c6b88e2-f923-11ea-adbc-abf57d079420","type":"permissions","attributes":{"created":"2020-09-17T20:21:25.79416Z","description":"View the default settings for Synthetic Monitoring.","display_name":"Synthetics Default Settings Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_default_settings_read","restricted":false}},{"id":"642eebe6-f923-11ea-adbc-eb617674ea04","type":"permissions","attributes":{"created":"2020-09-17T20:21:38.818771Z","description":"Edit the default settings for Synthetic Monitoring.","display_name":"Synthetics Default Settings Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_default_settings_write","restricted":false}},{"id":"6ba32d22-0e1a-11eb-ba44-bf9a5aafaa39","type":"permissions","attributes":{"created":"2020-10-14T12:40:20.271908Z","description":"Create or edit Log Facets.","display_name":"Logs Write Facets","display_type":"write","group_name":"Log Management","name":"logs_write_facets","restricted":false}},{"id":"a42e94b2-1476-11eb-bd08-efda28c04248","type":"permissions","attributes":{"created":"2020-10-22T14:55:35.814239Z","description":"Create, disable, and use Service Accounts in your organization.","display_name":"Service Account Write","display_type":"write","group_name":"Access Management","name":"service_account_write","restricted":false}},{"id":"fcac2ad8-2843-11eb-8315-0fe47949d625","type":"permissions","attributes":{"created":"2020-11-16T19:43:23.198568Z","description":"Deprecated. Use the Integrations APIs to configure integrations. In order to configure integrations from the UI, a user must also have Standard Access.","display_name":"Integrations API","display_type":"other","group_name":"Integrations","name":"integrations_api","restricted":false}},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions","attributes":{"created":"2020-11-23T20:55:45.00611Z","description":"Read and query APM and Trace Analytics.","display_name":"APM Read","display_type":"read","group_name":"APM","name":"apm_read","restricted":true}},{"id":"43fa188e-2dce-11eb-84c0-835ad1fd6287","type":"permissions","attributes":{"created":"2020-11-23T20:55:49.190595Z","description":"Read trace retention filters. A user with this permission can view the retention filters page, list of filters, their statistics, and creation info.","display_name":"APM Retention Filters Read","display_type":"read","group_name":"APM","name":"apm_retention_filter_read","restricted":false}},{"id":"465cfe66-2dce-11eb-84c0-6baa888239fa","type":"permissions","attributes":{"created":"2020-11-23T20:55:53.194236Z","description":"Create, edit, and delete trace retention filters. A user with this permission can create new retention filters, and update or delete to existing retention filters.","display_name":"APM Retention Filters Write","display_type":"write","group_name":"APM","name":"apm_retention_filter_write","restricted":false}},{"id":"4916eebe-2dce-11eb-84c0-271cb2c672e8","type":"permissions","attributes":{"created":"2020-11-23T20:55:57.768261Z","description":"Access service ingestion pages. A user with this permission can view the service ingestion page, list of root services, their statistics, and creation info.","display_name":"APM Service Ingest Read","display_type":"read","group_name":"APM","name":"apm_service_ingest_read","restricted":false}},{"id":"4e3f02b4-2dce-11eb-84c0-2fca946a6efc","type":"permissions","attributes":{"created":"2020-11-23T20:56:06.419518Z","description":"Edit service ingestion pages'' root services. A user with this permission can edit the root service ingestion and generate a code snippet to increase ingestion per service.","display_name":"APM Service Ingest Write","display_type":"write","group_name":"APM","name":"apm_service_ingest_write","restricted":false}},{"id":"53950c54-2dce-11eb-84c0-a79ae108f6f8","type":"permissions","attributes":{"created":"2020-11-23T20:56:15.371926Z","description":"Set Apdex T value on any service. A user with this permission can set the T value from the Apdex graph on the service page.","display_name":"APM Apdex Manage Write","display_type":"write","group_name":"APM","name":"apm_apdex_manage_write","restricted":false}},{"id":"5cbe5f9c-2dce-11eb-84c0-872d3e9f1076","type":"permissions","attributes":{"created":"2020-11-23T20:56:30.742299Z","description":"Edit second primary tag selection. A user with this permission can modify the second primary tag dropdown in the APM settings page.","display_name":"APM Tag Management Write","display_type":"write","group_name":"APM","name":"apm_tag_management_write","restricted":false}},{"id":"61765026-2dce-11eb-84c0-833e230d1b8f","type":"permissions","attributes":{"created":"2020-11-23T20:56:38.658649Z","description":"Edit the operation name value selection. A user with this permission can modify the operation name list in the APM settings page and the operation name controller on the service page.","display_name":"APM Primary Operation Write","display_type":"write","group_name":"APM","name":"apm_primary_operation_write","restricted":false}},{"id":"04bc1cf2-340a-11eb-873a-43b973c760dd","type":"permissions","attributes":{"created":"2020-12-01T19:18:39.866516Z","description":"Configure Audit Trail in your organization.","display_name":"Audit Trail Write","display_type":"write","group_name":"Compliance","name":"audit_logs_write","restricted":false}},{"id":"8106300a-54f7-11eb-8cbc-7781a434a67b","type":"permissions","attributes":{"created":"2021-01-12T16:59:16.32448Z","description":"Create, edit, and delete RUM applications. Creating a RUM application automatically generates a Client Token. In order to create Client Tokens directly, a user needs the Client Tokens Write permission.","display_name":"RUM Apps Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_apps_write","restricted":false}},{"id":"edfd5e74-801f-11eb-96d8-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-08T15:06:59.006815Z","description":"Edit Dynamic Instrumentation configuration. Create or modify Dynamic Instrumentation probes that do not capture function state.","display_name":"Dynamic Instrumentation Write","display_type":"write","group_name":"APM","name":"debugger_write","restricted":false}},{"id":"edfd5e75-801f-11eb-96d8-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-08T15:06:59.010517Z","description":"View Dynamic Instrumentation configuration.","display_name":"Dynamic Instrumentation Read","display_type":"read","group_name":"APM","name":"debugger_read","restricted":false}},{"id":"bf0dcf7c-90af-11eb-9b82-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-29T16:56:46.394971Z","description":"View Sensitive Data Scanner configurations and scanning results.","display_name":"Data Scanner Read","display_type":"read","group_name":"Compliance","name":"data_scanner_read","restricted":false}},{"id":"bf0dcf7d-90af-11eb-9b82-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-29T16:56:46.398584Z","description":"Edit Sensitive Data Scanner configurations.","display_name":"Data Scanner Write","display_type":"write","group_name":"Compliance","name":"data_scanner_write","restricted":false}},{"id":"7df222b6-a45c-11eb-a0af-da7ad0900002","type":"permissions","attributes":{"created":"2021-04-23T17:51:12.18734Z","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 \u0026 unsubscribing from apps in the marketplace, and enabling \u0026 disabling Remote Configuration for the entire organization.","display_name":"Org Management","display_type":"write","group_name":"Access Management","name":"org_management","restricted":false}},{"id":"98b984f4-b16d-11eb-a2c6-da7ad0900002","type":"permissions","attributes":{"created":"2021-05-10T08:56:23.676833Z","description":"Read Security Filters.","display_name":"Security Filters Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_filters_read","restricted":false}},{"id":"98b984f5-b16d-11eb-a2c6-da7ad0900002","type":"permissions","attributes":{"created":"2021-05-10T08:56:23.680551Z","description":"Create, edit, and delete Security Filters.","display_name":"Security Filters Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_filters_write","restricted":false}},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.255499Z","description":"View incidents in Datadog.","display_name":"Incidents Read","display_type":"read","group_name":"Case and Incident Management","name":"incident_read","restricted":true}},{"id":"12efc211-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.264369Z","description":"Create, view, and manage incidents in Datadog.","display_name":"Incidents Write","display_type":"write","group_name":"Case and Incident Management","name":"incident_write","restricted":false}},{"id":"12efc20f-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.259568Z","description":"View Incident Settings.","display_name":"Incident Settings Read","display_type":"read","group_name":"Case and Incident Management","name":"incident_settings_read","restricted":false}},{"id":"12efc210-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.261986Z","description":"Configure Incident Settings.","display_name":"Incident Settings Write","display_type":"write","group_name":"Case and Incident Management","name":"incident_settings_write","restricted":false}},{"id":"97971c1c-e895-11eb-b13c-da7ad0900002","type":"permissions","attributes":{"created":"2021-07-19T13:31:15.595771Z","description":"View Application Security Management Event Rules.","display_name":"Application Security Management Event Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_event_rule_read","restricted":false}},{"id":"97971c1d-e895-11eb-b13c-da7ad0900002","type":"permissions","attributes":{"created":"2021-07-19T13:31:15.598808Z","description":"Edit Application Security Management Event Rules.","display_name":"Application Security Management Event Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_event_rule_write","restricted":false}},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions","attributes":{"created":"2021-08-02T09:46:07.671535Z","description":"View RUM Applications data.","display_name":"RUM Apps Read","display_type":"read","group_name":"Real User Monitoring","name":"rum_apps_read","restricted":true}},{"id":"7605ef25-f376-11eb-b90b-da7ad0900002","type":"permissions","attributes":{"created":"2021-08-02T09:46:07.67464Z","description":"View Session Replays.","display_name":"RUM Session Replay Read","display_type":"read","group_name":"Real User Monitoring","name":"rum_session_replay_read","restricted":false}},{"id":"c95412b8-16c7-11ec-85c0-da7ad0900002","type":"permissions","attributes":{"created":"2021-09-16T08:26:27.366789Z","description":"Read Notification Rules.","display_name":"Security Notification Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_notification_profiles_read","restricted":false}},{"id":"c95412b9-16c7-11ec-85c0-da7ad0900002","type":"permissions","attributes":{"created":"2021-09-16T08:26:27.369359Z","description":"Create, edit, and delete Notification Rules.","display_name":"Security Notification Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_notification_profiles_write","restricted":false}},{"id":"26c79920-1703-11ec-85d2-da7ad0900002","type":"permissions","attributes":{"created":"2021-09-16T15:31:24.458963Z","description":"Create custom metrics from spans.","display_name":"APM Generate Metrics","display_type":"write","group_name":"APM","name":"apm_generate_metrics","restricted":false}},{"id":"f4473c60-4792-11ec-a27b-da7ad0900002","type":"permissions","attributes":{"created":"2021-11-17T10:41:43.074031Z","description":"Read Cloud Workload Security Agent Rules.","display_name":"Cloud Workload Security Agent Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_cws_agent_rules_read","restricted":false}},{"id":"f4473c61-4792-11ec-a27b-da7ad0900002","type":"permissions","attributes":{"created":"2021-11-17T10:41:43.077905Z","description":"Create, edit, and delete Cloud Workload Security Agent Rules.","display_name":"Cloud Workload Security Agent Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_cws_agent_rules_write","restricted":false}},{"id":"020a563c-56a4-11ec-a982-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-06T14:51:35.049129Z","description":"Add and change APM pipeline configurations.","display_name":"APM Pipelines Write","display_type":"write","group_name":"APM","name":"apm_pipelines_write","restricted":false}},{"id":"8e4d6b6e-5750-11ec-a9f4-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-07T11:26:43.807269Z","description":"View APM pipeline configurations.","display_name":"APM Pipelines Read","display_type":"read","group_name":"APM","name":"apm_pipelines_read","restricted":false}},{"id":"945b3bb4-5884-11ec-aa6d-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-09T00:11:38.956827Z","description":"View pipelines in your organization.","display_name":"Observability Pipelines Read","display_type":"read","group_name":"Observability Pipelines","name":"observability_pipelines_read","restricted":false}},{"id":"945b3bb5-5884-11ec-aa6d-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-09T00:11:38.960833Z","description":"Edit pipelines in your organization.","display_name":"Observability Pipelines Write","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_write","restricted":false}},{"id":"f6e917a8-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.058412Z","description":"View workflows.","display_name":"Workflows Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"workflows_read","restricted":false}},{"id":"f6e917aa-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.061765Z","description":"Create, edit, and delete workflows.","display_name":"Workflows Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"workflows_write","restricted":false}},{"id":"f6e917a9-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.060079Z","description":"Run workflows.","display_name":"Workflows Run","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"workflows_run","restricted":false}},{"id":"f6e917a6-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.053432Z","description":"List and view available connections. Connections contain secrets that cannot be revealed.","display_name":"Connections Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"connections_read","restricted":false}},{"id":"f6e917a7-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.05659Z","description":"Create and delete connections.","display_name":"Connections Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"connections_write","restricted":false}},{"id":"7a89ec40-8b69-11ec-812d-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-11T18:36:08.531989Z","description":"Access all private incidents in Datadog, even when not added as a responder.","display_name":"Private Incidents Global Access","display_type":"read","group_name":"Case and Incident Management","name":"incidents_private_global_access","restricted":false}},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions","attributes":{"created":"2022-03-02T18:51:05.04095Z","description":"View notebooks.","display_name":"Notebooks Read","display_type":"read","group_name":"Notebooks","name":"notebooks_read","restricted":true}},{"id":"b6bf9ac7-9a59-11ec-8480-da7ad0900002","type":"permissions","attributes":{"created":"2022-03-02T18:51:05.044683Z","description":"Create and change notebooks.","display_name":"Notebooks Write","display_type":"write","group_name":"Notebooks","name":"notebooks_write","restricted":false}},{"id":"e35c06b0-966b-11ec-83c9-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-25T18:51:06.176019Z","description":"Delete data from your Logs, including entire indexes.","display_name":"Logs Delete Data","display_type":"write","group_name":"Log Management","name":"logs_delete_data","restricted":false}},{"id":"2108215e-b9b4-11ec-958e-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-11T16:26:24.106645Z","description":"Create custom metrics from RUM events.","display_name":"RUM Generate Metrics","display_type":"write","group_name":"Real User Monitoring","name":"rum_generate_metrics","restricted":false}},{"id":"7b1f5086-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.278829Z","description":"Add or remove but not edit AWS integration configurations.","display_name":"AWS Configurations Manage","display_type":"write","group_name":"Integrations","name":"aws_configurations_manage","restricted":false}},{"id":"7b1f5088-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.284056Z","description":"Add or remove but not edit Azure integration configurations.","display_name":"Azure Configurations Manage","display_type":"write","group_name":"Integrations","name":"azure_configurations_manage","restricted":false}},{"id":"7b1f5087-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.282282Z","description":"Add or remove but not edit GCP integration configurations.","display_name":"GCP Configurations Manage","display_type":"write","group_name":"Integrations","name":"gcp_configurations_manage","restricted":false}},{"id":"7b1f5089-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.285834Z","description":"Install, uninstall, and configure integrations.","display_name":"Integrations Manage","display_type":"write","group_name":"Integrations","name":"manage_integrations","restricted":false}},{"id":"1afff448-d5e9-11ec-ae37-da7ad0900002","type":"permissions","attributes":{"created":"2022-05-17T13:56:09.870985Z","description":"Receive notifications and view currently configured notification settings.","display_name":"Usage Notifications Read","display_type":"read","group_name":"Billing and Usage","name":"usage_notifications_read","restricted":false}},{"id":"1afff449-d5e9-11ec-ae37-da7ad0900002","type":"permissions","attributes":{"created":"2022-05-17T13:56:09.876124Z","description":"Receive notifications and configure notification settings.","display_name":"Usage Notifications Write","display_type":"write","group_name":"Billing and Usage","name":"usage_notifications_write","restricted":false}},{"id":"6c87d3da-e5c5-11ec-b1d6-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-06T18:21:03.378896Z","description":"Schedule PDF reports from a dashboard.","display_name":"Dashboards Report Write","display_type":"write","group_name":"Dashboards","name":"generate_dashboard_reports","restricted":false}},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-08T16:20:55.142591Z","description":"View SLOs and status corrections.","display_name":"SLOs Read","display_type":"read","group_name":"Service Level Objectives","name":"slos_read","restricted":true}},{"id":"f8e941d0-e746-11ec-b22d-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-08T16:20:55.143869Z","description":"Create, edit, and delete SLOs.","display_name":"SLOs Write","display_type":"write","group_name":"Service Level Objectives","name":"slos_write","restricted":false}},{"id":"f8e941ce-e746-11ec-b22d-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-08T16:20:55.13941Z","description":"Apply, edit, and delete SLO status corrections. A user with this permission can make status corrections, even if they do not have permission to edit those SLOs.","display_name":"SLOs Status Corrections","display_type":"write","group_name":"Service Level Objectives","name":"slos_corrections","restricted":false}},{"id":"4784b11c-f311-11ec-a5f5-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-23T16:26:48.150556Z","description":"Create, update, and delete monitor configuration policies.","display_name":"Monitor Configuration Policy Write","display_type":"write","group_name":"Monitors","name":"monitor_config_policy_write","restricted":false}},{"id":"ee68fba9-173a-11ed-b00b-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-08T16:55:39.377188Z","description":"Add, modify, and delete service catalog definitions when those definitions are maintained by Datadog.","display_name":"Service Catalog Write","display_type":"write","group_name":"APM","name":"apm_service_catalog_write","restricted":false}},{"id":"ee68fba8-173a-11ed-b00b-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-08T16:55:39.374377Z","description":"View service catalog and service definitions.","display_name":"Service Catalog Read","display_type":"read","group_name":"APM","name":"apm_service_catalog_read","restricted":false}},{"id":"5b2c3e28-1761-11ed-b018-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-08T21:30:42.723663Z","description":"Add and edit forwarding destinations and rules for logs.","display_name":"Logs Write Forwarding Rules","display_type":"write","group_name":"Log Management","name":"logs_write_forwarding_rules","restricted":false}},{"id":"6be119a6-1cd8-11ed-b185-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-15T20:25:36.677197Z","description":"Deprecated. Watchdog Insights endpoints are now OPEN.","display_name":"Watchdog Insights Read","display_type":"read","group_name":"Watchdog","name":"watchdog_insights_read","restricted":false}},{"id":"36e2a22e-248a-11ed-b405-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-25T15:25:56.32517Z","description":"Resolve connections.","display_name":"Connections Resolve","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"connections_resolve","restricted":false}},{"id":"4ee674f6-55d9-11ed-b10d-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.834253Z","description":"View blocked attackers.","display_name":"Application Security Management Protect Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_protect_read","restricted":false}},{"id":"4ee7e46c-55d9-11ed-b10e-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.843656Z","description":"Manage blocked attackers.","display_name":"Application Security Management Protect Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_protect_write","restricted":false}},{"id":"4ee5731c-55d9-11ed-b10b-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.827076Z","description":"View whether Application Security Management has been enabled or disabled on services via 1-click enablement with Remote Configuration.","display_name":"Application Security Management 1-click Enablement Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_activation_read","restricted":false}},{"id":"4ee60688-55d9-11ed-b10c-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.831383Z","description":"Enable or disable Application Security Management on services via 1-click enablement.","display_name":"Application Security Management 1-click Enablement Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_activation_write","restricted":false}},{"id":"99474cc2-5a12-11ed-b547-da7ad0900002","type":"permissions","attributes":{"created":"2022-11-01T18:25:44.584393Z","description":"View and run Apps in App Builder.","display_name":"Apps View","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_run","restricted":false}},{"id":"9948271e-5a12-11ed-b548-da7ad0900002","type":"permissions","attributes":{"created":"2022-11-01T18:25:44.590588Z","description":"Create, edit, and delete Apps in App Builder.","display_name":"Apps Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_write","restricted":false}},{"id":"8247acc4-7a4c-11ed-958f-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T18:40:54.018521Z","description":"View Cases.","display_name":"Cases Read","display_type":"read","group_name":"Case and Incident Management","name":"cases_read","restricted":false}},{"id":"824851a6-7a4c-11ed-9590-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T18:40:54.02328Z","description":"Create and update cases.","display_name":"Cases Write","display_type":"write","group_name":"Case and Incident Management","name":"cases_write","restricted":false}},{"id":"77d5f45e-7a5a-11ed-8abf-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T20:20:49.450768Z","description":"Edit APM Remote Configuration.","display_name":"APM Remote Configuration Write","display_type":"write","group_name":"APM","name":"apm_remote_configuration_write","restricted":false}},{"id":"77d55a44-7a5a-11ed-8abe-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T20:20:49.446298Z","description":"View APM Remote Configuration.","display_name":"APM Remote Configuration Read","display_type":"read","group_name":"APM","name":"apm_remote_configuration_read","restricted":false}},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.149406Z","description":"View CI Visibility.","display_name":"CI Visibility Read","display_type":"read","group_name":"Software Delivery","name":"ci_visibility_read","restricted":true}},{"id":"6c5c1090-7aff-11ed-a5cf-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.157428Z","description":"Edit flaky tests and delete Test Services.","display_name":"CI Visibility Tests Write","display_type":"write","group_name":"Software Delivery","name":"ci_visibility_write","restricted":false}},{"id":"6c59ae72-7aff-11ed-a5cc-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.141217Z","description":"Edit CI Provider settings. Manage GitHub accounts and repositories for enabling CI Visibility and job logs collection.","display_name":"CI Provider Settings Write","display_type":"write","group_name":"Software Delivery","name":"ci_provider_settings_write","restricted":false}},{"id":"6c5b7428-7aff-11ed-a5ce-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.153418Z","description":"Configure CI Visibility settings. Set a repository default branch, enable GitHub comments, and delete test services.","display_name":"CI Visibility Settings Write","display_type":"write","group_name":"Software Delivery","name":"ci_visibility_settings_write","restricted":false}},{"id":"6c5d0892-7aff-11ed-a5d0-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.163771Z","description":"Enable or disable Intelligent Test Runner.","display_name":"Intelligent Test Runner Activation Write","display_type":"write","group_name":"Software Delivery","name":"intelligent_test_runner_activation_write","restricted":false}},{"id":"6c5de654-7aff-11ed-a5d1-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.16943Z","description":"Edit Intelligent Test Runner settings, such as modifying ITR excluded branch list.","display_name":"Intelligent Test Runner Settings Write","display_type":"write","group_name":"Software Delivery","name":"intelligent_test_runner_settings_write","restricted":false}},{"id":"c13a2368-7d61-11ed-b5b7-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-16T16:50:32.545882Z","description":"View data in Continuous Profiler.","display_name":"Continuous Profiler Read","display_type":"read","group_name":"APM","name":"continuous_profiler_read","restricted":false}},{"id":"1d76ecfa-9771-11ed-9c2f-da7ad0900002","type":"permissions","attributes":{"created":"2023-01-18T20:45:59.977837Z","description":"Manage Teams. Create, delete, rename, and edit metadata of all Teams. To control Team membership across all Teams, use the User Access Manage permission.","display_name":"Teams Manage","display_type":"write","group_name":"Teams","name":"teams_manage","restricted":false}},{"id":"ca6bfb3a-b44f-11ed-adb2-da7ad0900002","type":"permissions","attributes":{"created":"2023-02-24T14:30:30.983679Z","description":"View a list of findings that include both misconfigurations and identity risks.","display_name":"Security Monitoring Findings Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_findings_read","restricted":false}},{"id":"4dc3eec6-b468-11ed-8539-da7ad0900002","type":"permissions","attributes":{"created":"2023-02-24T17:25:59.263037Z","description":"View Incidents Notification settings.","display_name":"Incident Notification Settings Read","display_type":"read","group_name":"Case and Incident Management","name":"incident_notification_settings_read","restricted":false}},{"id":"4dc4094c-b468-11ed-853a-da7ad0900002","type":"permissions","attributes":{"created":"2023-02-24T17:25:59.263037Z","description":"Configure Incidents Notification settings.","display_name":"Incident Notification Settings Write","display_type":"write","group_name":"Case and Incident Management","name":"incident_notification_settings_write","restricted":false}},{"id":"35dd33ea-ca2e-11ed-bca0-da7ad0900002","type":"permissions","attributes":{"created":"2023-03-24T10:25:33.934187Z","description":"Edit CI Ingestion Control exclusion filters.","display_name":"CI Visibility Ingestion Control Write","display_type":"write","group_name":"Software Delivery","name":"ci_ingestion_control_write","restricted":false}},{"id":"36bf3d0a-ccc0-11ed-9453-da7ad0900002","type":"permissions","attributes":{"created":"2023-03-27T16:55:44.263627Z","description":"Edit Error Tracking issues.","display_name":"Error Tracking Issue Write","display_type":"write","group_name":"Error Tracking","name":"error_tracking_write","restricted":false}},{"id":"f416f55e-db3f-11ed-8028-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-15T03:45:24.289668Z","description":"Manage Watchdog Alerts.","display_name":"Watchdog Alerts Write","display_type":"write","group_name":"Watchdog","name":"watchdog_alerts_write","restricted":false}},{"id":"f416b1ac-db3f-11ed-8027-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-15T03:45:24.289668Z","description":"Modify Saved Views across all Datadog products.","display_name":"Saved Views Write","display_type":"write","group_name":"Cross-Product Features","name":"saved_views_write","restricted":false}},{"id":"4e61a95e-de98-11ed-aa23-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-19T09:55:24.976379Z","description":"Read Client Tokens. Unlike API keys, client tokens may be exposed client-side in JavaScript code for web browsers and other clients to send data to Datadog.","display_name":"Client Tokens Read","display_type":"read","group_name":"API and Application Keys","name":"client_tokens_read","restricted":false}},{"id":"4e61ea18-de98-11ed-aa24-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-19T09:55:24.976379Z","description":"Create and edit Client Tokens. Unlike API keys, client tokens may be exposed client-side in JavaScript code for web browsers and other clients to send data to Datadog.","display_name":"Client Tokens Write","display_type":"write","group_name":"API and Application Keys","name":"client_tokens_write","restricted":false}},{"id":"a4316eb8-f438-11ed-8af2-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-16T22:26:02.839419Z","description":"Read Event Correlation Configuration data such as Correlation Rules and Settings.","display_name":"Event Correlation Config Read","display_type":"read","group_name":"Events","name":"event_correlation_config_read","restricted":false}},{"id":"a431bf12-f438-11ed-8af3-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-16T22:26:02.839419Z","description":"Manage Event Correlation Configuration such as Correlation Rules and Settings.","display_name":"Event Correlation Config Write","display_type":"write","group_name":"Events","name":"event_correlation_config_write","restricted":false}},{"id":"8352cf04-f6ac-11ed-9ec7-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-20T01:20:31.639587Z","description":"Manage general event configuration such as API Emails.","display_name":"Event Config Write","display_type":"write","group_name":"Events","name":"event_config_write","restricted":false}},{"id":"3a48350c-f9bc-11ed-b81c-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-23T22:50:34.532448Z","description":"Mute CSPM Findings.","display_name":"Security Monitoring Findings Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_findings_write","restricted":false}},{"id":"a773e3d8-fff2-11ed-965c-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-31T20:35:17.490437Z","description":"View Cloud Cost pages. This does not restrict access to the cloud cost data source in dashboards and notebooks.","display_name":"Cloud Cost Management Read","display_type":"read","group_name":"Cloud Cost Management","name":"cloud_cost_management_read","restricted":false}},{"id":"a77452c8-fff2-11ed-965d-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-31T20:35:17.490437Z","description":"Configure cloud cost accounts and global customizations.","display_name":"Cloud Cost Management Write","display_type":"write","group_name":"Cloud Cost Management","name":"cloud_cost_management_write","restricted":false}},{"id":"a51b375a-ff73-11ed-8c18-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-31T05:26:07.469293Z","description":"Add and change tags on hosts.","display_name":"Host Tags Write","display_type":"write","group_name":"Metrics","name":"host_tags_write","restricted":false}},{"id":"61f9891a-0070-11ee-9c3f-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-01T11:35:17.513706Z","description":"Create CI Visibility pipeline spans using the API.","display_name":"CI Visibility Pipelines Write","display_type":"write","group_name":"Software Delivery","name":"ci_visibility_pipelines_write","restricted":false}},{"id":"1377d9e4-0ec7-11ee-aebc-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-19T17:31:08.295856Z","description":"View Quality Gate Rules.","display_name":"Quality Gate Rules Read","display_type":"read","group_name":"Software Delivery","name":"quality_gate_rules_read","restricted":false}},{"id":"1377ff28-0ec7-11ee-aebd-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-19T17:31:08.295856Z","description":"Edit Quality Gate Rules.","display_name":"Quality Gate Rules Write","display_type":"write","group_name":"Software Delivery","name":"quality_gate_rules_write","restricted":false}},{"id":"cc8cd958-11eb-11ee-ade2-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-23T17:31:34.182629Z","description":"Edit metadata on metrics.","display_name":"Metrics Metadata Write","display_type":"write","group_name":"Metrics","name":"metrics_metadata_write","restricted":false}},{"id":"b1adb6e8-0949-11ee-b2c5-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-12T17:51:01.32545Z","description":"Delete data from RUM.","display_name":"RUM Delete Data","display_type":"write","group_name":"Real User Monitoring","name":"rum_delete_data","restricted":false}},{"id":"b1ad77e6-0949-11ee-b2c3-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-12T17:51:01.32545Z","description":"Update status or assignee of vulnerabilities.","display_name":"Vulnerability Management Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_vm_write","restricted":false}},{"id":"b1adb5da-0949-11ee-b2c4-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-12T17:51:01.32545Z","description":"Create or modify Reference Tables.","display_name":"Reference Tables Write","display_type":"write","group_name":"Reference Tables","name":"reference_tables_write","restricted":false}},{"id":"0efeff18-1cec-11ee-992d-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-07T17:31:08.450865Z","description":"Create, update, and delete RUM playlists. Add and remove sessions from RUM playlists.","display_name":"RUM Playlist Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_playlist_write","restricted":false}},{"id":"6c5ce898-21a4-11ee-99ef-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-13T17:40:57.140947Z","description":"Delete pipelines from your organization.","display_name":"Observability Pipelines Delete","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_delete","restricted":false}},{"id":"6c5ce992-21a4-11ee-99f0-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-13T17:40:57.140947Z","description":"Deploy pipelines in your organization.","display_name":"Observability Pipelines Deploy","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_deploy","restricted":false}},{"id":"785177a6-20da-11ee-bed7-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-12T17:35:18.858294Z","description":"Create custom metrics from processes.","display_name":"Processes Generate Metrics","display_type":"write","group_name":"Processes","name":"processes_generate_metrics","restricted":false}},{"id":"7850e390-20da-11ee-bed6-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-12T17:35:18.858294Z","description":"Delete API Keys for your organization.","display_name":"API Keys Delete","display_type":"write","group_name":"API and Application Keys","name":"api_keys_delete","restricted":false}},{"id":"6c5c79b2-21a4-11ee-99ee-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-13T17:40:57.140947Z","description":"Collect an Agent flare with Fleet Automation.","display_name":"Agent Flare Collection","display_type":"write","group_name":"Fleet Automation","name":"agent_flare_collection","restricted":false}},{"id":"807a82d8-2724-11ee-84ec-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-20T17:40:22.283891Z","description":"Control which organizations can query your organization''s data.","display_name":"Org Connections Write","display_type":"write","group_name":"Access Management","name":"org_connections_write","restricted":false}},{"id":"8079f2e6-2724-11ee-84eb-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-20T17:40:22.283891Z","description":"View which organizations can query data from your organization. Query data from other organizations.","display_name":"Org Connections Read","display_type":"read","group_name":"Access Management","name":"org_connections_read","restricted":false}},{"id":"1b8f54cc-2ca4-11ee-9e72-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-27T17:36:24.369352Z","description":"Manage facets for products other than Log Management, such as APM Traces. To modify Log Facets, use Logs Write Facets.","display_name":"Facets Write","display_type":"write","group_name":"Cross-Product Features","name":"facets_write","restricted":false}},{"id":"de0e73c2-3d23-11ee-aa7d-da7ad0900002","type":"permissions","attributes":{"created":"2023-08-17T17:31:15.369551Z","description":"Read Rule Suppressions.","display_name":"Security Suppressions Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_suppressions_read","restricted":false}},{"id":"de0eb666-3d23-11ee-aa7e-da7ad0900002","type":"permissions","attributes":{"created":"2023-08-17T17:31:15.369551Z","description":"Write Rule Suppressions.","display_name":"Security Suppressions Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_suppressions_write","restricted":false}},{"id":"5356dfd2-3dee-11ee-b07b-da7ad0900002","type":"permissions","attributes":{"created":"2023-08-18T17:40:30.474557Z","description":"Edit Static Analysis settings.","display_name":"Static Analysis Settings Write","display_type":"write","group_name":"Software Delivery","name":"static_analysis_settings_write","restricted":false}},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions","attributes":{"created":"2023-09-09T00:06:00.708335Z","description":"View CD Visibility.","display_name":"CD Visibility Read","display_type":"read","group_name":"Software Delivery","name":"cd_visibility_read","restricted":true}},{"id":"263eff86-6925-11ee-acc0-da7ad0900002","type":"permissions","attributes":{"created":"2023-10-12T17:31:17.142666Z","description":"Write NDM Netflow port mappings.","display_name":"NDM Netflow Port Mappings Write","display_type":"write","group_name":"Network Device Monitoring","name":"ndm_netflow_port_mappings_write","restricted":false}},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions","attributes":{"created":"2023-10-13T17:31:17.311029Z","description":"View infrastructure, application code and library vulnerabilities. This does not restrict access to the vulnerability data source through the API or inventory SQL.","display_name":"Vulnerability Management Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_vm_read","restricted":true}},{"id":"7c7836fc-6f6e-11ee-8cdd-da7ad0900002","type":"permissions","attributes":{"created":"2023-10-20T17:31:22.039614Z","description":"Create or modify Dynamic Instrumentation probes that capture function state: local variables, method arguments, fields, and return value or thrown exception.","display_name":"Dynamic Instrumentation Capture Variables","display_type":"write","group_name":"APM","name":"debugger_capture_variables","restricted":false}},{"id":"10098bc8-984b-11ee-9b69-da7ad0900002","type":"permissions","attributes":{"created":"2023-12-11T17:31:05.405902Z","description":"Disable Error Tracking, edit inclusion filters, and edit rate limit.","display_name":"Error Tracking Settings Write","display_type":"write","group_name":"Error Tracking","name":"error_tracking_settings_write","restricted":false}},{"id":"10091e90-984b-11ee-9b68-da7ad0900002","type":"permissions","attributes":{"created":"2023-12-11T17:31:05.405902Z","description":"Add or change Error Tracking exclusion filters.","display_name":"Error Tracking Exclusion Filters Write","display_type":"write","group_name":"Error Tracking","name":"error_tracking_exclusion_filters_write","restricted":false}},{"id":"1b572396-ba15-11ee-9e19-da7ad0900002","type":"permissions","attributes":{"created":"2024-01-23T17:30:31.083178Z","description":"View integrations and their configurations.","display_name":"Integrations Read","display_type":"read","group_name":"Integrations","name":"integrations_read","restricted":false}},{"id":"bdda759a-c1f0-11ee-b428-da7ad0900002","type":"permissions","attributes":{"created":"2024-02-02T17:30:21.655244Z","description":"Add, modify, and delete API catalog definitions.","display_name":"API Catalog Write","display_type":"write","group_name":"APM","name":"apm_api_catalog_write","restricted":false}},{"id":"bdda0cea-c1f0-11ee-b427-da7ad0900002","type":"permissions","attributes":{"created":"2024-02-02T17:30:21.655244Z","description":"View API catalog and API definitions.","display_name":"API Catalog Read","display_type":"read","group_name":"APM","name":"apm_api_catalog_read","restricted":false}},{"id":"27b95c32-ccf1-11ee-ae65-da7ad0900002","type":"permissions","attributes":{"created":"2024-02-16T17:31:02.07009Z","description":"Create or edit trend metrics from container images.","display_name":"Containers Write Image Trend Metrics","display_type":"write","group_name":"Containers","name":"containers_generate_image_metrics","restricted":false}},{"id":"a82d01ce-e228-11ee-870e-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-14T17:31:14.314721Z","description":"Extend the retention of Session Replays.","display_name":"RUM Session Replay Extend Retention","display_type":"write","group_name":"Real User Monitoring","name":"rum_extend_retention","restricted":false}},{"id":"50c173fc-e54d-11ee-bb23-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-18T17:31:12.515412Z","description":"View and search Private Action Runners for Workflow Automation and App Builder.","display_name":"Private Action Runner Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"on_prem_runner_read","restricted":false}},{"id":"50c1dd10-e54d-11ee-bb24-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-18T17:31:12.515412Z","description":"Attach a Private Action Runner to a connection.","display_name":"Private Action Runner Use","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"on_prem_runner_use","restricted":false}},{"id":"50c1e0b2-e54d-11ee-bb25-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-18T17:31:12.515412Z","description":"Create and edit Private Action Runners for Workflow Automation and App Builder.","display_name":"Private Action Runner Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"on_prem_runner_write","restricted":false}},{"id":"ca06b2b4-f5cd-11ee-9e77-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-08T17:31:10.159381Z","description":"Edit the settings for DORA.","display_name":"DORA Settings Write","display_type":"write","group_name":"Software Delivery","name":"dora_settings_write","restricted":false}},{"id":"ce892b8a-00ce-11ef-8fca-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-22T17:36:10.012624Z","description":"Upgrade Datadog Agents with Fleet Automation.","display_name":"Agent Upgrade","display_type":"write","group_name":"Fleet Automation","name":"agent_upgrade_write","restricted":false}},{"id":"f5f475d4-0197-11ef-be1f-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).","display_name":"Read Continuous Profiler Profile-Guided Optimization (PGO) Data","display_type":"read","group_name":"APM","name":"continuous_profiler_pgo_read","restricted":false}},{"id":"f5f4d31c-0197-11ef-be20-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"Add or remove but not edit Oracle Cloud integration configurations.","display_name":"OCI Configurations Manage","display_type":"write","group_name":"Integrations","name":"oci_configurations_manage","restricted":false}},{"id":"f5f4e8fc-0197-11ef-be21-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit AWS integration configurations.","display_name":"AWS Configuration Read","display_type":"read","group_name":"Integrations","name":"aws_configuration_read","restricted":false}},{"id":"f5f4e9a6-0197-11ef-be22-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit Azure integration configurations.","display_name":"Azure Configuration Read","display_type":"read","group_name":"Integrations","name":"azure_configuration_read","restricted":false}},{"id":"f5f4ec44-0197-11ef-be23-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit GCP integration configurations.","display_name":"GCP Configuration Read","display_type":"read","group_name":"Integrations","name":"gcp_configuration_read","restricted":false}},{"id":"f5f4f068-0197-11ef-be24-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit Oracle Cloud integration configurations.","display_name":"OCI Configuration Read","display_type":"read","group_name":"Integrations","name":"oci_configuration_read","restricted":false}},{"id":"e2310daa-08a9-11ef-8653-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove AWS integration configurations.","display_name":"AWS Configuration Edit","display_type":"write","group_name":"Integrations","name":"aws_configuration_edit","restricted":false}},{"id":"e23194fa-08a9-11ef-8654-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove Azure integration configurations.","display_name":"Azure Configuration Edit","display_type":"write","group_name":"Integrations","name":"azure_configuration_edit","restricted":false}},{"id":"e2319608-08a9-11ef-8655-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove GCP integration configurations.","display_name":"GCP Configuration Edit","display_type":"write","group_name":"Integrations","name":"gcp_configuration_edit","restricted":false}},{"id":"e231ca6a-08a9-11ef-8656-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove Oracle Cloud integration configurations.","display_name":"OCI Configuration Edit","display_type":"write","group_name":"Integrations","name":"oci_configuration_edit","restricted":false}},{"id":"8c3a9cde-0973-11ef-a2be-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-03T17:35:35.030875Z","description":"View LLM Observability.","display_name":"LLM Observability Read","display_type":"read","group_name":"LLM Observability","name":"llm_observability_read","restricted":false}},{"id":"cb5a53dc-13aa-11ef-9749-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-16T17:36:14.883078Z","description":"Manage your organization''s flex logs configuration.","display_name":"Flex Logs Configuration Write","display_type":"write","group_name":"Log Management","name":"flex_logs_config_write","restricted":false}},{"id":"3cf14194-2298-11ef-9d71-da7ad0900002","type":"permissions","attributes":{"created":"2024-06-04T17:31:12.458506Z","description":"View Reference Tables.","display_name":"Reference Tables Read","display_type":"read","group_name":"Reference Tables","name":"reference_tables_read","restricted":false}},{"id":"2757c192-389a-11ef-b37c-da7ad0900002","type":"permissions","attributes":{"created":"2024-07-02T17:40:20.794842Z","description":"Create Fleet Automation Policies.","display_name":"Fleet Policies Write","display_type":"write","group_name":"Fleet Automation","name":"fleet_policies_write","restricted":false}},{"id":"27583ae6-389a-11ef-b37d-da7ad0900002","type":"permissions","attributes":{"created":"2024-07-02T17:40:20.794842Z","description":"Enable, disable and update custom resource indexing.","display_name":"Custom Resource Definition Write","display_type":"write","group_name":"Orchestration","name":"orchestration_custom_resource_definitions_write","restricted":false}},{"id":"ce67705a-5419-11ef-8c73-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-06T17:32:08.55681Z","description":"View Code Analysis.","display_name":"Code Analysis Read","display_type":"read","group_name":"Software Delivery","name":"code_analysis_read","restricted":false}},{"id":"ce67efb2-5419-11ef-8c74-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-06T17:32:08.55681Z","description":"Enable, disable, and configure workload autoscaling. Apply workload scaling recommendations.","display_name":"Workload Scaling Write","display_type":"write","group_name":"Orchestration","name":"orchestration_workload_scaling_write","restricted":false}},{"id":"ad8b4c4a-5990-11ef-b34b-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-13T16:25:39.351685Z","description":"Create, Update, and Delete LLM Observability resources including User Defined Evaluations, OOTB Evaluations, and User Defined Topics.","display_name":"LLM Observability Write","display_type":"write","group_name":"LLM Observability","name":"llm_observability_write","restricted":false}},{"id":"5377e20c-6563-11ef-bd11-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-28T17:31:14.83001Z","description":"View captured events of pipelines in your organization.","display_name":"Observability Pipelines Live Capture Read","display_type":"read","group_name":"Observability Pipelines","name":"observability_pipelines_capture_read","restricted":false}},{"id":"53784710-6563-11ef-bd12-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-28T17:31:14.83001Z","description":"Capture live events of pipelines in your organization.","display_name":"Observability Pipelines Live Capture Write","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_capture_write","restricted":false}},{"id":"bf446b0a-60ad-11ef-83c4-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-22T17:41:22.628257Z","description":"Allows read access to the data within the Actions Datastore.","display_name":"Actions Datastore Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"apps_datastore_read","restricted":false}},{"id":"bf446e2a-60ad-11ef-83c5-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-22T17:41:22.628257Z","description":"Allows modification of data within the Actions Datastore, including adding, editing, and deleting records.","display_name":"Actions Datastore Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_datastore_write","restricted":false}},{"id":"bf4407e6-60ad-11ef-83c3-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-22T17:41:22.628257Z","description":"Allows management of the Actions Datastore, including creating, updating, and deleting the datastore itself.","display_name":"Actions Datastore Manage","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_datastore_manage","restricted":false}},{"id":"5dffba8a-66f6-11ef-8976-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-30T17:36:19.679492Z","description":"View Security Pipelines.","display_name":"Security Pipelines Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_pipelines_read","restricted":false}},{"id":"5e0024fc-66f6-11ef-8977-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-30T17:36:19.679492Z","description":"Create, edit, and delete Security Pipelines.","display_name":"Security Pipelines Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_pipelines_write","restricted":false}},{"id":"503d01ea-751b-11ef-85ac-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-17T17:36:04.251012Z","description":"Create, delete and update connection groups.","display_name":"Connection Groups Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"connection_groups_write","restricted":false}},{"id":"479d4934-79e2-11ef-98d5-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-23T19:30:24.281417Z","description":"Allow quality gates evaluations.","display_name":"Quality Gates Evaluations","display_type":"read","group_name":"Software Delivery","name":"quality_gates_evaluations_read","restricted":false}},{"id":"bdc2acbe-7c1f-11ef-b362-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-26T15:55:24.124953Z","description":"Read and use connection groups.","display_name":"Connection Groups Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"connection_groups_read","restricted":false}},{"id":"824e509c-7c5c-11ef-ba38-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-26T23:10:23.67733Z","description":"Managing actions on Cloud Workload Security Agent Rules.","display_name":"Cloud Workload Security Agent Actions","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_cws_agent_rules_actions","restricted":false}},{"id":"a91ee0ba-8184-11ef-ac5a-da7ad0900002","type":"permissions","attributes":{"created":"2024-10-03T12:40:24.480611Z","description":"View RUM Retention filters data.","display_name":"RUM Retention Filters Read","display_type":"read","group_name":"Real User Monitoring","name":"rum_retention_filters_read","restricted":false}},{"id":"a91f5112-8184-11ef-ac5b-da7ad0900002","type":"permissions","attributes":{"created":"2024-10-03T12:40:24.480611Z","description":"Write RUM Retention filters.","display_name":"RUM Retention Filters Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_retention_filters_write","restricted":false}},{"id":"bc3f9ed4-8a3d-11ef-b5a4-da7ad0900002","type":"permissions","attributes":{"created":"2024-10-14T15:05:22.769126Z","description":"View and use DDSQL Editor.","display_name":"DDSQL Editor Read","display_type":"read","group_name":"DDSQL Editor","name":"ddsql_editor_read","restricted":false}},{"id":"a8c986a6-989a-11ef-873e-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-01T21:45:49.593207Z","description":"View the disaster recovery status.","display_name":"Datadog Disaster Recovery Read","display_type":"read","group_name":"Disaster Recovery","name":"disaster_recovery_status_read","restricted":false}},{"id":"a8ca1fda-989a-11ef-873f-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-01T21:45:49.593207Z","description":"Update the disaster recovery status.","display_name":"Datadog Disaster Recovery Write","display_type":"write","group_name":"Disaster Recovery","name":"disaster_recovery_status_write","restricted":false}},{"id":"ebae5be2-9d16-11ef-9394-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-07T14:45:24.068066Z","description":"Write RUM Settings.","display_name":"RUM Settings Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_settings_write","restricted":false}},{"id":"ebaf0448-9d16-11ef-9397-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-07T14:45:24.068066Z","description":"View Test Optimization.","display_name":"Test Optimization Read","display_type":"read","group_name":"Software Delivery","name":"test_optimization_read","restricted":false}},{"id":"ebaf05ba-9d16-11ef-9398-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-07T14:45:24.068066Z","description":"Manage flaky tests for Test Optimization.","display_name":"Test Optimization Write","display_type":"write","group_name":"Software Delivery","name":"test_optimization_write","restricted":false}},{"id":"09e34b76-a6b4-11ef-8ab9-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-19T20:22:46.198145Z","description":"Create, delete and update Test Optimization settings.","display_name":"Test Optimization Settings Write","display_type":"write","group_name":"Software Delivery","name":"test_optimization_settings_write","restricted":false}},{"id":"8babfb74-a90e-11ef-b4c3-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-22T20:15:40.970745Z","description":"Write comments into vulnerabilities.","display_name":"Security Comments Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_comments_write","restricted":false}},{"id":"8baca0ba-a90e-11ef-b4c4-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-22T20:15:40.970745Z","description":"Read comments of vulnerabilities.","display_name":"Security Comments Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_comments_read","restricted":false}},{"id":"6595b70a-b7fe-11ef-977d-da7ad0900002","type":"permissions","attributes":{"created":"2024-12-11T20:27:52.565232Z","description":"View Logs Workspaces.","display_name":"Read Logs Workspaces","display_type":"read","group_name":"Log Management","name":"logs_read_workspaces","restricted":false}},{"id":"6596753c-b7fe-11ef-977e-da7ad0900002","type":"permissions","attributes":{"created":"2024-12-11T20:27:52.565232Z","description":"Create, update, and delete Logs Workspaces.","display_name":"Write Logs Workspaces","display_type":"write","group_name":"Log Management","name":"logs_write_workspaces","restricted":false}},{"id":"bccba216-cd37-11ef-b636-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-07T20:41:14.612376Z","description":"View Audience Management data.","display_name":"Profiles Read","display_type":"read","group_name":"Product Analytics","name":"audience_management_read","restricted":false}},{"id":"bccc2ee8-cd37-11ef-b637-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-07T20:41:14.612376Z","description":"Modify Audience Management data.","display_name":"Profiles Write","display_type":"write","group_name":"Product Analytics","name":"audience_management_write","restricted":false}},{"id":"8da487f0-d2af-11ef-91c8-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-14T19:41:30.924708Z","description":"Read logs configuration.","display_name":"Logs Configuration Read","display_type":"read","group_name":"Log Management","name":"logs_read_config","restricted":false}},{"id":"1c23f168-da90-11ef-910a-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-24T20:16:35.403038Z","description":"View On-Call teams, schedules, escalation policies and overrides.","display_name":"On-Call Read","display_type":"read","group_name":"On-Call","name":"on_call_read","restricted":false}},{"id":"1c248fc4-da90-11ef-910b-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-24T20:16:35.403038Z","description":"Create, update, and delete On-Call teams, schedules and escalation policies.","display_name":"On-Call Write","display_type":"write","group_name":"On-Call","name":"on_call_write","restricted":false}},{"id":"1c24b292-da90-11ef-910c-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-24T20:16:35.403038Z","description":"Page On-Call teams and users.","display_name":"On-Call Page","display_type":"write","group_name":"On-Call","name":"on_call_page","restricted":false}},{"id":"c6d3a3e0-df47-11ef-abf4-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-30T20:21:24.316595Z","description":"View Error Tracking data.","display_name":"Error Tracking Read","display_type":"read","group_name":"Error Tracking","name":"error_tracking_read","restricted":false}},{"id":"66c075bc-e296-11ef-bba7-da7ad0900002","type":"permissions","attributes":{"created":"2025-02-04T01:21:46.862659Z","description":"Acknowledge, resolve pages and edit overrides. Allow users to configure their On-Call profile.","display_name":"On-Call Responder","display_type":"write","group_name":"On-Call","name":"on_call_respond","restricted":false}}]}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 121.029042ms + duration: 122.691834ms - id: 3 request: proto: HTTP/1.1 @@ -116,7 +116,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"restricted_roles":["9a0be27e-f387-11ef-ac8c-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"restricted_roles":["ef5a892a-f421-11ef-8cab-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: @@ -135,13 +135,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"7ae-fvh-m36","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/7ae-fvh-m36/tf-testaccdatadogdashboardrbaccreaterbac-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":4969628006494380}],"notify_list":[],"created_at":"2025-02-25T14:48:41.382645+00:00","modified_at":"2025-02-25T14:48:41.382645+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9a0be27e-f387-11ef-ac8c-da7ad0900002"]} + {"id":"z4k-ntq-pde","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/z4k-ntq-pde/tf-testaccdatadogdashboardrbaccreaterbac-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":250769393251870}],"notify_list":[],"created_at":"2025-02-26T09:13:27.152712+00:00","modified_at":"2025-02-26T09:13:27.152712+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["ef5a892a-f421-11ef-8cab-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 294.764125ms + duration: 325.959833ms - id: 4 request: proto: HTTP/1.1 @@ -158,7 +158,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/7ae-fvh-m36 + url: https://api.datadoghq.com/api/v1/dashboard/z4k-ntq-pde method: GET response: proto: HTTP/1.1 @@ -170,13 +170,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"7ae-fvh-m36","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/7ae-fvh-m36/tf-testaccdatadogdashboardrbaccreaterbac-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":4969628006494380}],"notify_list":[],"created_at":"2025-02-25T14:48:41.382645+00:00","modified_at":"2025-02-25T14:48:41.382645+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9a0be27e-f387-11ef-ac8c-da7ad0900002"]} + {"id":"z4k-ntq-pde","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/z4k-ntq-pde/tf-testaccdatadogdashboardrbaccreaterbac-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":250769393251870}],"notify_list":[],"created_at":"2025-02-26T09:13:27.152712+00:00","modified_at":"2025-02-26T09:13:27.152712+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["ef5a892a-f421-11ef-8cab-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 167.751167ms + duration: 166.431959ms - id: 5 request: proto: HTTP/1.1 @@ -193,7 +193,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/7ae-fvh-m36 + url: https://api.datadoghq.com/api/v1/dashboard/z4k-ntq-pde method: GET response: proto: HTTP/1.1 @@ -205,13 +205,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"7ae-fvh-m36","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/7ae-fvh-m36/tf-testaccdatadogdashboardrbaccreaterbac-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":4969628006494380}],"notify_list":[],"created_at":"2025-02-25T14:48:41.382645+00:00","modified_at":"2025-02-25T14:48:41.382645+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9a0be27e-f387-11ef-ac8c-da7ad0900002"]} + {"id":"z4k-ntq-pde","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/z4k-ntq-pde/tf-testaccdatadogdashboardrbaccreaterbac-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":250769393251870}],"notify_list":[],"created_at":"2025-02-26T09:13:27.152712+00:00","modified_at":"2025-02-26T09:13:27.152712+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["ef5a892a-f421-11ef-8cab-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 178.83325ms + duration: 174.266458ms - id: 6 request: proto: HTTP/1.1 @@ -228,7 +228,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/9a0be27e-f387-11ef-ac8c-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/ef5a892a-f421-11ef-8cab-da7ad0900002 method: GET response: proto: HTTP/1.1 @@ -238,13 +238,13 @@ interactions: trailer: {} content_length: 1065 uncompressed: false - body: '{"data":{"id":"9a0be27e-f387-11ef-ac8c-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:40.238274Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-25T14:48:40.237668Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"ef5a892a-f421-11ef-8cab-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:25.855241Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:13:25.855834Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 124.93475ms + duration: 127.239625ms - id: 7 request: proto: HTTP/1.1 @@ -261,7 +261,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/7ae-fvh-m36 + url: https://api.datadoghq.com/api/v1/dashboard/z4k-ntq-pde method: GET response: proto: HTTP/1.1 @@ -273,13 +273,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"7ae-fvh-m36","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/7ae-fvh-m36/tf-testaccdatadogdashboardrbaccreaterbac-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":4969628006494380}],"notify_list":[],"created_at":"2025-02-25T14:48:41.382645+00:00","modified_at":"2025-02-25T14:48:41.382645+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9a0be27e-f387-11ef-ac8c-da7ad0900002"]} + {"id":"z4k-ntq-pde","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/z4k-ntq-pde/tf-testaccdatadogdashboardrbaccreaterbac-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":250769393251870}],"notify_list":[],"created_at":"2025-02-26T09:13:27.152712+00:00","modified_at":"2025-02-26T09:13:27.152712+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["ef5a892a-f421-11ef-8cab-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 158.771375ms + duration: 157.146375ms - id: 8 request: proto: HTTP/1.1 @@ -296,7 +296,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/7ae-fvh-m36 + url: https://api.datadoghq.com/api/v1/dashboard/z4k-ntq-pde method: DELETE response: proto: HTTP/1.1 @@ -308,13 +308,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"deleted_dashboard_id":"7ae-fvh-m36"} + {"deleted_dashboard_id":"z4k-ntq-pde"} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 227.139708ms + duration: 226.956834ms - id: 9 request: proto: HTTP/1.1 @@ -331,7 +331,7 @@ interactions: headers: Accept: - '*/*' - url: https://api.datadoghq.com/api/v2/roles/9a0be27e-f387-11ef-ac8c-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/ef5a892a-f421-11ef-8cab-da7ad0900002 method: DELETE response: proto: HTTP/1.1 @@ -345,4 +345,4 @@ interactions: headers: {} status: 204 No Content code: 204 - duration: 123.101291ms + duration: 252.24175ms diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.freeze b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.freeze index 0ab29c010..786c409ce 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.freeze +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.freeze @@ -1 +1 @@ -2025-02-25T15:48:37.058457+01:00 \ No newline at end of file +2025-02-26T10:13:22.346514+01:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.yaml b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.yaml index 3a7b0e59e..a87d82ebd 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.yaml +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.yaml @@ -13,7 +13,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: @@ -32,13 +32,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"49z-ysb-ywy","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/49z-ysb-ywy/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5758303516866077}],"notify_list":[],"created_at":"2025-02-25T14:48:40.445324+00:00","modified_at":"2025-02-25T14:48:40.445324+00:00","template_variable_presets":[],"tags":[]} + {"id":"ccf-8xc-832","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/ccf-8xc-832/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2368130173625047}],"notify_list":[],"created_at":"2025-02-26T09:13:26.300249+00:00","modified_at":"2025-02-26T09:13:26.300249+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 370.966625ms + duration: 534.510292ms - id: 1 request: proto: HTTP/1.1 @@ -55,7 +55,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/49z-ysb-ywy + url: https://api.datadoghq.com/api/v1/dashboard/ccf-8xc-832 method: GET response: proto: HTTP/1.1 @@ -66,14 +66,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: | - {"id":"49z-ysb-ywy","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/49z-ysb-ywy/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5758303516866077}],"notify_list":[],"created_at":"2025-02-25T14:48:40.445324+00:00","modified_at":"2025-02-25T14:48:40.445324+00:00","template_variable_presets":[],"tags":[]} + body: '{"errors":["Dashboard with ID ccf-8xc-832 not found"]}' headers: Content-Type: - application/json - status: 200 OK - code: 200 - duration: 230.476625ms + status: 404 Not Found + code: 404 + duration: 181.171208ms - id: 2 request: proto: HTTP/1.1 @@ -90,7 +89,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/49z-ysb-ywy + url: https://api.datadoghq.com/api/v1/dashboard/ccf-8xc-832 method: GET response: proto: HTTP/1.1 @@ -102,13 +101,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"49z-ysb-ywy","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/49z-ysb-ywy/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5758303516866077}],"notify_list":[],"created_at":"2025-02-25T14:48:40.445324+00:00","modified_at":"2025-02-25T14:48:40.445324+00:00","template_variable_presets":[],"tags":[]} + {"id":"ccf-8xc-832","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/ccf-8xc-832/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2368130173625047}],"notify_list":[],"created_at":"2025-02-26T09:13:26.300249+00:00","modified_at":"2025-02-26T09:13:26.300249+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 179.823375ms + duration: 173.7345ms - id: 3 request: proto: HTTP/1.1 @@ -125,7 +124,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/49z-ysb-ywy + url: https://api.datadoghq.com/api/v1/dashboard/ccf-8xc-832 method: GET response: proto: HTTP/1.1 @@ -137,14 +136,49 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"49z-ysb-ywy","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/49z-ysb-ywy/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5758303516866077}],"notify_list":[],"created_at":"2025-02-25T14:48:40.445324+00:00","modified_at":"2025-02-25T14:48:40.445324+00:00","template_variable_presets":[],"tags":[]} + {"id":"ccf-8xc-832","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/ccf-8xc-832/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2368130173625047}],"notify_list":[],"created_at":"2025-02-26T09:13:26.300249+00:00","modified_at":"2025-02-26T09:13:26.300249+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 171.107958ms + duration: 162.113292ms - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v1/dashboard/ccf-8xc-832 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: | + {"id":"ccf-8xc-832","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/ccf-8xc-832/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2368130173625047}],"notify_list":[],"created_at":"2025-02-26T09:13:26.300249+00:00","modified_at":"2025-02-26T09:13:26.300249+00:00","template_variable_presets":[],"tags":[]} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 167.636375ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -156,14 +190,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"49z-ysb-ywy","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"ccf-8xc-832","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: - application/json Content-Type: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/49z-ysb-ywy + url: https://api.datadoghq.com/api/v1/dashboard/ccf-8xc-832 method: PUT response: proto: HTTP/1.1 @@ -175,14 +209,14 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"49z-ysb-ywy","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/49z-ysb-ywy/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2910557929212170}],"notify_list":[],"created_at":"2025-02-25T14:48:40.445324+00:00","modified_at":"2025-02-25T14:48:46.427606+00:00","template_variable_presets":[],"tags":[]} + {"id":"ccf-8xc-832","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/ccf-8xc-832/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":26312898273803}],"notify_list":[],"created_at":"2025-02-26T09:13:26.300249+00:00","modified_at":"2025-02-26T09:13:34.143242+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 384.822583ms - - id: 5 + duration: 1.910925167s + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -198,7 +232,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/49z-ysb-ywy + url: https://api.datadoghq.com/api/v1/dashboard/ccf-8xc-832 method: GET response: proto: HTTP/1.1 @@ -210,14 +244,14 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"49z-ysb-ywy","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/49z-ysb-ywy/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2910557929212170}],"notify_list":[],"created_at":"2025-02-25T14:48:40.445324+00:00","modified_at":"2025-02-25T14:48:46.427606+00:00","template_variable_presets":[],"tags":[]} + {"id":"ccf-8xc-832","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/ccf-8xc-832/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":26312898273803}],"notify_list":[],"created_at":"2025-02-26T09:13:26.300249+00:00","modified_at":"2025-02-26T09:13:34.143242+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 160.695375ms - - id: 6 + duration: 160.693958ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -233,7 +267,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/49z-ysb-ywy + url: https://api.datadoghq.com/api/v1/dashboard/ccf-8xc-832 method: GET response: proto: HTTP/1.1 @@ -245,14 +279,14 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"49z-ysb-ywy","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/49z-ysb-ywy/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2910557929212170}],"notify_list":[],"created_at":"2025-02-25T14:48:40.445324+00:00","modified_at":"2025-02-25T14:48:46.427606+00:00","template_variable_presets":[],"tags":[]} + {"id":"ccf-8xc-832","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/ccf-8xc-832/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":26312898273803}],"notify_list":[],"created_at":"2025-02-26T09:13:26.300249+00:00","modified_at":"2025-02-26T09:13:34.143242+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 190.05525ms - - id: 7 + duration: 158.425125ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -268,7 +302,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/49z-ysb-ywy + url: https://api.datadoghq.com/api/v1/dashboard/ccf-8xc-832 method: DELETE response: proto: HTTP/1.1 @@ -280,10 +314,10 @@ interactions: content_length: -1 uncompressed: true body: | - {"deleted_dashboard_id":"49z-ysb-ywy"} + {"deleted_dashboard_id":"ccf-8xc-832"} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 234.619542ms + duration: 221.240792ms diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.freeze b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.freeze index 7dc496631..26085b4b5 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.freeze +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.freeze @@ -1 +1 @@ -2025-02-25T15:48:37.060412+01:00 \ No newline at end of file +2025-02-26T10:13:22.346105+01:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.yaml b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.yaml index 06057d0a4..da59d1eb2 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.yaml +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.yaml @@ -13,7 +13,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: @@ -32,13 +32,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6178376213271267}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:40.607839+00:00","template_variable_presets":[],"tags":[]} + {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5521447246072775}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:26.275458+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 526.783916ms + duration: 623.253792ms - id: 1 request: proto: HTTP/1.1 @@ -55,7 +55,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y method: GET response: proto: HTTP/1.1 @@ -67,13 +67,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6178376213271267}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:40.607839+00:00","template_variable_presets":[],"tags":[]} + {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5521447246072775}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:26.275458+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 172.495833ms + duration: 168.746083ms - id: 2 request: proto: HTTP/1.1 @@ -90,7 +90,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y method: GET response: proto: HTTP/1.1 @@ -102,13 +102,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6178376213271267}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:40.607839+00:00","template_variable_presets":[],"tags":[]} + {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5521447246072775}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:26.275458+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 161.883083ms + duration: 166.102ms - id: 3 request: proto: HTTP/1.1 @@ -125,7 +125,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y method: GET response: proto: HTTP/1.1 @@ -137,13 +137,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6178376213271267}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:40.607839+00:00","template_variable_presets":[],"tags":[]} + {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5521447246072775}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:26.275458+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 173.966625ms + duration: 171.885041ms - id: 4 request: proto: HTTP/1.1 @@ -156,14 +156,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"v6a-9re-e4u","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"wk7-sgd-q7y","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: - application/json Content-Type: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y method: PUT response: proto: HTTP/1.1 @@ -175,13 +175,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":3388164820821612}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:46.579816+00:00","template_variable_presets":[],"tags":[]} + {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5635870865585523}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:31.944209+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 367.420708ms + duration: 330.636584ms - id: 5 request: proto: HTTP/1.1 @@ -198,7 +198,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y method: GET response: proto: HTTP/1.1 @@ -210,13 +210,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":3388164820821612}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:46.579816+00:00","template_variable_presets":[],"tags":[]} + {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5635870865585523}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:31.944209+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 224.112875ms + duration: 175.832375ms - id: 6 request: proto: HTTP/1.1 @@ -233,7 +233,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y method: GET response: proto: HTTP/1.1 @@ -245,13 +245,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":3388164820821612}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:46.579816+00:00","template_variable_presets":[],"tags":[]} + {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5635870865585523}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:31.944209+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 182.7355ms + duration: 166.592625ms - id: 7 request: proto: HTTP/1.1 @@ -268,7 +268,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y method: GET response: proto: HTTP/1.1 @@ -280,13 +280,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":3388164820821612}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:46.579816+00:00","template_variable_presets":[],"tags":[]} + {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5635870865585523}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:31.944209+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 174.061958ms + duration: 177.0685ms - id: 8 request: proto: HTTP/1.1 @@ -299,7 +299,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917"},"relationships":{},"type":"roles"}} + {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202"},"relationships":{},"type":"roles"}} form: {} headers: Accept: @@ -314,15 +314,15 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 984 + content_length: 983 uncompressed: false - body: '{"data":{"id":"a1480a9a-f387-11ef-a716-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:52.376893Z","modified_at":"2025-02-25T14:48:52.375975Z","name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"f6288054-f421-11ef-ae18-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:37.27126Z","modified_at":"2025-02-26T09:13:37.271871Z","name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 158.740791ms + duration: 121.60125ms - id: 9 request: proto: HTTP/1.1 @@ -339,7 +339,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/a1480a9a-f387-11ef-a716-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/f6288054-f421-11ef-ae18-da7ad0900002 method: GET response: proto: HTTP/1.1 @@ -347,15 +347,15 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 1066 uncompressed: false - body: '{"data":{"id":"a1480a9a-f387-11ef-a716-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:52.376893Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-25T14:48:52.375975Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"f6288054-f421-11ef-ae18-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:37.27126Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:13:37.271871Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 128.1ms + duration: 122.456667ms - id: 10 request: proto: HTTP/1.1 @@ -368,14 +368,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"v6a-9re-e4u","layout_type":"ordered","notify_list":[],"restricted_roles":["a1480a9a-f387-11ef-a716-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"wk7-sgd-q7y","layout_type":"ordered","notify_list":[],"restricted_roles":["f6288054-f421-11ef-ae18-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: - application/json Content-Type: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y method: PUT response: proto: HTTP/1.1 @@ -387,13 +387,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":8221006609087974}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:53.092971+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["a1480a9a-f387-11ef-a716-da7ad0900002"]} + {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":131736869096210}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:37.996654+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["f6288054-f421-11ef-ae18-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 345.207667ms + duration: 322.842291ms - id: 11 request: proto: HTTP/1.1 @@ -410,7 +410,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/a1480a9a-f387-11ef-a716-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/f6288054-f421-11ef-ae18-da7ad0900002 method: GET response: proto: HTTP/1.1 @@ -418,15 +418,15 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 1066 uncompressed: false - body: '{"data":{"id":"a1480a9a-f387-11ef-a716-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:52.376893Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-25T14:48:52.375975Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"f6288054-f421-11ef-ae18-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:37.27126Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:13:37.271871Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 126.842084ms + duration: 122.914041ms - id: 12 request: proto: HTTP/1.1 @@ -443,7 +443,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y method: GET response: proto: HTTP/1.1 @@ -455,13 +455,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":8221006609087974}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:53.092971+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["a1480a9a-f387-11ef-a716-da7ad0900002"]} + {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":131736869096210}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:37.996654+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["f6288054-f421-11ef-ae18-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 169.097833ms + duration: 173.503083ms - id: 13 request: proto: HTTP/1.1 @@ -478,7 +478,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/a1480a9a-f387-11ef-a716-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/f6288054-f421-11ef-ae18-da7ad0900002 method: GET response: proto: HTTP/1.1 @@ -486,15 +486,15 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 1066 uncompressed: false - body: '{"data":{"id":"a1480a9a-f387-11ef-a716-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:52.376893Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-25T14:48:52.375975Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"f6288054-f421-11ef-ae18-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:37.27126Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:13:37.271871Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 141.292917ms + duration: 114.2665ms - id: 14 request: proto: HTTP/1.1 @@ -511,7 +511,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y method: GET response: proto: HTTP/1.1 @@ -523,13 +523,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":8221006609087974}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:53.092971+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["a1480a9a-f387-11ef-a716-da7ad0900002"]} + {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":131736869096210}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:37.996654+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["f6288054-f421-11ef-ae18-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 248.795166ms + duration: 151.164417ms - id: 15 request: proto: HTTP/1.1 @@ -546,7 +546,7 @@ interactions: headers: Accept: - '*/*' - url: https://api.datadoghq.com/api/v2/roles/a1480a9a-f387-11ef-a716-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/f6288054-f421-11ef-ae18-da7ad0900002 method: DELETE response: proto: HTTP/1.1 @@ -560,7 +560,7 @@ interactions: headers: {} status: 204 No Content code: 204 - duration: 142.063ms + duration: 128.085666ms - id: 16 request: proto: HTTP/1.1 @@ -573,14 +573,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"v6a-9re-e4u","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"wk7-sgd-q7y","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: - application/json Content-Type: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y method: PUT response: proto: HTTP/1.1 @@ -592,13 +592,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6766051948335979}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:57.753049+00:00","template_variable_presets":[],"tags":[]} + {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6343330068781590}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:42.566808+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 314.927084ms + duration: 297.625125ms - id: 17 request: proto: HTTP/1.1 @@ -615,7 +615,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y method: GET response: proto: HTTP/1.1 @@ -627,13 +627,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6766051948335979}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:57.753049+00:00","template_variable_presets":[],"tags":[]} + {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6343330068781590}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:42.566808+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 163.245541ms + duration: 158.814125ms - id: 18 request: proto: HTTP/1.1 @@ -650,7 +650,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y method: GET response: proto: HTTP/1.1 @@ -662,13 +662,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"v6a-9re-e4u","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/v6a-9re-e4u/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6766051948335979}],"notify_list":[],"created_at":"2025-02-25T14:48:40.607839+00:00","modified_at":"2025-02-25T14:48:57.753049+00:00","template_variable_presets":[],"tags":[]} + {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6343330068781590}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:42.566808+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 230.758667ms + duration: 157.053125ms - id: 19 request: proto: HTTP/1.1 @@ -685,7 +685,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/v6a-9re-e4u + url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y method: DELETE response: proto: HTTP/1.1 @@ -697,10 +697,10 @@ interactions: content_length: -1 uncompressed: true body: | - {"deleted_dashboard_id":"v6a-9re-e4u"} + {"deleted_dashboard_id":"wk7-sgd-q7y"} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 204.918042ms + duration: 429.977416ms diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.freeze b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.freeze index c31643cd4..dd803f635 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.freeze +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.freeze @@ -1 +1 @@ -2025-02-25T15:48:37.052163+01:00 \ No newline at end of file +2025-02-26T10:13:22.340467+01:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.yaml b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.yaml index c0fd0cc6b..853e87d65 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.yaml +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.yaml @@ -13,7 +13,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: @@ -32,13 +32,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"c93-pyu-f4b","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/c93-pyu-f4b/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2922256447214640}],"notify_list":[],"created_at":"2025-02-25T14:48:40.688091+00:00","modified_at":"2025-02-25T14:48:40.688091+00:00","template_variable_presets":[],"tags":[]} + {"id":"uht-8u6-e99","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/uht-8u6-e99/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6594815944689309}],"notify_list":[],"created_at":"2025-02-26T09:13:26.263075+00:00","modified_at":"2025-02-26T09:13:26.263075+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 452.8065ms + duration: 573.690417ms - id: 1 request: proto: HTTP/1.1 @@ -55,7 +55,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/c93-pyu-f4b + url: https://api.datadoghq.com/api/v1/dashboard/uht-8u6-e99 method: GET response: proto: HTTP/1.1 @@ -67,13 +67,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"c93-pyu-f4b","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/c93-pyu-f4b/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2922256447214640}],"notify_list":[],"created_at":"2025-02-25T14:48:40.688091+00:00","modified_at":"2025-02-25T14:48:40.688091+00:00","template_variable_presets":[],"tags":[]} + {"id":"uht-8u6-e99","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/uht-8u6-e99/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6594815944689309}],"notify_list":[],"created_at":"2025-02-26T09:13:26.263075+00:00","modified_at":"2025-02-26T09:13:26.263075+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 173.485166ms + duration: 170.074208ms - id: 2 request: proto: HTTP/1.1 @@ -90,7 +90,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/c93-pyu-f4b + url: https://api.datadoghq.com/api/v1/dashboard/uht-8u6-e99 method: GET response: proto: HTTP/1.1 @@ -102,13 +102,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"c93-pyu-f4b","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/c93-pyu-f4b/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2922256447214640}],"notify_list":[],"created_at":"2025-02-25T14:48:40.688091+00:00","modified_at":"2025-02-25T14:48:40.688091+00:00","template_variable_presets":[],"tags":[]} + {"id":"uht-8u6-e99","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/uht-8u6-e99/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6594815944689309}],"notify_list":[],"created_at":"2025-02-26T09:13:26.263075+00:00","modified_at":"2025-02-26T09:13:26.263075+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 180.203583ms + duration: 289.081083ms - id: 3 request: proto: HTTP/1.1 @@ -125,7 +125,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/c93-pyu-f4b + url: https://api.datadoghq.com/api/v1/dashboard/uht-8u6-e99 method: GET response: proto: HTTP/1.1 @@ -137,13 +137,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"c93-pyu-f4b","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/c93-pyu-f4b/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740494917","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2922256447214640}],"notify_list":[],"created_at":"2025-02-25T14:48:40.688091+00:00","modified_at":"2025-02-25T14:48:40.688091+00:00","template_variable_presets":[],"tags":[]} + {"id":"uht-8u6-e99","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/uht-8u6-e99/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6594815944689309}],"notify_list":[],"created_at":"2025-02-26T09:13:26.263075+00:00","modified_at":"2025-02-26T09:13:26.263075+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 160.708833ms + duration: 182.203917ms - id: 4 request: proto: HTTP/1.1 @@ -156,7 +156,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917"},"relationships":{},"type":"roles"}} + {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202"},"relationships":{},"type":"roles"}} form: {} headers: Accept: @@ -173,13 +173,13 @@ interactions: trailer: {} content_length: 984 uncompressed: false - body: '{"data":{"id":"9d827800-f387-11ef-abe1-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:46.048562Z","modified_at":"2025-02-25T14:48:46.048004Z","name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"f2d374ea-f421-11ef-8df0-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:31.680562Z","modified_at":"2025-02-26T09:13:31.681503Z","name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 126.613042ms + duration: 173.703667ms - id: 5 request: proto: HTTP/1.1 @@ -196,7 +196,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/9d827800-f387-11ef-abe1-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/f2d374ea-f421-11ef-8df0-da7ad0900002 method: GET response: proto: HTTP/1.1 @@ -206,13 +206,13 @@ interactions: trailer: {} content_length: 1067 uncompressed: false - body: '{"data":{"id":"9d827800-f387-11ef-abe1-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:46.048562Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-25T14:48:46.048004Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"f2d374ea-f421-11ef-8df0-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:31.680562Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:13:31.681503Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 125.721083ms + duration: 127.956458ms - id: 6 request: proto: HTTP/1.1 @@ -225,14 +225,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"c93-pyu-f4b","layout_type":"ordered","notify_list":[],"restricted_roles":["9d827800-f387-11ef-abe1-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"uht-8u6-e99","layout_type":"ordered","notify_list":[],"restricted_roles":["f2d374ea-f421-11ef-8df0-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: - application/json Content-Type: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/c93-pyu-f4b + url: https://api.datadoghq.com/api/v1/dashboard/uht-8u6-e99 method: PUT response: proto: HTTP/1.1 @@ -244,13 +244,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"c93-pyu-f4b","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/c93-pyu-f4b/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2775555185927078}],"notify_list":[],"created_at":"2025-02-25T14:48:40.688091+00:00","modified_at":"2025-02-25T14:48:46.815675+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9d827800-f387-11ef-abe1-da7ad0900002"]} + {"id":"uht-8u6-e99","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/uht-8u6-e99/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6700894627881928}],"notify_list":[],"created_at":"2025-02-26T09:13:26.263075+00:00","modified_at":"2025-02-26T09:13:32.487743+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["f2d374ea-f421-11ef-8df0-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 379.109333ms + duration: 337.609125ms - id: 7 request: proto: HTTP/1.1 @@ -267,7 +267,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/c93-pyu-f4b + url: https://api.datadoghq.com/api/v1/dashboard/uht-8u6-e99 method: GET response: proto: HTTP/1.1 @@ -279,13 +279,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"c93-pyu-f4b","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/c93-pyu-f4b/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2775555185927078}],"notify_list":[],"created_at":"2025-02-25T14:48:40.688091+00:00","modified_at":"2025-02-25T14:48:46.815675+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9d827800-f387-11ef-abe1-da7ad0900002"]} + {"id":"uht-8u6-e99","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/uht-8u6-e99/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6700894627881928}],"notify_list":[],"created_at":"2025-02-26T09:13:26.263075+00:00","modified_at":"2025-02-26T09:13:32.487743+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["f2d374ea-f421-11ef-8df0-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 201.146041ms + duration: 175.423208ms - id: 8 request: proto: HTTP/1.1 @@ -302,7 +302,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/9d827800-f387-11ef-abe1-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/f2d374ea-f421-11ef-8df0-da7ad0900002 method: GET response: proto: HTTP/1.1 @@ -312,13 +312,13 @@ interactions: trailer: {} content_length: 1067 uncompressed: false - body: '{"data":{"id":"9d827800-f387-11ef-abe1-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-25T14:48:46.048562Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-25T14:48:46.048004Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"f2d374ea-f421-11ef-8df0-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:31.680562Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:13:31.681503Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 126.46425ms + duration: 128.243292ms - id: 9 request: proto: HTTP/1.1 @@ -335,7 +335,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/c93-pyu-f4b + url: https://api.datadoghq.com/api/v1/dashboard/uht-8u6-e99 method: GET response: proto: HTTP/1.1 @@ -347,13 +347,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"c93-pyu-f4b","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740494917","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/c93-pyu-f4b/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740494917","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2775555185927078}],"notify_list":[],"created_at":"2025-02-25T14:48:40.688091+00:00","modified_at":"2025-02-25T14:48:46.815675+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["9d827800-f387-11ef-abe1-da7ad0900002"]} + {"id":"uht-8u6-e99","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/uht-8u6-e99/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6700894627881928}],"notify_list":[],"created_at":"2025-02-26T09:13:26.263075+00:00","modified_at":"2025-02-26T09:13:32.487743+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["f2d374ea-f421-11ef-8df0-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 173.177667ms + duration: 156.39825ms - id: 10 request: proto: HTTP/1.1 @@ -370,7 +370,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/c93-pyu-f4b + url: https://api.datadoghq.com/api/v1/dashboard/uht-8u6-e99 method: DELETE response: proto: HTTP/1.1 @@ -382,13 +382,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"deleted_dashboard_id":"c93-pyu-f4b"} + {"deleted_dashboard_id":"uht-8u6-e99"} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 221.094708ms + duration: 213.063791ms - id: 11 request: proto: HTTP/1.1 @@ -405,7 +405,7 @@ interactions: headers: Accept: - '*/*' - url: https://api.datadoghq.com/api/v2/roles/9d827800-f387-11ef-abe1-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/f2d374ea-f421-11ef-8df0-da7ad0900002 method: DELETE response: proto: HTTP/1.1 @@ -419,4 +419,4 @@ interactions: headers: {} status: 204 No Content code: 204 - duration: 140.121708ms + duration: 135.381667ms From c92983223e297118b467fdb8bc4eef091a9366b2 Mon Sep 17 00:00:00 2001 From: Etienne Carriere Date: Wed, 26 Feb 2025 11:02:37 +0100 Subject: [PATCH 5/5] Fix cassettes without cache on permissions --- ...AccDatadogDashboardRbac_adminToRbac.freeze | 2 +- ...stAccDatadogDashboardRbac_adminToRbac.yaml | 116 +++++++---- ...AccDatadogDashboardRbac_createAdmin.freeze | 2 +- ...stAccDatadogDashboardRbac_createAdmin.yaml | 30 +-- ...tAccDatadogDashboardRbac_createOpen.freeze | 2 +- ...estAccDatadogDashboardRbac_createOpen.yaml | 30 +-- ...tAccDatadogDashboardRbac_createRbac.freeze | 2 +- ...estAccDatadogDashboardRbac_createRbac.yaml | 54 ++--- ...cDatadogDashboardRbac_updateToAdmin.freeze | 2 +- ...AccDatadogDashboardRbac_updateToAdmin.yaml | 96 +++------ ...ccDatadogDashboardRbac_updateToOpen.freeze | 2 +- ...tAccDatadogDashboardRbac_updateToOpen.yaml | 184 +++++++++++------- ...ccDatadogDashboardRbac_updateToRbac.freeze | 2 +- ...tAccDatadogDashboardRbac_updateToRbac.yaml | 116 +++++++---- 14 files changed, 354 insertions(+), 286 deletions(-) diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.freeze b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.freeze index b4df311b6..ccc1963e3 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.freeze +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.freeze @@ -1 +1 @@ -2025-02-26T10:13:22.350749+01:00 \ No newline at end of file +2025-02-26T10:54:29.592022+01:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.yaml b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.yaml index 53dea7da1..6e81b67d5 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.yaml +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_adminToRbac.yaml @@ -13,7 +13,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740563669","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: @@ -32,13 +32,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"r58-zg7-k95","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/r58-zg7-k95/tf-testaccdatadogdashboardrbacadmintorbac-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7297170477277332}],"notify_list":[],"created_at":"2025-02-26T09:13:26.271291+00:00","modified_at":"2025-02-26T09:13:26.271291+00:00","template_variable_presets":[],"tags":[]} + {"id":"nwk-6mn-7m8","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740563669","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/nwk-6mn-7m8/tf-testaccdatadogdashboardrbacadmintorbac-local-1740563669","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2449556456432019}],"notify_list":[],"created_at":"2025-02-26T09:54:32.566852+00:00","modified_at":"2025-02-26T09:54:32.566852+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 646.890125ms + duration: 586.741333ms - id: 1 request: proto: HTTP/1.1 @@ -55,7 +55,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/r58-zg7-k95 + url: https://api.datadoghq.com/api/v1/dashboard/nwk-6mn-7m8 method: GET response: proto: HTTP/1.1 @@ -67,13 +67,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"r58-zg7-k95","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/r58-zg7-k95/tf-testaccdatadogdashboardrbacadmintorbac-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7297170477277332}],"notify_list":[],"created_at":"2025-02-26T09:13:26.271291+00:00","modified_at":"2025-02-26T09:13:26.271291+00:00","template_variable_presets":[],"tags":[]} + {"id":"nwk-6mn-7m8","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740563669","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/nwk-6mn-7m8/tf-testaccdatadogdashboardrbacadmintorbac-local-1740563669","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2449556456432019}],"notify_list":[],"created_at":"2025-02-26T09:54:32.566852+00:00","modified_at":"2025-02-26T09:54:32.566852+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 155.692458ms + duration: 178.588583ms - id: 2 request: proto: HTTP/1.1 @@ -90,7 +90,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/r58-zg7-k95 + url: https://api.datadoghq.com/api/v1/dashboard/nwk-6mn-7m8 method: GET response: proto: HTTP/1.1 @@ -102,13 +102,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"r58-zg7-k95","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/r58-zg7-k95/tf-testaccdatadogdashboardrbacadmintorbac-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7297170477277332}],"notify_list":[],"created_at":"2025-02-26T09:13:26.271291+00:00","modified_at":"2025-02-26T09:13:26.271291+00:00","template_variable_presets":[],"tags":[]} + {"id":"nwk-6mn-7m8","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740563669","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/nwk-6mn-7m8/tf-testaccdatadogdashboardrbacadmintorbac-local-1740563669","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2449556456432019}],"notify_list":[],"created_at":"2025-02-26T09:54:32.566852+00:00","modified_at":"2025-02-26T09:54:32.566852+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 612.185292ms + duration: 174.932875ms - id: 3 request: proto: HTTP/1.1 @@ -125,7 +125,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/r58-zg7-k95 + url: https://api.datadoghq.com/api/v1/dashboard/nwk-6mn-7m8 method: GET response: proto: HTTP/1.1 @@ -137,13 +137,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"r58-zg7-k95","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/r58-zg7-k95/tf-testaccdatadogdashboardrbacadmintorbac-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7297170477277332}],"notify_list":[],"created_at":"2025-02-26T09:13:26.271291+00:00","modified_at":"2025-02-26T09:13:26.271291+00:00","template_variable_presets":[],"tags":[]} + {"id":"nwk-6mn-7m8","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740563669","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/nwk-6mn-7m8/tf-testaccdatadogdashboardrbacadmintorbac-local-1740563669","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2449556456432019}],"notify_list":[],"created_at":"2025-02-26T09:54:32.566852+00:00","modified_at":"2025-02-26T09:54:32.566852+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 177.605167ms + duration: 185.353792ms - id: 4 request: proto: HTTP/1.1 @@ -156,7 +156,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202"},"relationships":{},"type":"roles"}} + {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740563669"},"relationships":{},"type":"roles"}} form: {} headers: Accept: @@ -173,13 +173,13 @@ interactions: trailer: {} content_length: 983 uncompressed: false - body: '{"data":{"id":"f304345e-f421-11ef-88ef-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:31.988168Z","modified_at":"2025-02-26T09:13:31.999857Z","name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"b023a646-f427-11ef-88f8-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:54:36.779138Z","modified_at":"2025-02-26T09:54:36.780043Z","name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740563669","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 191.480666ms + duration: 132.557375ms - id: 5 request: proto: HTTP/1.1 @@ -196,7 +196,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/f304345e-f421-11ef-88ef-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/b023a646-f427-11ef-88f8-da7ad0900002 method: GET response: proto: HTTP/1.1 @@ -206,14 +206,48 @@ interactions: trailer: {} content_length: 1066 uncompressed: false - body: '{"data":{"id":"f304345e-f421-11ef-88ef-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:31.988168Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:13:31.999857Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"b023a646-f427-11ef-88f8-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:54:36.779138Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:54:36.780043Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740563669","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 132.790209ms + duration: 150.600375ms - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v2/permissions + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: '{"data":[{"id":"984a2bd4-d3b4-11e8-a1ff-a7f660d43029","type":"permissions","attributes":{"created":"2018-10-19T15:35:23.734317Z","description":"Deprecated. Privileged Access (also known as Admin permission) has been replaced by more specific permissions: Access Management, Org Management, Billing Read/Write, Usage Read/Write.","display_name":"Privileged Access","display_type":"other","group_name":"General","name":"admin","restricted":false}},{"id":"984d2f00-d3b4-11e8-a200-bb47109e9987","type":"permissions","attributes":{"created":"2018-10-19T15:35:23.756736Z","description":"Deprecated. Standard Access has been replaced by more specific permissions.","display_name":"Standard Access","display_type":"other","group_name":"General","name":"standard","restricted":false}},{"id":"5e605652-dd12-11e8-9e53-375565b8970e","type":"permissions","attributes":{"created":"2018-10-31T13:39:19.72745Z","description":"Read log data, possibly scoped to one or more indexes. In order to read log data, a user must have both this permission and Logs Read Data. This permission can be granted in a limited capacity per index from the Logs interface or APIs. If granted via the Roles interface or API the permission has global scope. Restrictions are limited to the Log Management product.","display_name":"Logs Read Index Data","display_type":"read","group_name":"Log Management","name":"logs_read_index_data","restricted":false}},{"id":"62cc036c-dd12-11e8-9e54-db9995643092","type":"permissions","attributes":{"created":"2018-10-31T13:39:27.148615Z","description":"Read and modify all indexes in your account. This includes the ability to grant the Logs Read Index Data and Logs Write Exclusion Filters permission to other roles, for some or all indexes.","display_name":"Logs Modify Indexes","display_type":"write","group_name":"Log Management","name":"logs_modify_indexes","restricted":false}},{"id":"6f66600e-dd12-11e8-9e55-7f30fbb45e73","type":"permissions","attributes":{"created":"2018-10-31T13:39:48.292879Z","description":"View the live tail feed for all log indexes, even if otherwise specifically restricted.","display_name":"Logs Live Tail","display_type":"read","group_name":"Log Management","name":"logs_live_tail","restricted":false}},{"id":"7d7c98ac-dd12-11e8-9e56-93700598622d","type":"permissions","attributes":{"created":"2018-10-31T13:40:11.926613Z","description":"Add and change exclusion filters for all or some log indexes. Can be granted in a limited capacity per index to specific roles via the Logs interface or API. If granted from the Roles interface or API, the permission has global scope.","display_name":"Logs Write Exclusion Filters","display_type":"write","group_name":"Log Management","name":"logs_write_exclusion_filters","restricted":false}},{"id":"811ac4ca-dd12-11e8-9e57-676a7f0beef9","type":"permissions","attributes":{"created":"2018-10-31T13:40:17.996379Z","description":"Add and change log pipeline configurations, including the ability to grant the Logs Write Processors permission to other roles, for some or all pipelines.","display_name":"Logs Write Pipelines","display_type":"write","group_name":"Log Management","name":"logs_write_pipelines","restricted":false}},{"id":"84aa3ae4-dd12-11e8-9e58-a373a514ccd0","type":"permissions","attributes":{"created":"2018-10-31T13:40:23.969725Z","description":"Add and change some or all log processor configurations. Can be granted in a limited capacity per pipeline to specific roles via the Logs interface or API. If granted via the Roles interface or API the permission has global scope.","display_name":"Logs Write Processors","display_type":"write","group_name":"Log Management","name":"logs_write_processors","restricted":false}},{"id":"87b00304-dd12-11e8-9e59-cbeb5f71f72f","type":"permissions","attributes":{"created":"2018-10-31T13:40:29.040786Z","description":"Add and edit Log Archives.","display_name":"Logs Write Archives","display_type":"write","group_name":"Log Management","name":"logs_write_archives","restricted":false}},{"id":"979df720-aed7-11e9-99c6-a7eb8373165a","type":"permissions","attributes":{"created":"2019-07-25T12:27:39.640758Z","description":"Create custom metrics from logs.","display_name":"Logs Generate Metrics","display_type":"write","group_name":"Log Management","name":"logs_generate_metrics","restricted":false}},{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions","attributes":{"created":"2019-09-10T14:39:51.955175Z","description":"View dashboards.","display_name":"Dashboards Read","display_type":"read","group_name":"Dashboards","name":"dashboards_read","restricted":true}},{"id":"d90f6831-d3d8-11e9-a77a-4fd230ddbc6a","type":"permissions","attributes":{"created":"2019-09-10T14:39:51.962944Z","description":"Create and change dashboards.","display_name":"Dashboards Write","display_type":"write","group_name":"Dashboards","name":"dashboards_write","restricted":false}},{"id":"d90f6832-d3d8-11e9-a77a-bf8a2607f864","type":"permissions","attributes":{"created":"2019-09-10T14:39:51.967094Z","description":"Generate public and authenticated links to share dashboards or embeddable graphs externally.","display_name":"Dashboards Public Share","display_type":"write","group_name":"Dashboards","name":"dashboards_public_share","restricted":false}},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions","attributes":{"created":"2019-09-16T18:39:07.744297Z","description":"View monitors.","display_name":"Monitors Read","display_type":"read","group_name":"Monitors","name":"monitors_read","restricted":true}},{"id":"48ef71ea-d8b1-11e9-a77a-93f408470ad0","type":"permissions","attributes":{"created":"2019-09-16T18:39:15.597109Z","description":"Edit and delete individual monitors.","display_name":"Monitors Write","display_type":"write","group_name":"Monitors","name":"monitors_write","restricted":false}},{"id":"4d87d5f8-d8b1-11e9-a77a-eb9c8350d04f","type":"permissions","attributes":{"created":"2019-09-16T18:39:23.306702Z","description":"Set downtimes to suppress alerts from any monitor in an organization. Mute and unmute monitors. The ability to write monitors is not required to set downtimes.","display_name":"Manage Downtimes","display_type":"write","group_name":"Monitors","name":"monitors_downtime","restricted":false}},{"id":"1af86ce4-7823-11ea-93dc-d7cad1b1c6cb","type":"permissions","attributes":{"created":"2020-04-06T16:24:35.989108Z","description":"Read log data. In order to read log data, a user must have both this permission and Logs Read Index Data. This permission can be restricted with restriction queries. Restrictions are limited to the Log Management product.","display_name":"Logs Read Data","display_type":"read","group_name":"Log Management","name":"logs_read_data","restricted":false}},{"id":"b382b982-8535-11ea-93de-2bf1bdf20798","type":"permissions","attributes":{"created":"2020-04-23T07:40:27.966133Z","description":"Read Log Archives location and use it for rehydration.","display_name":"Logs Read Archives","display_type":"read","group_name":"Log Management","name":"logs_read_archives","restricted":false}},{"id":"7314eb20-aa58-11ea-95e2-6fb6e4a451d5","type":"permissions","attributes":{"created":"2020-06-09T13:52:25.279909Z","description":"Read Detection Rules.","display_name":"Security Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_rules_read","restricted":false}},{"id":"7b516476-aa58-11ea-95e2-93718cd56369","type":"permissions","attributes":{"created":"2020-06-09T13:52:39.099413Z","description":"Create and edit Detection Rules.","display_name":"Security Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_rules_write","restricted":false}},{"id":"80de1ec0-aa58-11ea-95e2-aff381626d5d","type":"permissions","attributes":{"created":"2020-06-09T13:52:48.410398Z","description":"View Security Signals.","display_name":"Security Signals Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_signals_read","restricted":false}},{"id":"58b412cc-ff6d-11eb-bc9c-da7ad0900002","type":"permissions","attributes":{"created":"2021-08-17T15:11:06.963503Z","description":"Modify Security Signals.","display_name":"Security Signals Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_signals_write","restricted":false}},{"id":"9ac1d8cc-e707-11ea-aa2d-73d37e989a9d","type":"permissions","attributes":{"created":"2020-08-25T19:17:23.539701Z","description":"Invite other users to your organization.","display_name":"User Access Invite","display_type":"write","group_name":"Access Management","name":"user_access_invite","restricted":false}},{"id":"9de604d8-e707-11ea-aa2d-93f1a783b3a3","type":"permissions","attributes":{"created":"2020-08-25T19:17:28.810412Z","description":"Disable users, manage user roles, manage SAML-to-role mappings, and configure logs restriction queries.","display_name":"User Access Manage","display_type":"write","group_name":"Access Management","name":"user_access_manage","restricted":false}},{"id":"46a301da-ec5c-11ea-aa9f-73bedeab67ee","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View and manage Application Keys owned by the user.","display_name":"User App Keys","display_type":"write","group_name":"API and Application Keys","name":"user_app_keys","restricted":false}},{"id":"46a301db-ec5c-11ea-aa9f-2fe72193d60e","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View Application Keys owned by all users in the organization.","display_name":"Org App Keys Read","display_type":"read","group_name":"API and Application Keys","name":"org_app_keys_read","restricted":false}},{"id":"46a301dc-ec5c-11ea-aa9f-13b33f8f46ea","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Manage Application Keys owned by all users in the organization.","display_name":"Org App Keys Write","display_type":"write","group_name":"API and Application Keys","name":"org_app_keys_write","restricted":false}},{"id":"46a301dd-ec5c-11ea-aa9f-97edfb345bc9","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View, search, and use Synthetics private locations.","display_name":"Synthetics Private Locations Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_private_location_read","restricted":false}},{"id":"46a301de-ec5c-11ea-aa9f-a73252c24806","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Create and delete private locations in addition to having access to the associated installation guidelines.","display_name":"Synthetics Private Locations Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_private_location_write","restricted":false}},{"id":"46a301df-ec5c-11ea-aa9f-970a9ae645e5","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View your organization''s subscription and payment method but not make edits.","display_name":"Billing Read","display_type":"read","group_name":"Billing and Usage","name":"billing_read","restricted":false}},{"id":"46a301e0-ec5c-11ea-aa9f-6ba6cc675d8c","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Manage your organization''s subscription and payment method.","display_name":"Billing Edit","display_type":"write","group_name":"Billing and Usage","name":"billing_edit","restricted":false}},{"id":"46a301e1-ec5c-11ea-aa9f-afa39f6f3e36","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View your organization''s usage and usage attribution.","display_name":"Usage Read","display_type":"read","group_name":"Billing and Usage","name":"usage_read","restricted":false}},{"id":"46a301e2-ec5c-11ea-aa9f-1f511b7305fd","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Manage your organization''s usage attribution set-up.","display_name":"Usage Edit","display_type":"write","group_name":"Billing and Usage","name":"usage_edit","restricted":false}},{"id":"46a301e4-ec5c-11ea-aa9f-87282b3a50cc","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Edit and save tag configurations for custom metrics.","display_name":"Metric Tags Write","display_type":"write","group_name":"Metrics","name":"metric_tags_write","restricted":false}},{"id":"07c3c146-f7f8-11ea-acf6-0bd62b9ae60e","type":"permissions","attributes":{"created":"2020-09-16T08:38:44.242076Z","description":"Rehydrate logs from Archives.","display_name":"Logs Write Historical Views","display_type":"write","group_name":"Log Management","name":"logs_write_historical_view","restricted":false}},{"id":"2fbdac76-f923-11ea-adbc-07f3823e2b43","type":"permissions","attributes":{"created":"2020-09-17T20:20:10.834252Z","description":"View Audit Trail in your organization.","display_name":"Audit Trail Read","display_type":"read","group_name":"Compliance","name":"audit_logs_read","restricted":false}},{"id":"372896c4-f923-11ea-adbc-4fecd107156d","type":"permissions","attributes":{"created":"2020-09-17T20:20:23.279769Z","description":"List and retrieve the key values of all API Keys in your organization.","display_name":"API Keys Read","display_type":"read","group_name":"API and Application Keys","name":"api_keys_read","restricted":false}},{"id":"3e4d4d28-f923-11ea-adbc-e3565938c12e","type":"permissions","attributes":{"created":"2020-09-17T20:20:35.26443Z","description":"Create and rename API Keys for your organization.","display_name":"API Keys Write","display_type":"write","group_name":"API and Application Keys","name":"api_keys_write","restricted":false}},{"id":"4628ca54-f923-11ea-adbc-4b2b7f88c5e9","type":"permissions","attributes":{"created":"2020-09-17T20:20:48.446916Z","description":"View, search, and use Synthetics global variables.","display_name":"Synthetics Global Variable Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_global_variable_read","restricted":false}},{"id":"4ada6e36-f923-11ea-adbc-0788e5c5e3cf","type":"permissions","attributes":{"created":"2020-09-17T20:20:56.322003Z","description":"Create, edit, and delete global variables for Synthetics.","display_name":"Synthetics Global Variable Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_global_variable_write","restricted":false}},{"id":"5025ee24-f923-11ea-adbc-576ea241df8d","type":"permissions","attributes":{"created":"2020-09-17T20:21:05.205361Z","description":"List and view configured Synthetic tests and test results.","display_name":"Synthetics Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_read","restricted":false}},{"id":"55f4b5ec-f923-11ea-adbc-1bfa2334a755","type":"permissions","attributes":{"created":"2020-09-17T20:21:14.94914Z","description":"Create, edit, and delete Synthetic tests.","display_name":"Synthetics Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_write","restricted":false}},{"id":"5c6b88e2-f923-11ea-adbc-abf57d079420","type":"permissions","attributes":{"created":"2020-09-17T20:21:25.79416Z","description":"View the default settings for Synthetic Monitoring.","display_name":"Synthetics Default Settings Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_default_settings_read","restricted":false}},{"id":"642eebe6-f923-11ea-adbc-eb617674ea04","type":"permissions","attributes":{"created":"2020-09-17T20:21:38.818771Z","description":"Edit the default settings for Synthetic Monitoring.","display_name":"Synthetics Default Settings Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_default_settings_write","restricted":false}},{"id":"6ba32d22-0e1a-11eb-ba44-bf9a5aafaa39","type":"permissions","attributes":{"created":"2020-10-14T12:40:20.271908Z","description":"Create or edit Log Facets.","display_name":"Logs Write Facets","display_type":"write","group_name":"Log Management","name":"logs_write_facets","restricted":false}},{"id":"a42e94b2-1476-11eb-bd08-efda28c04248","type":"permissions","attributes":{"created":"2020-10-22T14:55:35.814239Z","description":"Create, disable, and use Service Accounts in your organization.","display_name":"Service Account Write","display_type":"write","group_name":"Access Management","name":"service_account_write","restricted":false}},{"id":"fcac2ad8-2843-11eb-8315-0fe47949d625","type":"permissions","attributes":{"created":"2020-11-16T19:43:23.198568Z","description":"Deprecated. Use the Integrations APIs to configure integrations. In order to configure integrations from the UI, a user must also have Standard Access.","display_name":"Integrations API","display_type":"other","group_name":"Integrations","name":"integrations_api","restricted":false}},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions","attributes":{"created":"2020-11-23T20:55:45.00611Z","description":"Read and query APM and Trace Analytics.","display_name":"APM Read","display_type":"read","group_name":"APM","name":"apm_read","restricted":true}},{"id":"43fa188e-2dce-11eb-84c0-835ad1fd6287","type":"permissions","attributes":{"created":"2020-11-23T20:55:49.190595Z","description":"Read trace retention filters. A user with this permission can view the retention filters page, list of filters, their statistics, and creation info.","display_name":"APM Retention Filters Read","display_type":"read","group_name":"APM","name":"apm_retention_filter_read","restricted":false}},{"id":"465cfe66-2dce-11eb-84c0-6baa888239fa","type":"permissions","attributes":{"created":"2020-11-23T20:55:53.194236Z","description":"Create, edit, and delete trace retention filters. A user with this permission can create new retention filters, and update or delete to existing retention filters.","display_name":"APM Retention Filters Write","display_type":"write","group_name":"APM","name":"apm_retention_filter_write","restricted":false}},{"id":"4916eebe-2dce-11eb-84c0-271cb2c672e8","type":"permissions","attributes":{"created":"2020-11-23T20:55:57.768261Z","description":"Access service ingestion pages. A user with this permission can view the service ingestion page, list of root services, their statistics, and creation info.","display_name":"APM Service Ingest Read","display_type":"read","group_name":"APM","name":"apm_service_ingest_read","restricted":false}},{"id":"4e3f02b4-2dce-11eb-84c0-2fca946a6efc","type":"permissions","attributes":{"created":"2020-11-23T20:56:06.419518Z","description":"Edit service ingestion pages'' root services. A user with this permission can edit the root service ingestion and generate a code snippet to increase ingestion per service.","display_name":"APM Service Ingest Write","display_type":"write","group_name":"APM","name":"apm_service_ingest_write","restricted":false}},{"id":"53950c54-2dce-11eb-84c0-a79ae108f6f8","type":"permissions","attributes":{"created":"2020-11-23T20:56:15.371926Z","description":"Set Apdex T value on any service. A user with this permission can set the T value from the Apdex graph on the service page.","display_name":"APM Apdex Manage Write","display_type":"write","group_name":"APM","name":"apm_apdex_manage_write","restricted":false}},{"id":"5cbe5f9c-2dce-11eb-84c0-872d3e9f1076","type":"permissions","attributes":{"created":"2020-11-23T20:56:30.742299Z","description":"Edit second primary tag selection. A user with this permission can modify the second primary tag dropdown in the APM settings page.","display_name":"APM Tag Management Write","display_type":"write","group_name":"APM","name":"apm_tag_management_write","restricted":false}},{"id":"61765026-2dce-11eb-84c0-833e230d1b8f","type":"permissions","attributes":{"created":"2020-11-23T20:56:38.658649Z","description":"Edit the operation name value selection. A user with this permission can modify the operation name list in the APM settings page and the operation name controller on the service page.","display_name":"APM Primary Operation Write","display_type":"write","group_name":"APM","name":"apm_primary_operation_write","restricted":false}},{"id":"04bc1cf2-340a-11eb-873a-43b973c760dd","type":"permissions","attributes":{"created":"2020-12-01T19:18:39.866516Z","description":"Configure Audit Trail in your organization.","display_name":"Audit Trail Write","display_type":"write","group_name":"Compliance","name":"audit_logs_write","restricted":false}},{"id":"8106300a-54f7-11eb-8cbc-7781a434a67b","type":"permissions","attributes":{"created":"2021-01-12T16:59:16.32448Z","description":"Create, edit, and delete RUM applications. Creating a RUM application automatically generates a Client Token. In order to create Client Tokens directly, a user needs the Client Tokens Write permission.","display_name":"RUM Apps Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_apps_write","restricted":false}},{"id":"edfd5e74-801f-11eb-96d8-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-08T15:06:59.006815Z","description":"Edit Dynamic Instrumentation configuration. Create or modify Dynamic Instrumentation probes that do not capture function state.","display_name":"Dynamic Instrumentation Write","display_type":"write","group_name":"APM","name":"debugger_write","restricted":false}},{"id":"edfd5e75-801f-11eb-96d8-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-08T15:06:59.010517Z","description":"View Dynamic Instrumentation configuration.","display_name":"Dynamic Instrumentation Read","display_type":"read","group_name":"APM","name":"debugger_read","restricted":false}},{"id":"bf0dcf7c-90af-11eb-9b82-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-29T16:56:46.394971Z","description":"View Sensitive Data Scanner configurations and scanning results.","display_name":"Data Scanner Read","display_type":"read","group_name":"Compliance","name":"data_scanner_read","restricted":false}},{"id":"bf0dcf7d-90af-11eb-9b82-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-29T16:56:46.398584Z","description":"Edit Sensitive Data Scanner configurations.","display_name":"Data Scanner Write","display_type":"write","group_name":"Compliance","name":"data_scanner_write","restricted":false}},{"id":"7df222b6-a45c-11eb-a0af-da7ad0900002","type":"permissions","attributes":{"created":"2021-04-23T17:51:12.18734Z","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 \u0026 unsubscribing from apps in the marketplace, and enabling \u0026 disabling Remote Configuration for the entire organization.","display_name":"Org Management","display_type":"write","group_name":"Access Management","name":"org_management","restricted":false}},{"id":"98b984f4-b16d-11eb-a2c6-da7ad0900002","type":"permissions","attributes":{"created":"2021-05-10T08:56:23.676833Z","description":"Read Security Filters.","display_name":"Security Filters Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_filters_read","restricted":false}},{"id":"98b984f5-b16d-11eb-a2c6-da7ad0900002","type":"permissions","attributes":{"created":"2021-05-10T08:56:23.680551Z","description":"Create, edit, and delete Security Filters.","display_name":"Security Filters Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_filters_write","restricted":false}},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.255499Z","description":"View incidents in Datadog.","display_name":"Incidents Read","display_type":"read","group_name":"Case and Incident Management","name":"incident_read","restricted":true}},{"id":"12efc211-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.264369Z","description":"Create, view, and manage incidents in Datadog.","display_name":"Incidents Write","display_type":"write","group_name":"Case and Incident Management","name":"incident_write","restricted":false}},{"id":"12efc20f-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.259568Z","description":"View Incident Settings.","display_name":"Incident Settings Read","display_type":"read","group_name":"Case and Incident Management","name":"incident_settings_read","restricted":false}},{"id":"12efc210-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.261986Z","description":"Configure Incident Settings.","display_name":"Incident Settings Write","display_type":"write","group_name":"Case and Incident Management","name":"incident_settings_write","restricted":false}},{"id":"97971c1c-e895-11eb-b13c-da7ad0900002","type":"permissions","attributes":{"created":"2021-07-19T13:31:15.595771Z","description":"View Application Security Management Event Rules.","display_name":"Application Security Management Event Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_event_rule_read","restricted":false}},{"id":"97971c1d-e895-11eb-b13c-da7ad0900002","type":"permissions","attributes":{"created":"2021-07-19T13:31:15.598808Z","description":"Edit Application Security Management Event Rules.","display_name":"Application Security Management Event Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_event_rule_write","restricted":false}},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions","attributes":{"created":"2021-08-02T09:46:07.671535Z","description":"View RUM Applications data.","display_name":"RUM Apps Read","display_type":"read","group_name":"Real User Monitoring","name":"rum_apps_read","restricted":true}},{"id":"7605ef25-f376-11eb-b90b-da7ad0900002","type":"permissions","attributes":{"created":"2021-08-02T09:46:07.67464Z","description":"View Session Replays.","display_name":"RUM Session Replay Read","display_type":"read","group_name":"Real User Monitoring","name":"rum_session_replay_read","restricted":false}},{"id":"c95412b8-16c7-11ec-85c0-da7ad0900002","type":"permissions","attributes":{"created":"2021-09-16T08:26:27.366789Z","description":"Read Notification Rules.","display_name":"Security Notification Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_notification_profiles_read","restricted":false}},{"id":"c95412b9-16c7-11ec-85c0-da7ad0900002","type":"permissions","attributes":{"created":"2021-09-16T08:26:27.369359Z","description":"Create, edit, and delete Notification Rules.","display_name":"Security Notification Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_notification_profiles_write","restricted":false}},{"id":"26c79920-1703-11ec-85d2-da7ad0900002","type":"permissions","attributes":{"created":"2021-09-16T15:31:24.458963Z","description":"Create custom metrics from spans.","display_name":"APM Generate Metrics","display_type":"write","group_name":"APM","name":"apm_generate_metrics","restricted":false}},{"id":"f4473c60-4792-11ec-a27b-da7ad0900002","type":"permissions","attributes":{"created":"2021-11-17T10:41:43.074031Z","description":"Read Cloud Workload Security Agent Rules.","display_name":"Cloud Workload Security Agent Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_cws_agent_rules_read","restricted":false}},{"id":"f4473c61-4792-11ec-a27b-da7ad0900002","type":"permissions","attributes":{"created":"2021-11-17T10:41:43.077905Z","description":"Create, edit, and delete Cloud Workload Security Agent Rules.","display_name":"Cloud Workload Security Agent Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_cws_agent_rules_write","restricted":false}},{"id":"020a563c-56a4-11ec-a982-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-06T14:51:35.049129Z","description":"Add and change APM pipeline configurations.","display_name":"APM Pipelines Write","display_type":"write","group_name":"APM","name":"apm_pipelines_write","restricted":false}},{"id":"8e4d6b6e-5750-11ec-a9f4-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-07T11:26:43.807269Z","description":"View APM pipeline configurations.","display_name":"APM Pipelines Read","display_type":"read","group_name":"APM","name":"apm_pipelines_read","restricted":false}},{"id":"945b3bb4-5884-11ec-aa6d-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-09T00:11:38.956827Z","description":"View pipelines in your organization.","display_name":"Observability Pipelines Read","display_type":"read","group_name":"Observability Pipelines","name":"observability_pipelines_read","restricted":false}},{"id":"945b3bb5-5884-11ec-aa6d-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-09T00:11:38.960833Z","description":"Edit pipelines in your organization.","display_name":"Observability Pipelines Write","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_write","restricted":false}},{"id":"f6e917a8-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.058412Z","description":"View workflows.","display_name":"Workflows Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"workflows_read","restricted":false}},{"id":"f6e917aa-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.061765Z","description":"Create, edit, and delete workflows.","display_name":"Workflows Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"workflows_write","restricted":false}},{"id":"f6e917a9-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.060079Z","description":"Run workflows.","display_name":"Workflows Run","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"workflows_run","restricted":false}},{"id":"f6e917a6-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.053432Z","description":"List and view available connections. Connections contain secrets that cannot be revealed.","display_name":"Connections Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"connections_read","restricted":false}},{"id":"f6e917a7-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.05659Z","description":"Create and delete connections.","display_name":"Connections Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"connections_write","restricted":false}},{"id":"7a89ec40-8b69-11ec-812d-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-11T18:36:08.531989Z","description":"Access all private incidents in Datadog, even when not added as a responder.","display_name":"Private Incidents Global Access","display_type":"read","group_name":"Case and Incident Management","name":"incidents_private_global_access","restricted":false}},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions","attributes":{"created":"2022-03-02T18:51:05.04095Z","description":"View notebooks.","display_name":"Notebooks Read","display_type":"read","group_name":"Notebooks","name":"notebooks_read","restricted":true}},{"id":"b6bf9ac7-9a59-11ec-8480-da7ad0900002","type":"permissions","attributes":{"created":"2022-03-02T18:51:05.044683Z","description":"Create and change notebooks.","display_name":"Notebooks Write","display_type":"write","group_name":"Notebooks","name":"notebooks_write","restricted":false}},{"id":"e35c06b0-966b-11ec-83c9-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-25T18:51:06.176019Z","description":"Delete data from your Logs, including entire indexes.","display_name":"Logs Delete Data","display_type":"write","group_name":"Log Management","name":"logs_delete_data","restricted":false}},{"id":"2108215e-b9b4-11ec-958e-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-11T16:26:24.106645Z","description":"Create custom metrics from RUM events.","display_name":"RUM Generate Metrics","display_type":"write","group_name":"Real User Monitoring","name":"rum_generate_metrics","restricted":false}},{"id":"7b1f5086-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.278829Z","description":"Add or remove but not edit AWS integration configurations.","display_name":"AWS Configurations Manage","display_type":"write","group_name":"Integrations","name":"aws_configurations_manage","restricted":false}},{"id":"7b1f5088-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.284056Z","description":"Add or remove but not edit Azure integration configurations.","display_name":"Azure Configurations Manage","display_type":"write","group_name":"Integrations","name":"azure_configurations_manage","restricted":false}},{"id":"7b1f5087-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.282282Z","description":"Add or remove but not edit GCP integration configurations.","display_name":"GCP Configurations Manage","display_type":"write","group_name":"Integrations","name":"gcp_configurations_manage","restricted":false}},{"id":"7b1f5089-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.285834Z","description":"Install, uninstall, and configure integrations.","display_name":"Integrations Manage","display_type":"write","group_name":"Integrations","name":"manage_integrations","restricted":false}},{"id":"1afff448-d5e9-11ec-ae37-da7ad0900002","type":"permissions","attributes":{"created":"2022-05-17T13:56:09.870985Z","description":"Receive notifications and view currently configured notification settings.","display_name":"Usage Notifications Read","display_type":"read","group_name":"Billing and Usage","name":"usage_notifications_read","restricted":false}},{"id":"1afff449-d5e9-11ec-ae37-da7ad0900002","type":"permissions","attributes":{"created":"2022-05-17T13:56:09.876124Z","description":"Receive notifications and configure notification settings.","display_name":"Usage Notifications Write","display_type":"write","group_name":"Billing and Usage","name":"usage_notifications_write","restricted":false}},{"id":"6c87d3da-e5c5-11ec-b1d6-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-06T18:21:03.378896Z","description":"Schedule PDF reports from a dashboard.","display_name":"Dashboards Report Write","display_type":"write","group_name":"Dashboards","name":"generate_dashboard_reports","restricted":false}},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-08T16:20:55.142591Z","description":"View SLOs and status corrections.","display_name":"SLOs Read","display_type":"read","group_name":"Service Level Objectives","name":"slos_read","restricted":true}},{"id":"f8e941d0-e746-11ec-b22d-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-08T16:20:55.143869Z","description":"Create, edit, and delete SLOs.","display_name":"SLOs Write","display_type":"write","group_name":"Service Level Objectives","name":"slos_write","restricted":false}},{"id":"f8e941ce-e746-11ec-b22d-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-08T16:20:55.13941Z","description":"Apply, edit, and delete SLO status corrections. A user with this permission can make status corrections, even if they do not have permission to edit those SLOs.","display_name":"SLOs Status Corrections","display_type":"write","group_name":"Service Level Objectives","name":"slos_corrections","restricted":false}},{"id":"4784b11c-f311-11ec-a5f5-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-23T16:26:48.150556Z","description":"Create, update, and delete monitor configuration policies.","display_name":"Monitor Configuration Policy Write","display_type":"write","group_name":"Monitors","name":"monitor_config_policy_write","restricted":false}},{"id":"ee68fba9-173a-11ed-b00b-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-08T16:55:39.377188Z","description":"Add, modify, and delete service catalog definitions when those definitions are maintained by Datadog.","display_name":"Service Catalog Write","display_type":"write","group_name":"APM","name":"apm_service_catalog_write","restricted":false}},{"id":"ee68fba8-173a-11ed-b00b-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-08T16:55:39.374377Z","description":"View service catalog and service definitions.","display_name":"Service Catalog Read","display_type":"read","group_name":"APM","name":"apm_service_catalog_read","restricted":false}},{"id":"5b2c3e28-1761-11ed-b018-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-08T21:30:42.723663Z","description":"Add and edit forwarding destinations and rules for logs.","display_name":"Logs Write Forwarding Rules","display_type":"write","group_name":"Log Management","name":"logs_write_forwarding_rules","restricted":false}},{"id":"6be119a6-1cd8-11ed-b185-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-15T20:25:36.677197Z","description":"Deprecated. Watchdog Insights endpoints are now OPEN.","display_name":"Watchdog Insights Read","display_type":"read","group_name":"Watchdog","name":"watchdog_insights_read","restricted":false}},{"id":"36e2a22e-248a-11ed-b405-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-25T15:25:56.32517Z","description":"Resolve connections.","display_name":"Connections Resolve","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"connections_resolve","restricted":false}},{"id":"4ee674f6-55d9-11ed-b10d-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.834253Z","description":"View blocked attackers.","display_name":"Application Security Management Protect Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_protect_read","restricted":false}},{"id":"4ee7e46c-55d9-11ed-b10e-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.843656Z","description":"Manage blocked attackers.","display_name":"Application Security Management Protect Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_protect_write","restricted":false}},{"id":"4ee5731c-55d9-11ed-b10b-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.827076Z","description":"View whether Application Security Management has been enabled or disabled on services via 1-click enablement with Remote Configuration.","display_name":"Application Security Management 1-click Enablement Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_activation_read","restricted":false}},{"id":"4ee60688-55d9-11ed-b10c-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.831383Z","description":"Enable or disable Application Security Management on services via 1-click enablement.","display_name":"Application Security Management 1-click Enablement Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_activation_write","restricted":false}},{"id":"99474cc2-5a12-11ed-b547-da7ad0900002","type":"permissions","attributes":{"created":"2022-11-01T18:25:44.584393Z","description":"View and run Apps in App Builder.","display_name":"Apps View","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_run","restricted":false}},{"id":"9948271e-5a12-11ed-b548-da7ad0900002","type":"permissions","attributes":{"created":"2022-11-01T18:25:44.590588Z","description":"Create, edit, and delete Apps in App Builder.","display_name":"Apps Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_write","restricted":false}},{"id":"8247acc4-7a4c-11ed-958f-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T18:40:54.018521Z","description":"View Cases.","display_name":"Cases Read","display_type":"read","group_name":"Case and Incident Management","name":"cases_read","restricted":false}},{"id":"824851a6-7a4c-11ed-9590-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T18:40:54.02328Z","description":"Create and update cases.","display_name":"Cases Write","display_type":"write","group_name":"Case and Incident Management","name":"cases_write","restricted":false}},{"id":"77d5f45e-7a5a-11ed-8abf-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T20:20:49.450768Z","description":"Edit APM Remote Configuration.","display_name":"APM Remote Configuration Write","display_type":"write","group_name":"APM","name":"apm_remote_configuration_write","restricted":false}},{"id":"77d55a44-7a5a-11ed-8abe-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T20:20:49.446298Z","description":"View APM Remote Configuration.","display_name":"APM Remote Configuration Read","display_type":"read","group_name":"APM","name":"apm_remote_configuration_read","restricted":false}},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.149406Z","description":"View CI Visibility.","display_name":"CI Visibility Read","display_type":"read","group_name":"Software Delivery","name":"ci_visibility_read","restricted":true}},{"id":"6c5c1090-7aff-11ed-a5cf-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.157428Z","description":"Edit flaky tests and delete Test Services.","display_name":"CI Visibility Tests Write","display_type":"write","group_name":"Software Delivery","name":"ci_visibility_write","restricted":false}},{"id":"6c59ae72-7aff-11ed-a5cc-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.141217Z","description":"Edit CI Provider settings. Manage GitHub accounts and repositories for enabling CI Visibility and job logs collection.","display_name":"CI Provider Settings Write","display_type":"write","group_name":"Software Delivery","name":"ci_provider_settings_write","restricted":false}},{"id":"6c5b7428-7aff-11ed-a5ce-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.153418Z","description":"Configure CI Visibility settings. Set a repository default branch, enable GitHub comments, and delete test services.","display_name":"CI Visibility Settings Write","display_type":"write","group_name":"Software Delivery","name":"ci_visibility_settings_write","restricted":false}},{"id":"6c5d0892-7aff-11ed-a5d0-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.163771Z","description":"Enable or disable Intelligent Test Runner.","display_name":"Intelligent Test Runner Activation Write","display_type":"write","group_name":"Software Delivery","name":"intelligent_test_runner_activation_write","restricted":false}},{"id":"6c5de654-7aff-11ed-a5d1-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.16943Z","description":"Edit Intelligent Test Runner settings, such as modifying ITR excluded branch list.","display_name":"Intelligent Test Runner Settings Write","display_type":"write","group_name":"Software Delivery","name":"intelligent_test_runner_settings_write","restricted":false}},{"id":"c13a2368-7d61-11ed-b5b7-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-16T16:50:32.545882Z","description":"View data in Continuous Profiler.","display_name":"Continuous Profiler Read","display_type":"read","group_name":"APM","name":"continuous_profiler_read","restricted":false}},{"id":"1d76ecfa-9771-11ed-9c2f-da7ad0900002","type":"permissions","attributes":{"created":"2023-01-18T20:45:59.977837Z","description":"Manage Teams. Create, delete, rename, and edit metadata of all Teams. To control Team membership across all Teams, use the User Access Manage permission.","display_name":"Teams Manage","display_type":"write","group_name":"Teams","name":"teams_manage","restricted":false}},{"id":"ca6bfb3a-b44f-11ed-adb2-da7ad0900002","type":"permissions","attributes":{"created":"2023-02-24T14:30:30.983679Z","description":"View a list of findings that include both misconfigurations and identity risks.","display_name":"Security Monitoring Findings Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_findings_read","restricted":false}},{"id":"4dc3eec6-b468-11ed-8539-da7ad0900002","type":"permissions","attributes":{"created":"2023-02-24T17:25:59.263037Z","description":"View Incidents Notification settings.","display_name":"Incident Notification Settings Read","display_type":"read","group_name":"Case and Incident Management","name":"incident_notification_settings_read","restricted":false}},{"id":"4dc4094c-b468-11ed-853a-da7ad0900002","type":"permissions","attributes":{"created":"2023-02-24T17:25:59.263037Z","description":"Configure Incidents Notification settings.","display_name":"Incident Notification Settings Write","display_type":"write","group_name":"Case and Incident Management","name":"incident_notification_settings_write","restricted":false}},{"id":"35dd33ea-ca2e-11ed-bca0-da7ad0900002","type":"permissions","attributes":{"created":"2023-03-24T10:25:33.934187Z","description":"Edit CI Ingestion Control exclusion filters.","display_name":"CI Visibility Ingestion Control Write","display_type":"write","group_name":"Software Delivery","name":"ci_ingestion_control_write","restricted":false}},{"id":"36bf3d0a-ccc0-11ed-9453-da7ad0900002","type":"permissions","attributes":{"created":"2023-03-27T16:55:44.263627Z","description":"Edit Error Tracking issues.","display_name":"Error Tracking Issue Write","display_type":"write","group_name":"Error Tracking","name":"error_tracking_write","restricted":false}},{"id":"f416f55e-db3f-11ed-8028-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-15T03:45:24.289668Z","description":"Manage Watchdog Alerts.","display_name":"Watchdog Alerts Write","display_type":"write","group_name":"Watchdog","name":"watchdog_alerts_write","restricted":false}},{"id":"f416b1ac-db3f-11ed-8027-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-15T03:45:24.289668Z","description":"Modify Saved Views across all Datadog products.","display_name":"Saved Views Write","display_type":"write","group_name":"Cross-Product Features","name":"saved_views_write","restricted":false}},{"id":"4e61a95e-de98-11ed-aa23-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-19T09:55:24.976379Z","description":"Read Client Tokens. Unlike API keys, client tokens may be exposed client-side in JavaScript code for web browsers and other clients to send data to Datadog.","display_name":"Client Tokens Read","display_type":"read","group_name":"API and Application Keys","name":"client_tokens_read","restricted":false}},{"id":"4e61ea18-de98-11ed-aa24-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-19T09:55:24.976379Z","description":"Create and edit Client Tokens. Unlike API keys, client tokens may be exposed client-side in JavaScript code for web browsers and other clients to send data to Datadog.","display_name":"Client Tokens Write","display_type":"write","group_name":"API and Application Keys","name":"client_tokens_write","restricted":false}},{"id":"a4316eb8-f438-11ed-8af2-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-16T22:26:02.839419Z","description":"Read Event Correlation Configuration data such as Correlation Rules and Settings.","display_name":"Event Correlation Config Read","display_type":"read","group_name":"Events","name":"event_correlation_config_read","restricted":false}},{"id":"a431bf12-f438-11ed-8af3-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-16T22:26:02.839419Z","description":"Manage Event Correlation Configuration such as Correlation Rules and Settings.","display_name":"Event Correlation Config Write","display_type":"write","group_name":"Events","name":"event_correlation_config_write","restricted":false}},{"id":"8352cf04-f6ac-11ed-9ec7-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-20T01:20:31.639587Z","description":"Manage general event configuration such as API Emails.","display_name":"Event Config Write","display_type":"write","group_name":"Events","name":"event_config_write","restricted":false}},{"id":"3a48350c-f9bc-11ed-b81c-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-23T22:50:34.532448Z","description":"Mute CSPM Findings.","display_name":"Security Monitoring Findings Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_findings_write","restricted":false}},{"id":"a773e3d8-fff2-11ed-965c-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-31T20:35:17.490437Z","description":"View Cloud Cost pages. This does not restrict access to the cloud cost data source in dashboards and notebooks.","display_name":"Cloud Cost Management Read","display_type":"read","group_name":"Cloud Cost Management","name":"cloud_cost_management_read","restricted":false}},{"id":"a77452c8-fff2-11ed-965d-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-31T20:35:17.490437Z","description":"Configure cloud cost accounts and global customizations.","display_name":"Cloud Cost Management Write","display_type":"write","group_name":"Cloud Cost Management","name":"cloud_cost_management_write","restricted":false}},{"id":"a51b375a-ff73-11ed-8c18-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-31T05:26:07.469293Z","description":"Add and change tags on hosts.","display_name":"Host Tags Write","display_type":"write","group_name":"Metrics","name":"host_tags_write","restricted":false}},{"id":"61f9891a-0070-11ee-9c3f-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-01T11:35:17.513706Z","description":"Create CI Visibility pipeline spans using the API.","display_name":"CI Visibility Pipelines Write","display_type":"write","group_name":"Software Delivery","name":"ci_visibility_pipelines_write","restricted":false}},{"id":"1377d9e4-0ec7-11ee-aebc-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-19T17:31:08.295856Z","description":"View Quality Gate Rules.","display_name":"Quality Gate Rules Read","display_type":"read","group_name":"Software Delivery","name":"quality_gate_rules_read","restricted":false}},{"id":"1377ff28-0ec7-11ee-aebd-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-19T17:31:08.295856Z","description":"Edit Quality Gate Rules.","display_name":"Quality Gate Rules Write","display_type":"write","group_name":"Software Delivery","name":"quality_gate_rules_write","restricted":false}},{"id":"cc8cd958-11eb-11ee-ade2-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-23T17:31:34.182629Z","description":"Edit metadata on metrics.","display_name":"Metrics Metadata Write","display_type":"write","group_name":"Metrics","name":"metrics_metadata_write","restricted":false}},{"id":"b1adb6e8-0949-11ee-b2c5-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-12T17:51:01.32545Z","description":"Delete data from RUM.","display_name":"RUM Delete Data","display_type":"write","group_name":"Real User Monitoring","name":"rum_delete_data","restricted":false}},{"id":"b1ad77e6-0949-11ee-b2c3-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-12T17:51:01.32545Z","description":"Update status or assignee of vulnerabilities.","display_name":"Vulnerability Management Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_vm_write","restricted":false}},{"id":"b1adb5da-0949-11ee-b2c4-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-12T17:51:01.32545Z","description":"Create or modify Reference Tables.","display_name":"Reference Tables Write","display_type":"write","group_name":"Reference Tables","name":"reference_tables_write","restricted":false}},{"id":"0efeff18-1cec-11ee-992d-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-07T17:31:08.450865Z","description":"Create, update, and delete RUM playlists. Add and remove sessions from RUM playlists.","display_name":"RUM Playlist Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_playlist_write","restricted":false}},{"id":"6c5ce898-21a4-11ee-99ef-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-13T17:40:57.140947Z","description":"Delete pipelines from your organization.","display_name":"Observability Pipelines Delete","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_delete","restricted":false}},{"id":"6c5ce992-21a4-11ee-99f0-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-13T17:40:57.140947Z","description":"Deploy pipelines in your organization.","display_name":"Observability Pipelines Deploy","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_deploy","restricted":false}},{"id":"785177a6-20da-11ee-bed7-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-12T17:35:18.858294Z","description":"Create custom metrics from processes.","display_name":"Processes Generate Metrics","display_type":"write","group_name":"Processes","name":"processes_generate_metrics","restricted":false}},{"id":"7850e390-20da-11ee-bed6-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-12T17:35:18.858294Z","description":"Delete API Keys for your organization.","display_name":"API Keys Delete","display_type":"write","group_name":"API and Application Keys","name":"api_keys_delete","restricted":false}},{"id":"6c5c79b2-21a4-11ee-99ee-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-13T17:40:57.140947Z","description":"Collect an Agent flare with Fleet Automation.","display_name":"Agent Flare Collection","display_type":"write","group_name":"Fleet Automation","name":"agent_flare_collection","restricted":false}},{"id":"807a82d8-2724-11ee-84ec-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-20T17:40:22.283891Z","description":"Control which organizations can query your organization''s data.","display_name":"Org Connections Write","display_type":"write","group_name":"Access Management","name":"org_connections_write","restricted":false}},{"id":"8079f2e6-2724-11ee-84eb-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-20T17:40:22.283891Z","description":"View which organizations can query data from your organization. Query data from other organizations.","display_name":"Org Connections Read","display_type":"read","group_name":"Access Management","name":"org_connections_read","restricted":false}},{"id":"1b8f54cc-2ca4-11ee-9e72-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-27T17:36:24.369352Z","description":"Manage facets for products other than Log Management, such as APM Traces. To modify Log Facets, use Logs Write Facets.","display_name":"Facets Write","display_type":"write","group_name":"Cross-Product Features","name":"facets_write","restricted":false}},{"id":"de0e73c2-3d23-11ee-aa7d-da7ad0900002","type":"permissions","attributes":{"created":"2023-08-17T17:31:15.369551Z","description":"Read Rule Suppressions.","display_name":"Security Suppressions Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_suppressions_read","restricted":false}},{"id":"de0eb666-3d23-11ee-aa7e-da7ad0900002","type":"permissions","attributes":{"created":"2023-08-17T17:31:15.369551Z","description":"Write Rule Suppressions.","display_name":"Security Suppressions Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_suppressions_write","restricted":false}},{"id":"5356dfd2-3dee-11ee-b07b-da7ad0900002","type":"permissions","attributes":{"created":"2023-08-18T17:40:30.474557Z","description":"Edit Static Analysis settings.","display_name":"Static Analysis Settings Write","display_type":"write","group_name":"Software Delivery","name":"static_analysis_settings_write","restricted":false}},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions","attributes":{"created":"2023-09-09T00:06:00.708335Z","description":"View CD Visibility.","display_name":"CD Visibility Read","display_type":"read","group_name":"Software Delivery","name":"cd_visibility_read","restricted":true}},{"id":"263eff86-6925-11ee-acc0-da7ad0900002","type":"permissions","attributes":{"created":"2023-10-12T17:31:17.142666Z","description":"Write NDM Netflow port mappings.","display_name":"NDM Netflow Port Mappings Write","display_type":"write","group_name":"Network Device Monitoring","name":"ndm_netflow_port_mappings_write","restricted":false}},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions","attributes":{"created":"2023-10-13T17:31:17.311029Z","description":"View infrastructure, application code and library vulnerabilities. This does not restrict access to the vulnerability data source through the API or inventory SQL.","display_name":"Vulnerability Management Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_vm_read","restricted":true}},{"id":"7c7836fc-6f6e-11ee-8cdd-da7ad0900002","type":"permissions","attributes":{"created":"2023-10-20T17:31:22.039614Z","description":"Create or modify Dynamic Instrumentation probes that capture function state: local variables, method arguments, fields, and return value or thrown exception.","display_name":"Dynamic Instrumentation Capture Variables","display_type":"write","group_name":"APM","name":"debugger_capture_variables","restricted":false}},{"id":"10098bc8-984b-11ee-9b69-da7ad0900002","type":"permissions","attributes":{"created":"2023-12-11T17:31:05.405902Z","description":"Disable Error Tracking, edit inclusion filters, and edit rate limit.","display_name":"Error Tracking Settings Write","display_type":"write","group_name":"Error Tracking","name":"error_tracking_settings_write","restricted":false}},{"id":"10091e90-984b-11ee-9b68-da7ad0900002","type":"permissions","attributes":{"created":"2023-12-11T17:31:05.405902Z","description":"Add or change Error Tracking exclusion filters.","display_name":"Error Tracking Exclusion Filters Write","display_type":"write","group_name":"Error Tracking","name":"error_tracking_exclusion_filters_write","restricted":false}},{"id":"1b572396-ba15-11ee-9e19-da7ad0900002","type":"permissions","attributes":{"created":"2024-01-23T17:30:31.083178Z","description":"View integrations and their configurations.","display_name":"Integrations Read","display_type":"read","group_name":"Integrations","name":"integrations_read","restricted":false}},{"id":"bdda759a-c1f0-11ee-b428-da7ad0900002","type":"permissions","attributes":{"created":"2024-02-02T17:30:21.655244Z","description":"Add, modify, and delete API catalog definitions.","display_name":"API Catalog Write","display_type":"write","group_name":"APM","name":"apm_api_catalog_write","restricted":false}},{"id":"bdda0cea-c1f0-11ee-b427-da7ad0900002","type":"permissions","attributes":{"created":"2024-02-02T17:30:21.655244Z","description":"View API catalog and API definitions.","display_name":"API Catalog Read","display_type":"read","group_name":"APM","name":"apm_api_catalog_read","restricted":false}},{"id":"27b95c32-ccf1-11ee-ae65-da7ad0900002","type":"permissions","attributes":{"created":"2024-02-16T17:31:02.07009Z","description":"Create or edit trend metrics from container images.","display_name":"Containers Write Image Trend Metrics","display_type":"write","group_name":"Containers","name":"containers_generate_image_metrics","restricted":false}},{"id":"a82d01ce-e228-11ee-870e-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-14T17:31:14.314721Z","description":"Extend the retention of Session Replays.","display_name":"RUM Session Replay Extend Retention","display_type":"write","group_name":"Real User Monitoring","name":"rum_extend_retention","restricted":false}},{"id":"50c173fc-e54d-11ee-bb23-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-18T17:31:12.515412Z","description":"View and search Private Action Runners for Workflow Automation and App Builder.","display_name":"Private Action Runner Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"on_prem_runner_read","restricted":false}},{"id":"50c1dd10-e54d-11ee-bb24-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-18T17:31:12.515412Z","description":"Attach a Private Action Runner to a connection.","display_name":"Private Action Runner Use","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"on_prem_runner_use","restricted":false}},{"id":"50c1e0b2-e54d-11ee-bb25-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-18T17:31:12.515412Z","description":"Create and edit Private Action Runners for Workflow Automation and App Builder.","display_name":"Private Action Runner Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"on_prem_runner_write","restricted":false}},{"id":"ca06b2b4-f5cd-11ee-9e77-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-08T17:31:10.159381Z","description":"Edit the settings for DORA.","display_name":"DORA Settings Write","display_type":"write","group_name":"Software Delivery","name":"dora_settings_write","restricted":false}},{"id":"ce892b8a-00ce-11ef-8fca-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-22T17:36:10.012624Z","description":"Upgrade Datadog Agents with Fleet Automation.","display_name":"Agent Upgrade","display_type":"write","group_name":"Fleet Automation","name":"agent_upgrade_write","restricted":false}},{"id":"f5f475d4-0197-11ef-be1f-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).","display_name":"Read Continuous Profiler Profile-Guided Optimization (PGO) Data","display_type":"read","group_name":"APM","name":"continuous_profiler_pgo_read","restricted":false}},{"id":"f5f4d31c-0197-11ef-be20-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"Add or remove but not edit Oracle Cloud integration configurations.","display_name":"OCI Configurations Manage","display_type":"write","group_name":"Integrations","name":"oci_configurations_manage","restricted":false}},{"id":"f5f4e8fc-0197-11ef-be21-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit AWS integration configurations.","display_name":"AWS Configuration Read","display_type":"read","group_name":"Integrations","name":"aws_configuration_read","restricted":false}},{"id":"f5f4e9a6-0197-11ef-be22-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit Azure integration configurations.","display_name":"Azure Configuration Read","display_type":"read","group_name":"Integrations","name":"azure_configuration_read","restricted":false}},{"id":"f5f4ec44-0197-11ef-be23-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit GCP integration configurations.","display_name":"GCP Configuration Read","display_type":"read","group_name":"Integrations","name":"gcp_configuration_read","restricted":false}},{"id":"f5f4f068-0197-11ef-be24-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit Oracle Cloud integration configurations.","display_name":"OCI Configuration Read","display_type":"read","group_name":"Integrations","name":"oci_configuration_read","restricted":false}},{"id":"e2310daa-08a9-11ef-8653-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove AWS integration configurations.","display_name":"AWS Configuration Edit","display_type":"write","group_name":"Integrations","name":"aws_configuration_edit","restricted":false}},{"id":"e23194fa-08a9-11ef-8654-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove Azure integration configurations.","display_name":"Azure Configuration Edit","display_type":"write","group_name":"Integrations","name":"azure_configuration_edit","restricted":false}},{"id":"e2319608-08a9-11ef-8655-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove GCP integration configurations.","display_name":"GCP Configuration Edit","display_type":"write","group_name":"Integrations","name":"gcp_configuration_edit","restricted":false}},{"id":"e231ca6a-08a9-11ef-8656-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove Oracle Cloud integration configurations.","display_name":"OCI Configuration Edit","display_type":"write","group_name":"Integrations","name":"oci_configuration_edit","restricted":false}},{"id":"8c3a9cde-0973-11ef-a2be-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-03T17:35:35.030875Z","description":"View LLM Observability.","display_name":"LLM Observability Read","display_type":"read","group_name":"LLM Observability","name":"llm_observability_read","restricted":false}},{"id":"cb5a53dc-13aa-11ef-9749-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-16T17:36:14.883078Z","description":"Manage your organization''s flex logs configuration.","display_name":"Flex Logs Configuration Write","display_type":"write","group_name":"Log Management","name":"flex_logs_config_write","restricted":false}},{"id":"3cf14194-2298-11ef-9d71-da7ad0900002","type":"permissions","attributes":{"created":"2024-06-04T17:31:12.458506Z","description":"View Reference Tables.","display_name":"Reference Tables Read","display_type":"read","group_name":"Reference Tables","name":"reference_tables_read","restricted":false}},{"id":"2757c192-389a-11ef-b37c-da7ad0900002","type":"permissions","attributes":{"created":"2024-07-02T17:40:20.794842Z","description":"Create Fleet Automation Policies.","display_name":"Fleet Policies Write","display_type":"write","group_name":"Fleet Automation","name":"fleet_policies_write","restricted":false}},{"id":"27583ae6-389a-11ef-b37d-da7ad0900002","type":"permissions","attributes":{"created":"2024-07-02T17:40:20.794842Z","description":"Enable, disable and update custom resource indexing.","display_name":"Custom Resource Definition Write","display_type":"write","group_name":"Orchestration","name":"orchestration_custom_resource_definitions_write","restricted":false}},{"id":"ce67705a-5419-11ef-8c73-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-06T17:32:08.55681Z","description":"View Code Analysis.","display_name":"Code Analysis Read","display_type":"read","group_name":"Software Delivery","name":"code_analysis_read","restricted":false}},{"id":"ce67efb2-5419-11ef-8c74-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-06T17:32:08.55681Z","description":"Enable, disable, and configure workload autoscaling. Apply workload scaling recommendations.","display_name":"Workload Scaling Write","display_type":"write","group_name":"Orchestration","name":"orchestration_workload_scaling_write","restricted":false}},{"id":"ad8b4c4a-5990-11ef-b34b-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-13T16:25:39.351685Z","description":"Create, Update, and Delete LLM Observability resources including User Defined Evaluations, OOTB Evaluations, and User Defined Topics.","display_name":"LLM Observability Write","display_type":"write","group_name":"LLM Observability","name":"llm_observability_write","restricted":false}},{"id":"5377e20c-6563-11ef-bd11-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-28T17:31:14.83001Z","description":"View captured events of pipelines in your organization.","display_name":"Observability Pipelines Live Capture Read","display_type":"read","group_name":"Observability Pipelines","name":"observability_pipelines_capture_read","restricted":false}},{"id":"53784710-6563-11ef-bd12-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-28T17:31:14.83001Z","description":"Capture live events of pipelines in your organization.","display_name":"Observability Pipelines Live Capture Write","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_capture_write","restricted":false}},{"id":"bf446b0a-60ad-11ef-83c4-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-22T17:41:22.628257Z","description":"Allows read access to the data within the Actions Datastore.","display_name":"Actions Datastore Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"apps_datastore_read","restricted":false}},{"id":"bf446e2a-60ad-11ef-83c5-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-22T17:41:22.628257Z","description":"Allows modification of data within the Actions Datastore, including adding, editing, and deleting records.","display_name":"Actions Datastore Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_datastore_write","restricted":false}},{"id":"bf4407e6-60ad-11ef-83c3-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-22T17:41:22.628257Z","description":"Allows management of the Actions Datastore, including creating, updating, and deleting the datastore itself.","display_name":"Actions Datastore Manage","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_datastore_manage","restricted":false}},{"id":"5dffba8a-66f6-11ef-8976-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-30T17:36:19.679492Z","description":"View Security Pipelines.","display_name":"Security Pipelines Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_pipelines_read","restricted":false}},{"id":"5e0024fc-66f6-11ef-8977-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-30T17:36:19.679492Z","description":"Create, edit, and delete Security Pipelines.","display_name":"Security Pipelines Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_pipelines_write","restricted":false}},{"id":"503d01ea-751b-11ef-85ac-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-17T17:36:04.251012Z","description":"Create, delete and update connection groups.","display_name":"Connection Groups Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"connection_groups_write","restricted":false}},{"id":"479d4934-79e2-11ef-98d5-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-23T19:30:24.281417Z","description":"Allow quality gates evaluations.","display_name":"Quality Gates Evaluations","display_type":"read","group_name":"Software Delivery","name":"quality_gates_evaluations_read","restricted":false}},{"id":"bdc2acbe-7c1f-11ef-b362-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-26T15:55:24.124953Z","description":"Read and use connection groups.","display_name":"Connection Groups Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"connection_groups_read","restricted":false}},{"id":"824e509c-7c5c-11ef-ba38-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-26T23:10:23.67733Z","description":"Managing actions on Cloud Workload Security Agent Rules.","display_name":"Cloud Workload Security Agent Actions","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_cws_agent_rules_actions","restricted":false}},{"id":"a91ee0ba-8184-11ef-ac5a-da7ad0900002","type":"permissions","attributes":{"created":"2024-10-03T12:40:24.480611Z","description":"View RUM Retention filters data.","display_name":"RUM Retention Filters Read","display_type":"read","group_name":"Real User Monitoring","name":"rum_retention_filters_read","restricted":false}},{"id":"a91f5112-8184-11ef-ac5b-da7ad0900002","type":"permissions","attributes":{"created":"2024-10-03T12:40:24.480611Z","description":"Write RUM Retention filters.","display_name":"RUM Retention Filters Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_retention_filters_write","restricted":false}},{"id":"bc3f9ed4-8a3d-11ef-b5a4-da7ad0900002","type":"permissions","attributes":{"created":"2024-10-14T15:05:22.769126Z","description":"View and use DDSQL Editor.","display_name":"DDSQL Editor Read","display_type":"read","group_name":"DDSQL Editor","name":"ddsql_editor_read","restricted":false}},{"id":"a8c986a6-989a-11ef-873e-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-01T21:45:49.593207Z","description":"View the disaster recovery status.","display_name":"Datadog Disaster Recovery Read","display_type":"read","group_name":"Disaster Recovery","name":"disaster_recovery_status_read","restricted":false}},{"id":"a8ca1fda-989a-11ef-873f-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-01T21:45:49.593207Z","description":"Update the disaster recovery status.","display_name":"Datadog Disaster Recovery Write","display_type":"write","group_name":"Disaster Recovery","name":"disaster_recovery_status_write","restricted":false}},{"id":"ebae5be2-9d16-11ef-9394-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-07T14:45:24.068066Z","description":"Write RUM Settings.","display_name":"RUM Settings Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_settings_write","restricted":false}},{"id":"ebaf0448-9d16-11ef-9397-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-07T14:45:24.068066Z","description":"View Test Optimization.","display_name":"Test Optimization Read","display_type":"read","group_name":"Software Delivery","name":"test_optimization_read","restricted":false}},{"id":"ebaf05ba-9d16-11ef-9398-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-07T14:45:24.068066Z","description":"Manage flaky tests for Test Optimization.","display_name":"Test Optimization Write","display_type":"write","group_name":"Software Delivery","name":"test_optimization_write","restricted":false}},{"id":"09e34b76-a6b4-11ef-8ab9-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-19T20:22:46.198145Z","description":"Create, delete and update Test Optimization settings.","display_name":"Test Optimization Settings Write","display_type":"write","group_name":"Software Delivery","name":"test_optimization_settings_write","restricted":false}},{"id":"8babfb74-a90e-11ef-b4c3-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-22T20:15:40.970745Z","description":"Write comments into vulnerabilities.","display_name":"Security Comments Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_comments_write","restricted":false}},{"id":"8baca0ba-a90e-11ef-b4c4-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-22T20:15:40.970745Z","description":"Read comments of vulnerabilities.","display_name":"Security Comments Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_comments_read","restricted":false}},{"id":"6595b70a-b7fe-11ef-977d-da7ad0900002","type":"permissions","attributes":{"created":"2024-12-11T20:27:52.565232Z","description":"View Logs Workspaces.","display_name":"Read Logs Workspaces","display_type":"read","group_name":"Log Management","name":"logs_read_workspaces","restricted":false}},{"id":"6596753c-b7fe-11ef-977e-da7ad0900002","type":"permissions","attributes":{"created":"2024-12-11T20:27:52.565232Z","description":"Create, update, and delete Logs Workspaces.","display_name":"Write Logs Workspaces","display_type":"write","group_name":"Log Management","name":"logs_write_workspaces","restricted":false}},{"id":"bccba216-cd37-11ef-b636-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-07T20:41:14.612376Z","description":"View Audience Management data.","display_name":"Profiles Read","display_type":"read","group_name":"Product Analytics","name":"audience_management_read","restricted":false}},{"id":"bccc2ee8-cd37-11ef-b637-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-07T20:41:14.612376Z","description":"Modify Audience Management data.","display_name":"Profiles Write","display_type":"write","group_name":"Product Analytics","name":"audience_management_write","restricted":false}},{"id":"8da487f0-d2af-11ef-91c8-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-14T19:41:30.924708Z","description":"Read logs configuration.","display_name":"Logs Configuration Read","display_type":"read","group_name":"Log Management","name":"logs_read_config","restricted":false}},{"id":"1c23f168-da90-11ef-910a-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-24T20:16:35.403038Z","description":"View On-Call teams, schedules, escalation policies and overrides.","display_name":"On-Call Read","display_type":"read","group_name":"On-Call","name":"on_call_read","restricted":false}},{"id":"1c248fc4-da90-11ef-910b-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-24T20:16:35.403038Z","description":"Create, update, and delete On-Call teams, schedules and escalation policies.","display_name":"On-Call Write","display_type":"write","group_name":"On-Call","name":"on_call_write","restricted":false}},{"id":"1c24b292-da90-11ef-910c-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-24T20:16:35.403038Z","description":"Page On-Call teams and users.","display_name":"On-Call Page","display_type":"write","group_name":"On-Call","name":"on_call_page","restricted":false}},{"id":"c6d3a3e0-df47-11ef-abf4-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-30T20:21:24.316595Z","description":"View Error Tracking data.","display_name":"Error Tracking Read","display_type":"read","group_name":"Error Tracking","name":"error_tracking_read","restricted":false}},{"id":"66c075bc-e296-11ef-bba7-da7ad0900002","type":"permissions","attributes":{"created":"2025-02-04T01:21:46.862659Z","description":"Acknowledge, resolve pages and edit overrides. Allow users to configure their On-Call profile.","display_name":"On-Call Responder","display_type":"write","group_name":"On-Call","name":"on_call_respond","restricted":false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: 200 OK + code: 200 + duration: 124.969542ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -225,14 +259,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"r58-zg7-k95","layout_type":"ordered","notify_list":[],"restricted_roles":["f304345e-f421-11ef-88ef-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"nwk-6mn-7m8","layout_type":"ordered","notify_list":[],"restricted_roles":["b023a646-f427-11ef-88f8-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740563669","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: - application/json Content-Type: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/r58-zg7-k95 + url: https://api.datadoghq.com/api/v1/dashboard/nwk-6mn-7m8 method: PUT response: proto: HTTP/1.1 @@ -244,14 +278,14 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"r58-zg7-k95","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/r58-zg7-k95/tf-testaccdatadogdashboardrbacadmintorbac-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2868530779491673}],"notify_list":[],"created_at":"2025-02-26T09:13:26.271291+00:00","modified_at":"2025-02-26T09:13:32.855329+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["f304345e-f421-11ef-88ef-da7ad0900002"]} + {"id":"nwk-6mn-7m8","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740563669","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/nwk-6mn-7m8/tf-testaccdatadogdashboardrbacadmintorbac-local-1740563669","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7336284487935531}],"notify_list":[],"created_at":"2025-02-26T09:54:32.566852+00:00","modified_at":"2025-02-26T09:54:37.759186+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["b023a646-f427-11ef-88f8-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 438.092417ms - - id: 7 + duration: 406.591334ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -267,7 +301,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/r58-zg7-k95 + url: https://api.datadoghq.com/api/v1/dashboard/nwk-6mn-7m8 method: GET response: proto: HTTP/1.1 @@ -279,14 +313,14 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"r58-zg7-k95","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/r58-zg7-k95/tf-testaccdatadogdashboardrbacadmintorbac-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2868530779491673}],"notify_list":[],"created_at":"2025-02-26T09:13:26.271291+00:00","modified_at":"2025-02-26T09:13:32.855329+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["f304345e-f421-11ef-88ef-da7ad0900002"]} + {"id":"nwk-6mn-7m8","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740563669","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/nwk-6mn-7m8/tf-testaccdatadogdashboardrbacadmintorbac-local-1740563669","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7336284487935531}],"notify_list":[],"created_at":"2025-02-26T09:54:32.566852+00:00","modified_at":"2025-02-26T09:54:37.759186+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["b023a646-f427-11ef-88f8-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 171.722209ms - - id: 8 + duration: 161.694583ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -302,7 +336,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/f304345e-f421-11ef-88ef-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/b023a646-f427-11ef-88f8-da7ad0900002 method: GET response: proto: HTTP/1.1 @@ -312,14 +346,14 @@ interactions: trailer: {} content_length: 1066 uncompressed: false - body: '{"data":{"id":"f304345e-f421-11ef-88ef-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:31.988168Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:13:31.999857Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"b023a646-f427-11ef-88f8-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:54:36.779138Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:54:36.780043Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740563669","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 124.891208ms - - id: 9 + duration: 131.66175ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -335,7 +369,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/r58-zg7-k95 + url: https://api.datadoghq.com/api/v1/dashboard/nwk-6mn-7m8 method: GET response: proto: HTTP/1.1 @@ -347,14 +381,14 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"r58-zg7-k95","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/r58-zg7-k95/tf-testaccdatadogdashboardrbacadmintorbac-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2868530779491673}],"notify_list":[],"created_at":"2025-02-26T09:13:26.271291+00:00","modified_at":"2025-02-26T09:13:32.855329+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["f304345e-f421-11ef-88ef-da7ad0900002"]} + {"id":"nwk-6mn-7m8","title":"tf-TestAccDatadogDashboardRbac_adminToRbac-local-1740563669","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/nwk-6mn-7m8/tf-testaccdatadogdashboardrbacadmintorbac-local-1740563669","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7336284487935531}],"notify_list":[],"created_at":"2025-02-26T09:54:32.566852+00:00","modified_at":"2025-02-26T09:54:37.759186+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["b023a646-f427-11ef-88f8-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 164.33375ms - - id: 10 + duration: 178.885875ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -370,7 +404,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/r58-zg7-k95 + url: https://api.datadoghq.com/api/v1/dashboard/nwk-6mn-7m8 method: DELETE response: proto: HTTP/1.1 @@ -382,14 +416,14 @@ interactions: content_length: -1 uncompressed: true body: | - {"deleted_dashboard_id":"r58-zg7-k95"} + {"deleted_dashboard_id":"nwk-6mn-7m8"} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 198.076667ms - - id: 11 + duration: 237.802458ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -405,7 +439,7 @@ interactions: headers: Accept: - '*/*' - url: https://api.datadoghq.com/api/v2/roles/f304345e-f421-11ef-88ef-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/b023a646-f427-11ef-88f8-da7ad0900002 method: DELETE response: proto: HTTP/1.1 @@ -419,4 +453,4 @@ interactions: headers: {} status: 204 No Content code: 204 - duration: 137.821375ms + duration: 139.3615ms diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.freeze b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.freeze index 9aeae1ef8..c40a23c3a 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.freeze +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.freeze @@ -1 +1 @@ -2025-02-26T10:13:22.34321+01:00 \ No newline at end of file +2025-02-26T10:54:52.103327+01:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.yaml b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.yaml index b14ab93c8..432836ea4 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.yaml +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createAdmin.yaml @@ -13,7 +13,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740563692","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: @@ -32,13 +32,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"ht5-kfc-yj9","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/ht5-kfc-yj9/tf-testaccdatadogdashboardrbaccreateadmin-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2355945497268537}],"notify_list":[],"created_at":"2025-02-26T09:13:26.089906+00:00","modified_at":"2025-02-26T09:13:26.089906+00:00","template_variable_presets":[],"tags":[]} + {"id":"hc4-sji-z9f","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740563692","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/hc4-sji-z9f/tf-testaccdatadogdashboardrbaccreateadmin-local-1740563692","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":1124699396934005}],"notify_list":[],"created_at":"2025-02-26T09:54:54.975769+00:00","modified_at":"2025-02-26T09:54:54.975769+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 599.465875ms + duration: 682.707625ms - id: 1 request: proto: HTTP/1.1 @@ -55,7 +55,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/ht5-kfc-yj9 + url: https://api.datadoghq.com/api/v1/dashboard/hc4-sji-z9f method: GET response: proto: HTTP/1.1 @@ -67,13 +67,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"ht5-kfc-yj9","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/ht5-kfc-yj9/tf-testaccdatadogdashboardrbaccreateadmin-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2355945497268537}],"notify_list":[],"created_at":"2025-02-26T09:13:26.089906+00:00","modified_at":"2025-02-26T09:13:26.089906+00:00","template_variable_presets":[],"tags":[]} + {"id":"hc4-sji-z9f","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740563692","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/hc4-sji-z9f/tf-testaccdatadogdashboardrbaccreateadmin-local-1740563692","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":1124699396934005}],"notify_list":[],"created_at":"2025-02-26T09:54:54.975769+00:00","modified_at":"2025-02-26T09:54:54.975769+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 189.197667ms + duration: 156.982875ms - id: 2 request: proto: HTTP/1.1 @@ -90,7 +90,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/ht5-kfc-yj9 + url: https://api.datadoghq.com/api/v1/dashboard/hc4-sji-z9f method: GET response: proto: HTTP/1.1 @@ -102,13 +102,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"ht5-kfc-yj9","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/ht5-kfc-yj9/tf-testaccdatadogdashboardrbaccreateadmin-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2355945497268537}],"notify_list":[],"created_at":"2025-02-26T09:13:26.089906+00:00","modified_at":"2025-02-26T09:13:26.089906+00:00","template_variable_presets":[],"tags":[]} + {"id":"hc4-sji-z9f","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740563692","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/hc4-sji-z9f/tf-testaccdatadogdashboardrbaccreateadmin-local-1740563692","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":1124699396934005}],"notify_list":[],"created_at":"2025-02-26T09:54:54.975769+00:00","modified_at":"2025-02-26T09:54:54.975769+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 176.132208ms + duration: 172.397541ms - id: 3 request: proto: HTTP/1.1 @@ -125,7 +125,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/ht5-kfc-yj9 + url: https://api.datadoghq.com/api/v1/dashboard/hc4-sji-z9f method: GET response: proto: HTTP/1.1 @@ -137,13 +137,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"ht5-kfc-yj9","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/ht5-kfc-yj9/tf-testaccdatadogdashboardrbaccreateadmin-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2355945497268537}],"notify_list":[],"created_at":"2025-02-26T09:13:26.089906+00:00","modified_at":"2025-02-26T09:13:26.089906+00:00","template_variable_presets":[],"tags":[]} + {"id":"hc4-sji-z9f","title":"tf-TestAccDatadogDashboardRbac_createAdmin-local-1740563692","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/hc4-sji-z9f/tf-testaccdatadogdashboardrbaccreateadmin-local-1740563692","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":1124699396934005}],"notify_list":[],"created_at":"2025-02-26T09:54:54.975769+00:00","modified_at":"2025-02-26T09:54:54.975769+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 319.754333ms + duration: 153.387667ms - id: 4 request: proto: HTTP/1.1 @@ -160,7 +160,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/ht5-kfc-yj9 + url: https://api.datadoghq.com/api/v1/dashboard/hc4-sji-z9f method: DELETE response: proto: HTTP/1.1 @@ -172,10 +172,10 @@ interactions: content_length: -1 uncompressed: true body: | - {"deleted_dashboard_id":"ht5-kfc-yj9"} + {"deleted_dashboard_id":"hc4-sji-z9f"} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 344.941792ms + duration: 214.088125ms diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.freeze b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.freeze index 313acebac..370a068ef 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.freeze +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.freeze @@ -1 +1 @@ -2025-02-26T10:13:22.349142+01:00 \ No newline at end of file +2025-02-26T10:55:09.667529+01:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.yaml b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.yaml index c91ca7487..661ab1083 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.yaml +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createOpen.yaml @@ -13,7 +13,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740563709","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: @@ -32,13 +32,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"q4g-dg6-g8p","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/q4g-dg6-g8p/tf-testaccdatadogdashboardrbaccreateopen-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":3337191839951989}],"notify_list":[],"created_at":"2025-02-26T09:13:26.344262+00:00","modified_at":"2025-02-26T09:13:26.344262+00:00","template_variable_presets":[],"tags":[]} + {"id":"e6t-3ad-3y8","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740563709","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/e6t-3ad-3y8/tf-testaccdatadogdashboardrbaccreateopen-local-1740563709","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7342337628128255}],"notify_list":[],"created_at":"2025-02-26T09:55:12.415941+00:00","modified_at":"2025-02-26T09:55:12.415941+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 536.285708ms + duration: 605.668583ms - id: 1 request: proto: HTTP/1.1 @@ -55,7 +55,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/q4g-dg6-g8p + url: https://api.datadoghq.com/api/v1/dashboard/e6t-3ad-3y8 method: GET response: proto: HTTP/1.1 @@ -67,13 +67,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"q4g-dg6-g8p","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/q4g-dg6-g8p/tf-testaccdatadogdashboardrbaccreateopen-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":3337191839951989}],"notify_list":[],"created_at":"2025-02-26T09:13:26.344262+00:00","modified_at":"2025-02-26T09:13:26.344262+00:00","template_variable_presets":[],"tags":[]} + {"id":"e6t-3ad-3y8","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740563709","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/e6t-3ad-3y8/tf-testaccdatadogdashboardrbaccreateopen-local-1740563709","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7342337628128255}],"notify_list":[],"created_at":"2025-02-26T09:55:12.415941+00:00","modified_at":"2025-02-26T09:55:12.415941+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 176.95775ms + duration: 167.973291ms - id: 2 request: proto: HTTP/1.1 @@ -90,7 +90,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/q4g-dg6-g8p + url: https://api.datadoghq.com/api/v1/dashboard/e6t-3ad-3y8 method: GET response: proto: HTTP/1.1 @@ -102,13 +102,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"q4g-dg6-g8p","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/q4g-dg6-g8p/tf-testaccdatadogdashboardrbaccreateopen-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":3337191839951989}],"notify_list":[],"created_at":"2025-02-26T09:13:26.344262+00:00","modified_at":"2025-02-26T09:13:26.344262+00:00","template_variable_presets":[],"tags":[]} + {"id":"e6t-3ad-3y8","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740563709","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/e6t-3ad-3y8/tf-testaccdatadogdashboardrbaccreateopen-local-1740563709","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7342337628128255}],"notify_list":[],"created_at":"2025-02-26T09:55:12.415941+00:00","modified_at":"2025-02-26T09:55:12.415941+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 176.372625ms + duration: 163.567625ms - id: 3 request: proto: HTTP/1.1 @@ -125,7 +125,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/q4g-dg6-g8p + url: https://api.datadoghq.com/api/v1/dashboard/e6t-3ad-3y8 method: GET response: proto: HTTP/1.1 @@ -137,13 +137,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"q4g-dg6-g8p","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/q4g-dg6-g8p/tf-testaccdatadogdashboardrbaccreateopen-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":3337191839951989}],"notify_list":[],"created_at":"2025-02-26T09:13:26.344262+00:00","modified_at":"2025-02-26T09:13:26.344262+00:00","template_variable_presets":[],"tags":[]} + {"id":"e6t-3ad-3y8","title":"tf-TestAccDatadogDashboardRbac_createOpen-local-1740563709","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/e6t-3ad-3y8/tf-testaccdatadogdashboardrbaccreateopen-local-1740563709","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7342337628128255}],"notify_list":[],"created_at":"2025-02-26T09:55:12.415941+00:00","modified_at":"2025-02-26T09:55:12.415941+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 342.503709ms + duration: 178.695417ms - id: 4 request: proto: HTTP/1.1 @@ -160,7 +160,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/q4g-dg6-g8p + url: https://api.datadoghq.com/api/v1/dashboard/e6t-3ad-3y8 method: DELETE response: proto: HTTP/1.1 @@ -172,10 +172,10 @@ interactions: content_length: -1 uncompressed: true body: | - {"deleted_dashboard_id":"q4g-dg6-g8p"} + {"deleted_dashboard_id":"e6t-3ad-3y8"} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 319.163667ms + duration: 217.549542ms diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.freeze b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.freeze index 8c25750b2..7f3150794 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.freeze +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.freeze @@ -1 +1 @@ -2025-02-26T10:13:22.33888+01:00 \ No newline at end of file +2025-02-26T10:55:26.496021+01:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.yaml b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.yaml index aa0a8e547..ab553382f 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.yaml +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_createRbac.yaml @@ -13,7 +13,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740561202"},"relationships":{},"type":"roles"}} + {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740563726"},"relationships":{},"type":"roles"}} form: {} headers: Accept: @@ -30,13 +30,13 @@ interactions: trailer: {} content_length: 982 uncompressed: false - body: '{"data":{"id":"ef5a892a-f421-11ef-8cab-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:25.855241Z","modified_at":"2025-02-26T09:13:25.855834Z","name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"cf568a24-f427-11ef-8abe-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:55:29.121234Z","modified_at":"2025-02-26T09:55:29.122943Z","name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740563726","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 416.067417ms + duration: 408.433209ms - id: 1 request: proto: HTTP/1.1 @@ -53,7 +53,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/ef5a892a-f421-11ef-8cab-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/cf568a24-f427-11ef-8abe-da7ad0900002 method: GET response: proto: HTTP/1.1 @@ -63,13 +63,13 @@ interactions: trailer: {} content_length: 1065 uncompressed: false - body: '{"data":{"id":"ef5a892a-f421-11ef-8cab-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:25.855241Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:13:25.855834Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"cf568a24-f427-11ef-8abe-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:55:29.121234Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:55:29.122943Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740563726","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 412.265125ms + duration: 134.732ms - id: 2 request: proto: HTTP/1.1 @@ -103,7 +103,7 @@ interactions: - application/vnd.api+json status: 200 OK code: 200 - duration: 122.691834ms + duration: 129.1675ms - id: 3 request: proto: HTTP/1.1 @@ -116,7 +116,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"restricted_roles":["ef5a892a-f421-11ef-8cab-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"restricted_roles":["cf568a24-f427-11ef-8abe-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740563726","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: @@ -135,13 +135,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"z4k-ntq-pde","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/z4k-ntq-pde/tf-testaccdatadogdashboardrbaccreaterbac-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":250769393251870}],"notify_list":[],"created_at":"2025-02-26T09:13:27.152712+00:00","modified_at":"2025-02-26T09:13:27.152712+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["ef5a892a-f421-11ef-8cab-da7ad0900002"]} + {"id":"vun-7me-e8i","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740563726","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/vun-7me-e8i/tf-testaccdatadogdashboardrbaccreaterbac-local-1740563726","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":4152152169310533}],"notify_list":[],"created_at":"2025-02-26T09:55:30.016948+00:00","modified_at":"2025-02-26T09:55:30.016948+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["cf568a24-f427-11ef-8abe-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 325.959833ms + duration: 319.273083ms - id: 4 request: proto: HTTP/1.1 @@ -158,7 +158,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/z4k-ntq-pde + url: https://api.datadoghq.com/api/v1/dashboard/vun-7me-e8i method: GET response: proto: HTTP/1.1 @@ -170,13 +170,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"z4k-ntq-pde","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/z4k-ntq-pde/tf-testaccdatadogdashboardrbaccreaterbac-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":250769393251870}],"notify_list":[],"created_at":"2025-02-26T09:13:27.152712+00:00","modified_at":"2025-02-26T09:13:27.152712+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["ef5a892a-f421-11ef-8cab-da7ad0900002"]} + {"id":"vun-7me-e8i","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740563726","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/vun-7me-e8i/tf-testaccdatadogdashboardrbaccreaterbac-local-1740563726","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":4152152169310533}],"notify_list":[],"created_at":"2025-02-26T09:55:30.016948+00:00","modified_at":"2025-02-26T09:55:30.016948+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["cf568a24-f427-11ef-8abe-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 166.431959ms + duration: 167.137666ms - id: 5 request: proto: HTTP/1.1 @@ -193,7 +193,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/z4k-ntq-pde + url: https://api.datadoghq.com/api/v1/dashboard/vun-7me-e8i method: GET response: proto: HTTP/1.1 @@ -205,13 +205,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"z4k-ntq-pde","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/z4k-ntq-pde/tf-testaccdatadogdashboardrbaccreaterbac-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":250769393251870}],"notify_list":[],"created_at":"2025-02-26T09:13:27.152712+00:00","modified_at":"2025-02-26T09:13:27.152712+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["ef5a892a-f421-11ef-8cab-da7ad0900002"]} + {"id":"vun-7me-e8i","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740563726","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/vun-7me-e8i/tf-testaccdatadogdashboardrbaccreaterbac-local-1740563726","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":4152152169310533}],"notify_list":[],"created_at":"2025-02-26T09:55:30.016948+00:00","modified_at":"2025-02-26T09:55:30.016948+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["cf568a24-f427-11ef-8abe-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 174.266458ms + duration: 161.365417ms - id: 6 request: proto: HTTP/1.1 @@ -228,7 +228,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/ef5a892a-f421-11ef-8cab-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/cf568a24-f427-11ef-8abe-da7ad0900002 method: GET response: proto: HTTP/1.1 @@ -238,13 +238,13 @@ interactions: trailer: {} content_length: 1065 uncompressed: false - body: '{"data":{"id":"ef5a892a-f421-11ef-8cab-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:25.855241Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:13:25.855834Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"cf568a24-f427-11ef-8abe-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:55:29.121234Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:55:29.122943Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740563726","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 127.239625ms + duration: 130.651542ms - id: 7 request: proto: HTTP/1.1 @@ -261,7 +261,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/z4k-ntq-pde + url: https://api.datadoghq.com/api/v1/dashboard/vun-7me-e8i method: GET response: proto: HTTP/1.1 @@ -273,13 +273,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"z4k-ntq-pde","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/z4k-ntq-pde/tf-testaccdatadogdashboardrbaccreaterbac-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":250769393251870}],"notify_list":[],"created_at":"2025-02-26T09:13:27.152712+00:00","modified_at":"2025-02-26T09:13:27.152712+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["ef5a892a-f421-11ef-8cab-da7ad0900002"]} + {"id":"vun-7me-e8i","title":"tf-TestAccDatadogDashboardRbac_createRbac-local-1740563726","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/vun-7me-e8i/tf-testaccdatadogdashboardrbaccreaterbac-local-1740563726","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":4152152169310533}],"notify_list":[],"created_at":"2025-02-26T09:55:30.016948+00:00","modified_at":"2025-02-26T09:55:30.016948+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["cf568a24-f427-11ef-8abe-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 157.146375ms + duration: 172.409625ms - id: 8 request: proto: HTTP/1.1 @@ -296,7 +296,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/z4k-ntq-pde + url: https://api.datadoghq.com/api/v1/dashboard/vun-7me-e8i method: DELETE response: proto: HTTP/1.1 @@ -308,13 +308,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"deleted_dashboard_id":"z4k-ntq-pde"} + {"deleted_dashboard_id":"vun-7me-e8i"} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 226.956834ms + duration: 232.962208ms - id: 9 request: proto: HTTP/1.1 @@ -331,7 +331,7 @@ interactions: headers: Accept: - '*/*' - url: https://api.datadoghq.com/api/v2/roles/ef5a892a-f421-11ef-8cab-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/cf568a24-f427-11ef-8abe-da7ad0900002 method: DELETE response: proto: HTTP/1.1 @@ -345,4 +345,4 @@ interactions: headers: {} status: 204 No Content code: 204 - duration: 252.24175ms + duration: 126.195708ms diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.freeze b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.freeze index 786c409ce..46e35cbf3 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.freeze +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.freeze @@ -1 +1 @@ -2025-02-26T10:13:22.346514+01:00 \ No newline at end of file +2025-02-26T10:55:44.001127+01:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.yaml b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.yaml index a87d82ebd..a964fbcd3 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.yaml +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToAdmin.yaml @@ -13,7 +13,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740563744","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: @@ -32,13 +32,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"ccf-8xc-832","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/ccf-8xc-832/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2368130173625047}],"notify_list":[],"created_at":"2025-02-26T09:13:26.300249+00:00","modified_at":"2025-02-26T09:13:26.300249+00:00","template_variable_presets":[],"tags":[]} + {"id":"svf-phv-69x","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740563744","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/svf-phv-69x/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740563744","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":3091111037154260}],"notify_list":[],"created_at":"2025-02-26T09:55:47.003762+00:00","modified_at":"2025-02-26T09:55:47.003762+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 534.510292ms + duration: 560.967416ms - id: 1 request: proto: HTTP/1.1 @@ -55,41 +55,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/ccf-8xc-832 - method: GET - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: - - chunked - trailer: {} - content_length: -1 - uncompressed: true - body: '{"errors":["Dashboard with ID ccf-8xc-832 not found"]}' - headers: - Content-Type: - - application/json - status: 404 Not Found - code: 404 - duration: 181.171208ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.datadoghq.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/json - url: https://api.datadoghq.com/api/v1/dashboard/ccf-8xc-832 + url: https://api.datadoghq.com/api/v1/dashboard/svf-phv-69x method: GET response: proto: HTTP/1.1 @@ -101,14 +67,14 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"ccf-8xc-832","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/ccf-8xc-832/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2368130173625047}],"notify_list":[],"created_at":"2025-02-26T09:13:26.300249+00:00","modified_at":"2025-02-26T09:13:26.300249+00:00","template_variable_presets":[],"tags":[]} + {"id":"svf-phv-69x","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740563744","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/svf-phv-69x/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740563744","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":3091111037154260}],"notify_list":[],"created_at":"2025-02-26T09:55:47.003762+00:00","modified_at":"2025-02-26T09:55:47.003762+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 173.7345ms - - id: 3 + duration: 172.33125ms + - id: 2 request: proto: HTTP/1.1 proto_major: 1 @@ -124,7 +90,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/ccf-8xc-832 + url: https://api.datadoghq.com/api/v1/dashboard/svf-phv-69x method: GET response: proto: HTTP/1.1 @@ -136,14 +102,14 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"ccf-8xc-832","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/ccf-8xc-832/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2368130173625047}],"notify_list":[],"created_at":"2025-02-26T09:13:26.300249+00:00","modified_at":"2025-02-26T09:13:26.300249+00:00","template_variable_presets":[],"tags":[]} + {"id":"svf-phv-69x","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740563744","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/svf-phv-69x/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740563744","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":3091111037154260}],"notify_list":[],"created_at":"2025-02-26T09:55:47.003762+00:00","modified_at":"2025-02-26T09:55:47.003762+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 162.113292ms - - id: 4 + duration: 186.9385ms + - id: 3 request: proto: HTTP/1.1 proto_major: 1 @@ -159,7 +125,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/ccf-8xc-832 + url: https://api.datadoghq.com/api/v1/dashboard/svf-phv-69x method: GET response: proto: HTTP/1.1 @@ -171,14 +137,14 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"ccf-8xc-832","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/ccf-8xc-832/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":2368130173625047}],"notify_list":[],"created_at":"2025-02-26T09:13:26.300249+00:00","modified_at":"2025-02-26T09:13:26.300249+00:00","template_variable_presets":[],"tags":[]} + {"id":"svf-phv-69x","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740563744","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/svf-phv-69x/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740563744","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":3091111037154260}],"notify_list":[],"created_at":"2025-02-26T09:55:47.003762+00:00","modified_at":"2025-02-26T09:55:47.003762+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 167.636375ms - - id: 5 + duration: 151.829916ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -190,14 +156,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"ccf-8xc-832","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"svf-phv-69x","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740563744","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: - application/json Content-Type: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/ccf-8xc-832 + url: https://api.datadoghq.com/api/v1/dashboard/svf-phv-69x method: PUT response: proto: HTTP/1.1 @@ -209,14 +175,14 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"ccf-8xc-832","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/ccf-8xc-832/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":26312898273803}],"notify_list":[],"created_at":"2025-02-26T09:13:26.300249+00:00","modified_at":"2025-02-26T09:13:34.143242+00:00","template_variable_presets":[],"tags":[]} + {"id":"svf-phv-69x","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740563744","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/svf-phv-69x/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740563744","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":536194236383344}],"notify_list":[],"created_at":"2025-02-26T09:55:47.003762+00:00","modified_at":"2025-02-26T09:55:51.633559+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.910925167s - - id: 6 + duration: 353.226167ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -232,7 +198,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/ccf-8xc-832 + url: https://api.datadoghq.com/api/v1/dashboard/svf-phv-69x method: GET response: proto: HTTP/1.1 @@ -244,14 +210,14 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"ccf-8xc-832","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/ccf-8xc-832/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":26312898273803}],"notify_list":[],"created_at":"2025-02-26T09:13:26.300249+00:00","modified_at":"2025-02-26T09:13:34.143242+00:00","template_variable_presets":[],"tags":[]} + {"id":"svf-phv-69x","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740563744","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/svf-phv-69x/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740563744","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":536194236383344}],"notify_list":[],"created_at":"2025-02-26T09:55:47.003762+00:00","modified_at":"2025-02-26T09:55:51.633559+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 160.693958ms - - id: 7 + duration: 180.103125ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -267,7 +233,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/ccf-8xc-832 + url: https://api.datadoghq.com/api/v1/dashboard/svf-phv-69x method: GET response: proto: HTTP/1.1 @@ -279,14 +245,14 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"ccf-8xc-832","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/ccf-8xc-832/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":26312898273803}],"notify_list":[],"created_at":"2025-02-26T09:13:26.300249+00:00","modified_at":"2025-02-26T09:13:34.143242+00:00","template_variable_presets":[],"tags":[]} + {"id":"svf-phv-69x","title":"tf-TestAccDatadogDashboardRbac_updateToAdmin-local-1740563744","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/svf-phv-69x/tf-testaccdatadogdashboardrbacupdatetoadmin-local-1740563744","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":536194236383344}],"notify_list":[],"created_at":"2025-02-26T09:55:47.003762+00:00","modified_at":"2025-02-26T09:55:51.633559+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 158.425125ms - - id: 8 + duration: 177.773084ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -302,7 +268,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/ccf-8xc-832 + url: https://api.datadoghq.com/api/v1/dashboard/svf-phv-69x method: DELETE response: proto: HTTP/1.1 @@ -314,10 +280,10 @@ interactions: content_length: -1 uncompressed: true body: | - {"deleted_dashboard_id":"ccf-8xc-832"} + {"deleted_dashboard_id":"svf-phv-69x"} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 221.240792ms + duration: 215.559ms diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.freeze b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.freeze index 26085b4b5..4387909c6 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.freeze +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.freeze @@ -1 +1 @@ -2025-02-26T10:13:22.346105+01:00 \ No newline at end of file +2025-02-26T10:56:05.327025+01:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.yaml b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.yaml index da59d1eb2..374554994 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.yaml +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToOpen.yaml @@ -13,7 +13,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"","is_read_only":true,"layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740563765","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: @@ -32,13 +32,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5521447246072775}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:26.275458+00:00","template_variable_presets":[],"tags":[]} + {"id":"3p2-bub-49m","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740563765","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/3p2-bub-49m/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740563765","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7787506617804852}],"notify_list":[],"created_at":"2025-02-26T09:56:08.273025+00:00","modified_at":"2025-02-26T09:56:08.273025+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 623.253792ms + duration: 595.377042ms - id: 1 request: proto: HTTP/1.1 @@ -55,7 +55,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y + url: https://api.datadoghq.com/api/v1/dashboard/3p2-bub-49m method: GET response: proto: HTTP/1.1 @@ -67,13 +67,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5521447246072775}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:26.275458+00:00","template_variable_presets":[],"tags":[]} + {"id":"3p2-bub-49m","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740563765","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/3p2-bub-49m/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740563765","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7787506617804852}],"notify_list":[],"created_at":"2025-02-26T09:56:08.273025+00:00","modified_at":"2025-02-26T09:56:08.273025+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 168.746083ms + duration: 153.501375ms - id: 2 request: proto: HTTP/1.1 @@ -90,7 +90,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y + url: https://api.datadoghq.com/api/v1/dashboard/3p2-bub-49m method: GET response: proto: HTTP/1.1 @@ -102,13 +102,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5521447246072775}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:26.275458+00:00","template_variable_presets":[],"tags":[]} + {"id":"3p2-bub-49m","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740563765","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/3p2-bub-49m/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740563765","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7787506617804852}],"notify_list":[],"created_at":"2025-02-26T09:56:08.273025+00:00","modified_at":"2025-02-26T09:56:08.273025+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 166.102ms + duration: 169.855416ms - id: 3 request: proto: HTTP/1.1 @@ -125,7 +125,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y + url: https://api.datadoghq.com/api/v1/dashboard/3p2-bub-49m method: GET response: proto: HTTP/1.1 @@ -137,13 +137,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5521447246072775}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:26.275458+00:00","template_variable_presets":[],"tags":[]} + {"id":"3p2-bub-49m","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740563765","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/3p2-bub-49m/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740563765","is_read_only":true,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7787506617804852}],"notify_list":[],"created_at":"2025-02-26T09:56:08.273025+00:00","modified_at":"2025-02-26T09:56:08.273025+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 171.885041ms + duration: 177.2245ms - id: 4 request: proto: HTTP/1.1 @@ -156,14 +156,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"wk7-sgd-q7y","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"3p2-bub-49m","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740563765","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: - application/json Content-Type: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y + url: https://api.datadoghq.com/api/v1/dashboard/3p2-bub-49m method: PUT response: proto: HTTP/1.1 @@ -175,13 +175,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5635870865585523}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:31.944209+00:00","template_variable_presets":[],"tags":[]} + {"id":"3p2-bub-49m","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740563765","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/3p2-bub-49m/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740563765","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7997825310824955}],"notify_list":[],"created_at":"2025-02-26T09:56:08.273025+00:00","modified_at":"2025-02-26T09:56:12.841362+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 330.636584ms + duration: 335.265416ms - id: 5 request: proto: HTTP/1.1 @@ -198,7 +198,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y + url: https://api.datadoghq.com/api/v1/dashboard/3p2-bub-49m method: GET response: proto: HTTP/1.1 @@ -210,13 +210,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5635870865585523}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:31.944209+00:00","template_variable_presets":[],"tags":[]} + {"id":"3p2-bub-49m","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740563765","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/3p2-bub-49m/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740563765","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7997825310824955}],"notify_list":[],"created_at":"2025-02-26T09:56:08.273025+00:00","modified_at":"2025-02-26T09:56:12.841362+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 175.832375ms + duration: 161.763375ms - id: 6 request: proto: HTTP/1.1 @@ -233,7 +233,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y + url: https://api.datadoghq.com/api/v1/dashboard/3p2-bub-49m method: GET response: proto: HTTP/1.1 @@ -245,13 +245,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5635870865585523}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:31.944209+00:00","template_variable_presets":[],"tags":[]} + {"id":"3p2-bub-49m","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740563765","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/3p2-bub-49m/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740563765","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7997825310824955}],"notify_list":[],"created_at":"2025-02-26T09:56:08.273025+00:00","modified_at":"2025-02-26T09:56:12.841362+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 166.592625ms + duration: 162.321875ms - id: 7 request: proto: HTTP/1.1 @@ -268,7 +268,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y + url: https://api.datadoghq.com/api/v1/dashboard/3p2-bub-49m method: GET response: proto: HTTP/1.1 @@ -280,13 +280,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5635870865585523}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:31.944209+00:00","template_variable_presets":[],"tags":[]} + {"id":"3p2-bub-49m","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740563765","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/3p2-bub-49m/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740563765","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":7997825310824955}],"notify_list":[],"created_at":"2025-02-26T09:56:08.273025+00:00","modified_at":"2025-02-26T09:56:12.841362+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 177.0685ms + duration: 162.18775ms - id: 8 request: proto: HTTP/1.1 @@ -299,7 +299,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202"},"relationships":{},"type":"roles"}} + {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740563765"},"relationships":{},"type":"roles"}} form: {} headers: Accept: @@ -314,15 +314,15 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 983 + content_length: 984 uncompressed: false - body: '{"data":{"id":"f6288054-f421-11ef-ae18-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:37.27126Z","modified_at":"2025-02-26T09:13:37.271871Z","name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"ebd5f0cc-f427-11ef-b463-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:56:16.932924Z","modified_at":"2025-02-26T09:56:16.933997Z","name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740563765","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 121.60125ms + duration: 125.802125ms - id: 9 request: proto: HTTP/1.1 @@ -339,7 +339,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/f6288054-f421-11ef-ae18-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/ebd5f0cc-f427-11ef-b463-da7ad0900002 method: GET response: proto: HTTP/1.1 @@ -347,16 +347,50 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1066 + content_length: 1067 uncompressed: false - body: '{"data":{"id":"f6288054-f421-11ef-ae18-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:37.27126Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:13:37.271871Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"ebd5f0cc-f427-11ef-b463-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:56:16.932924Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:56:16.933997Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740563765","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 122.456667ms + duration: 139.5715ms - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v2/permissions + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: '{"data":[{"id":"984a2bd4-d3b4-11e8-a1ff-a7f660d43029","type":"permissions","attributes":{"created":"2018-10-19T15:35:23.734317Z","description":"Deprecated. Privileged Access (also known as Admin permission) has been replaced by more specific permissions: Access Management, Org Management, Billing Read/Write, Usage Read/Write.","display_name":"Privileged Access","display_type":"other","group_name":"General","name":"admin","restricted":false}},{"id":"984d2f00-d3b4-11e8-a200-bb47109e9987","type":"permissions","attributes":{"created":"2018-10-19T15:35:23.756736Z","description":"Deprecated. Standard Access has been replaced by more specific permissions.","display_name":"Standard Access","display_type":"other","group_name":"General","name":"standard","restricted":false}},{"id":"5e605652-dd12-11e8-9e53-375565b8970e","type":"permissions","attributes":{"created":"2018-10-31T13:39:19.72745Z","description":"Read log data, possibly scoped to one or more indexes. In order to read log data, a user must have both this permission and Logs Read Data. This permission can be granted in a limited capacity per index from the Logs interface or APIs. If granted via the Roles interface or API the permission has global scope. Restrictions are limited to the Log Management product.","display_name":"Logs Read Index Data","display_type":"read","group_name":"Log Management","name":"logs_read_index_data","restricted":false}},{"id":"62cc036c-dd12-11e8-9e54-db9995643092","type":"permissions","attributes":{"created":"2018-10-31T13:39:27.148615Z","description":"Read and modify all indexes in your account. This includes the ability to grant the Logs Read Index Data and Logs Write Exclusion Filters permission to other roles, for some or all indexes.","display_name":"Logs Modify Indexes","display_type":"write","group_name":"Log Management","name":"logs_modify_indexes","restricted":false}},{"id":"6f66600e-dd12-11e8-9e55-7f30fbb45e73","type":"permissions","attributes":{"created":"2018-10-31T13:39:48.292879Z","description":"View the live tail feed for all log indexes, even if otherwise specifically restricted.","display_name":"Logs Live Tail","display_type":"read","group_name":"Log Management","name":"logs_live_tail","restricted":false}},{"id":"7d7c98ac-dd12-11e8-9e56-93700598622d","type":"permissions","attributes":{"created":"2018-10-31T13:40:11.926613Z","description":"Add and change exclusion filters for all or some log indexes. Can be granted in a limited capacity per index to specific roles via the Logs interface or API. If granted from the Roles interface or API, the permission has global scope.","display_name":"Logs Write Exclusion Filters","display_type":"write","group_name":"Log Management","name":"logs_write_exclusion_filters","restricted":false}},{"id":"811ac4ca-dd12-11e8-9e57-676a7f0beef9","type":"permissions","attributes":{"created":"2018-10-31T13:40:17.996379Z","description":"Add and change log pipeline configurations, including the ability to grant the Logs Write Processors permission to other roles, for some or all pipelines.","display_name":"Logs Write Pipelines","display_type":"write","group_name":"Log Management","name":"logs_write_pipelines","restricted":false}},{"id":"84aa3ae4-dd12-11e8-9e58-a373a514ccd0","type":"permissions","attributes":{"created":"2018-10-31T13:40:23.969725Z","description":"Add and change some or all log processor configurations. Can be granted in a limited capacity per pipeline to specific roles via the Logs interface or API. If granted via the Roles interface or API the permission has global scope.","display_name":"Logs Write Processors","display_type":"write","group_name":"Log Management","name":"logs_write_processors","restricted":false}},{"id":"87b00304-dd12-11e8-9e59-cbeb5f71f72f","type":"permissions","attributes":{"created":"2018-10-31T13:40:29.040786Z","description":"Add and edit Log Archives.","display_name":"Logs Write Archives","display_type":"write","group_name":"Log Management","name":"logs_write_archives","restricted":false}},{"id":"979df720-aed7-11e9-99c6-a7eb8373165a","type":"permissions","attributes":{"created":"2019-07-25T12:27:39.640758Z","description":"Create custom metrics from logs.","display_name":"Logs Generate Metrics","display_type":"write","group_name":"Log Management","name":"logs_generate_metrics","restricted":false}},{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions","attributes":{"created":"2019-09-10T14:39:51.955175Z","description":"View dashboards.","display_name":"Dashboards Read","display_type":"read","group_name":"Dashboards","name":"dashboards_read","restricted":true}},{"id":"d90f6831-d3d8-11e9-a77a-4fd230ddbc6a","type":"permissions","attributes":{"created":"2019-09-10T14:39:51.962944Z","description":"Create and change dashboards.","display_name":"Dashboards Write","display_type":"write","group_name":"Dashboards","name":"dashboards_write","restricted":false}},{"id":"d90f6832-d3d8-11e9-a77a-bf8a2607f864","type":"permissions","attributes":{"created":"2019-09-10T14:39:51.967094Z","description":"Generate public and authenticated links to share dashboards or embeddable graphs externally.","display_name":"Dashboards Public Share","display_type":"write","group_name":"Dashboards","name":"dashboards_public_share","restricted":false}},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions","attributes":{"created":"2019-09-16T18:39:07.744297Z","description":"View monitors.","display_name":"Monitors Read","display_type":"read","group_name":"Monitors","name":"monitors_read","restricted":true}},{"id":"48ef71ea-d8b1-11e9-a77a-93f408470ad0","type":"permissions","attributes":{"created":"2019-09-16T18:39:15.597109Z","description":"Edit and delete individual monitors.","display_name":"Monitors Write","display_type":"write","group_name":"Monitors","name":"monitors_write","restricted":false}},{"id":"4d87d5f8-d8b1-11e9-a77a-eb9c8350d04f","type":"permissions","attributes":{"created":"2019-09-16T18:39:23.306702Z","description":"Set downtimes to suppress alerts from any monitor in an organization. Mute and unmute monitors. The ability to write monitors is not required to set downtimes.","display_name":"Manage Downtimes","display_type":"write","group_name":"Monitors","name":"monitors_downtime","restricted":false}},{"id":"1af86ce4-7823-11ea-93dc-d7cad1b1c6cb","type":"permissions","attributes":{"created":"2020-04-06T16:24:35.989108Z","description":"Read log data. In order to read log data, a user must have both this permission and Logs Read Index Data. This permission can be restricted with restriction queries. Restrictions are limited to the Log Management product.","display_name":"Logs Read Data","display_type":"read","group_name":"Log Management","name":"logs_read_data","restricted":false}},{"id":"b382b982-8535-11ea-93de-2bf1bdf20798","type":"permissions","attributes":{"created":"2020-04-23T07:40:27.966133Z","description":"Read Log Archives location and use it for rehydration.","display_name":"Logs Read Archives","display_type":"read","group_name":"Log Management","name":"logs_read_archives","restricted":false}},{"id":"7314eb20-aa58-11ea-95e2-6fb6e4a451d5","type":"permissions","attributes":{"created":"2020-06-09T13:52:25.279909Z","description":"Read Detection Rules.","display_name":"Security Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_rules_read","restricted":false}},{"id":"7b516476-aa58-11ea-95e2-93718cd56369","type":"permissions","attributes":{"created":"2020-06-09T13:52:39.099413Z","description":"Create and edit Detection Rules.","display_name":"Security Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_rules_write","restricted":false}},{"id":"80de1ec0-aa58-11ea-95e2-aff381626d5d","type":"permissions","attributes":{"created":"2020-06-09T13:52:48.410398Z","description":"View Security Signals.","display_name":"Security Signals Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_signals_read","restricted":false}},{"id":"58b412cc-ff6d-11eb-bc9c-da7ad0900002","type":"permissions","attributes":{"created":"2021-08-17T15:11:06.963503Z","description":"Modify Security Signals.","display_name":"Security Signals Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_signals_write","restricted":false}},{"id":"9ac1d8cc-e707-11ea-aa2d-73d37e989a9d","type":"permissions","attributes":{"created":"2020-08-25T19:17:23.539701Z","description":"Invite other users to your organization.","display_name":"User Access Invite","display_type":"write","group_name":"Access Management","name":"user_access_invite","restricted":false}},{"id":"9de604d8-e707-11ea-aa2d-93f1a783b3a3","type":"permissions","attributes":{"created":"2020-08-25T19:17:28.810412Z","description":"Disable users, manage user roles, manage SAML-to-role mappings, and configure logs restriction queries.","display_name":"User Access Manage","display_type":"write","group_name":"Access Management","name":"user_access_manage","restricted":false}},{"id":"46a301da-ec5c-11ea-aa9f-73bedeab67ee","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View and manage Application Keys owned by the user.","display_name":"User App Keys","display_type":"write","group_name":"API and Application Keys","name":"user_app_keys","restricted":false}},{"id":"46a301db-ec5c-11ea-aa9f-2fe72193d60e","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View Application Keys owned by all users in the organization.","display_name":"Org App Keys Read","display_type":"read","group_name":"API and Application Keys","name":"org_app_keys_read","restricted":false}},{"id":"46a301dc-ec5c-11ea-aa9f-13b33f8f46ea","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Manage Application Keys owned by all users in the organization.","display_name":"Org App Keys Write","display_type":"write","group_name":"API and Application Keys","name":"org_app_keys_write","restricted":false}},{"id":"46a301dd-ec5c-11ea-aa9f-97edfb345bc9","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View, search, and use Synthetics private locations.","display_name":"Synthetics Private Locations Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_private_location_read","restricted":false}},{"id":"46a301de-ec5c-11ea-aa9f-a73252c24806","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Create and delete private locations in addition to having access to the associated installation guidelines.","display_name":"Synthetics Private Locations Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_private_location_write","restricted":false}},{"id":"46a301df-ec5c-11ea-aa9f-970a9ae645e5","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View your organization''s subscription and payment method but not make edits.","display_name":"Billing Read","display_type":"read","group_name":"Billing and Usage","name":"billing_read","restricted":false}},{"id":"46a301e0-ec5c-11ea-aa9f-6ba6cc675d8c","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Manage your organization''s subscription and payment method.","display_name":"Billing Edit","display_type":"write","group_name":"Billing and Usage","name":"billing_edit","restricted":false}},{"id":"46a301e1-ec5c-11ea-aa9f-afa39f6f3e36","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View your organization''s usage and usage attribution.","display_name":"Usage Read","display_type":"read","group_name":"Billing and Usage","name":"usage_read","restricted":false}},{"id":"46a301e2-ec5c-11ea-aa9f-1f511b7305fd","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Manage your organization''s usage attribution set-up.","display_name":"Usage Edit","display_type":"write","group_name":"Billing and Usage","name":"usage_edit","restricted":false}},{"id":"46a301e4-ec5c-11ea-aa9f-87282b3a50cc","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Edit and save tag configurations for custom metrics.","display_name":"Metric Tags Write","display_type":"write","group_name":"Metrics","name":"metric_tags_write","restricted":false}},{"id":"07c3c146-f7f8-11ea-acf6-0bd62b9ae60e","type":"permissions","attributes":{"created":"2020-09-16T08:38:44.242076Z","description":"Rehydrate logs from Archives.","display_name":"Logs Write Historical Views","display_type":"write","group_name":"Log Management","name":"logs_write_historical_view","restricted":false}},{"id":"2fbdac76-f923-11ea-adbc-07f3823e2b43","type":"permissions","attributes":{"created":"2020-09-17T20:20:10.834252Z","description":"View Audit Trail in your organization.","display_name":"Audit Trail Read","display_type":"read","group_name":"Compliance","name":"audit_logs_read","restricted":false}},{"id":"372896c4-f923-11ea-adbc-4fecd107156d","type":"permissions","attributes":{"created":"2020-09-17T20:20:23.279769Z","description":"List and retrieve the key values of all API Keys in your organization.","display_name":"API Keys Read","display_type":"read","group_name":"API and Application Keys","name":"api_keys_read","restricted":false}},{"id":"3e4d4d28-f923-11ea-adbc-e3565938c12e","type":"permissions","attributes":{"created":"2020-09-17T20:20:35.26443Z","description":"Create and rename API Keys for your organization.","display_name":"API Keys Write","display_type":"write","group_name":"API and Application Keys","name":"api_keys_write","restricted":false}},{"id":"4628ca54-f923-11ea-adbc-4b2b7f88c5e9","type":"permissions","attributes":{"created":"2020-09-17T20:20:48.446916Z","description":"View, search, and use Synthetics global variables.","display_name":"Synthetics Global Variable Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_global_variable_read","restricted":false}},{"id":"4ada6e36-f923-11ea-adbc-0788e5c5e3cf","type":"permissions","attributes":{"created":"2020-09-17T20:20:56.322003Z","description":"Create, edit, and delete global variables for Synthetics.","display_name":"Synthetics Global Variable Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_global_variable_write","restricted":false}},{"id":"5025ee24-f923-11ea-adbc-576ea241df8d","type":"permissions","attributes":{"created":"2020-09-17T20:21:05.205361Z","description":"List and view configured Synthetic tests and test results.","display_name":"Synthetics Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_read","restricted":false}},{"id":"55f4b5ec-f923-11ea-adbc-1bfa2334a755","type":"permissions","attributes":{"created":"2020-09-17T20:21:14.94914Z","description":"Create, edit, and delete Synthetic tests.","display_name":"Synthetics Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_write","restricted":false}},{"id":"5c6b88e2-f923-11ea-adbc-abf57d079420","type":"permissions","attributes":{"created":"2020-09-17T20:21:25.79416Z","description":"View the default settings for Synthetic Monitoring.","display_name":"Synthetics Default Settings Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_default_settings_read","restricted":false}},{"id":"642eebe6-f923-11ea-adbc-eb617674ea04","type":"permissions","attributes":{"created":"2020-09-17T20:21:38.818771Z","description":"Edit the default settings for Synthetic Monitoring.","display_name":"Synthetics Default Settings Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_default_settings_write","restricted":false}},{"id":"6ba32d22-0e1a-11eb-ba44-bf9a5aafaa39","type":"permissions","attributes":{"created":"2020-10-14T12:40:20.271908Z","description":"Create or edit Log Facets.","display_name":"Logs Write Facets","display_type":"write","group_name":"Log Management","name":"logs_write_facets","restricted":false}},{"id":"a42e94b2-1476-11eb-bd08-efda28c04248","type":"permissions","attributes":{"created":"2020-10-22T14:55:35.814239Z","description":"Create, disable, and use Service Accounts in your organization.","display_name":"Service Account Write","display_type":"write","group_name":"Access Management","name":"service_account_write","restricted":false}},{"id":"fcac2ad8-2843-11eb-8315-0fe47949d625","type":"permissions","attributes":{"created":"2020-11-16T19:43:23.198568Z","description":"Deprecated. Use the Integrations APIs to configure integrations. In order to configure integrations from the UI, a user must also have Standard Access.","display_name":"Integrations API","display_type":"other","group_name":"Integrations","name":"integrations_api","restricted":false}},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions","attributes":{"created":"2020-11-23T20:55:45.00611Z","description":"Read and query APM and Trace Analytics.","display_name":"APM Read","display_type":"read","group_name":"APM","name":"apm_read","restricted":true}},{"id":"43fa188e-2dce-11eb-84c0-835ad1fd6287","type":"permissions","attributes":{"created":"2020-11-23T20:55:49.190595Z","description":"Read trace retention filters. A user with this permission can view the retention filters page, list of filters, their statistics, and creation info.","display_name":"APM Retention Filters Read","display_type":"read","group_name":"APM","name":"apm_retention_filter_read","restricted":false}},{"id":"465cfe66-2dce-11eb-84c0-6baa888239fa","type":"permissions","attributes":{"created":"2020-11-23T20:55:53.194236Z","description":"Create, edit, and delete trace retention filters. A user with this permission can create new retention filters, and update or delete to existing retention filters.","display_name":"APM Retention Filters Write","display_type":"write","group_name":"APM","name":"apm_retention_filter_write","restricted":false}},{"id":"4916eebe-2dce-11eb-84c0-271cb2c672e8","type":"permissions","attributes":{"created":"2020-11-23T20:55:57.768261Z","description":"Access service ingestion pages. A user with this permission can view the service ingestion page, list of root services, their statistics, and creation info.","display_name":"APM Service Ingest Read","display_type":"read","group_name":"APM","name":"apm_service_ingest_read","restricted":false}},{"id":"4e3f02b4-2dce-11eb-84c0-2fca946a6efc","type":"permissions","attributes":{"created":"2020-11-23T20:56:06.419518Z","description":"Edit service ingestion pages'' root services. A user with this permission can edit the root service ingestion and generate a code snippet to increase ingestion per service.","display_name":"APM Service Ingest Write","display_type":"write","group_name":"APM","name":"apm_service_ingest_write","restricted":false}},{"id":"53950c54-2dce-11eb-84c0-a79ae108f6f8","type":"permissions","attributes":{"created":"2020-11-23T20:56:15.371926Z","description":"Set Apdex T value on any service. A user with this permission can set the T value from the Apdex graph on the service page.","display_name":"APM Apdex Manage Write","display_type":"write","group_name":"APM","name":"apm_apdex_manage_write","restricted":false}},{"id":"5cbe5f9c-2dce-11eb-84c0-872d3e9f1076","type":"permissions","attributes":{"created":"2020-11-23T20:56:30.742299Z","description":"Edit second primary tag selection. A user with this permission can modify the second primary tag dropdown in the APM settings page.","display_name":"APM Tag Management Write","display_type":"write","group_name":"APM","name":"apm_tag_management_write","restricted":false}},{"id":"61765026-2dce-11eb-84c0-833e230d1b8f","type":"permissions","attributes":{"created":"2020-11-23T20:56:38.658649Z","description":"Edit the operation name value selection. A user with this permission can modify the operation name list in the APM settings page and the operation name controller on the service page.","display_name":"APM Primary Operation Write","display_type":"write","group_name":"APM","name":"apm_primary_operation_write","restricted":false}},{"id":"04bc1cf2-340a-11eb-873a-43b973c760dd","type":"permissions","attributes":{"created":"2020-12-01T19:18:39.866516Z","description":"Configure Audit Trail in your organization.","display_name":"Audit Trail Write","display_type":"write","group_name":"Compliance","name":"audit_logs_write","restricted":false}},{"id":"8106300a-54f7-11eb-8cbc-7781a434a67b","type":"permissions","attributes":{"created":"2021-01-12T16:59:16.32448Z","description":"Create, edit, and delete RUM applications. Creating a RUM application automatically generates a Client Token. In order to create Client Tokens directly, a user needs the Client Tokens Write permission.","display_name":"RUM Apps Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_apps_write","restricted":false}},{"id":"edfd5e74-801f-11eb-96d8-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-08T15:06:59.006815Z","description":"Edit Dynamic Instrumentation configuration. Create or modify Dynamic Instrumentation probes that do not capture function state.","display_name":"Dynamic Instrumentation Write","display_type":"write","group_name":"APM","name":"debugger_write","restricted":false}},{"id":"edfd5e75-801f-11eb-96d8-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-08T15:06:59.010517Z","description":"View Dynamic Instrumentation configuration.","display_name":"Dynamic Instrumentation Read","display_type":"read","group_name":"APM","name":"debugger_read","restricted":false}},{"id":"bf0dcf7c-90af-11eb-9b82-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-29T16:56:46.394971Z","description":"View Sensitive Data Scanner configurations and scanning results.","display_name":"Data Scanner Read","display_type":"read","group_name":"Compliance","name":"data_scanner_read","restricted":false}},{"id":"bf0dcf7d-90af-11eb-9b82-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-29T16:56:46.398584Z","description":"Edit Sensitive Data Scanner configurations.","display_name":"Data Scanner Write","display_type":"write","group_name":"Compliance","name":"data_scanner_write","restricted":false}},{"id":"7df222b6-a45c-11eb-a0af-da7ad0900002","type":"permissions","attributes":{"created":"2021-04-23T17:51:12.18734Z","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 \u0026 unsubscribing from apps in the marketplace, and enabling \u0026 disabling Remote Configuration for the entire organization.","display_name":"Org Management","display_type":"write","group_name":"Access Management","name":"org_management","restricted":false}},{"id":"98b984f4-b16d-11eb-a2c6-da7ad0900002","type":"permissions","attributes":{"created":"2021-05-10T08:56:23.676833Z","description":"Read Security Filters.","display_name":"Security Filters Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_filters_read","restricted":false}},{"id":"98b984f5-b16d-11eb-a2c6-da7ad0900002","type":"permissions","attributes":{"created":"2021-05-10T08:56:23.680551Z","description":"Create, edit, and delete Security Filters.","display_name":"Security Filters Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_filters_write","restricted":false}},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.255499Z","description":"View incidents in Datadog.","display_name":"Incidents Read","display_type":"read","group_name":"Case and Incident Management","name":"incident_read","restricted":true}},{"id":"12efc211-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.264369Z","description":"Create, view, and manage incidents in Datadog.","display_name":"Incidents Write","display_type":"write","group_name":"Case and Incident Management","name":"incident_write","restricted":false}},{"id":"12efc20f-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.259568Z","description":"View Incident Settings.","display_name":"Incident Settings Read","display_type":"read","group_name":"Case and Incident Management","name":"incident_settings_read","restricted":false}},{"id":"12efc210-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.261986Z","description":"Configure Incident Settings.","display_name":"Incident Settings Write","display_type":"write","group_name":"Case and Incident Management","name":"incident_settings_write","restricted":false}},{"id":"97971c1c-e895-11eb-b13c-da7ad0900002","type":"permissions","attributes":{"created":"2021-07-19T13:31:15.595771Z","description":"View Application Security Management Event Rules.","display_name":"Application Security Management Event Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_event_rule_read","restricted":false}},{"id":"97971c1d-e895-11eb-b13c-da7ad0900002","type":"permissions","attributes":{"created":"2021-07-19T13:31:15.598808Z","description":"Edit Application Security Management Event Rules.","display_name":"Application Security Management Event Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_event_rule_write","restricted":false}},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions","attributes":{"created":"2021-08-02T09:46:07.671535Z","description":"View RUM Applications data.","display_name":"RUM Apps Read","display_type":"read","group_name":"Real User Monitoring","name":"rum_apps_read","restricted":true}},{"id":"7605ef25-f376-11eb-b90b-da7ad0900002","type":"permissions","attributes":{"created":"2021-08-02T09:46:07.67464Z","description":"View Session Replays.","display_name":"RUM Session Replay Read","display_type":"read","group_name":"Real User Monitoring","name":"rum_session_replay_read","restricted":false}},{"id":"c95412b8-16c7-11ec-85c0-da7ad0900002","type":"permissions","attributes":{"created":"2021-09-16T08:26:27.366789Z","description":"Read Notification Rules.","display_name":"Security Notification Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_notification_profiles_read","restricted":false}},{"id":"c95412b9-16c7-11ec-85c0-da7ad0900002","type":"permissions","attributes":{"created":"2021-09-16T08:26:27.369359Z","description":"Create, edit, and delete Notification Rules.","display_name":"Security Notification Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_notification_profiles_write","restricted":false}},{"id":"26c79920-1703-11ec-85d2-da7ad0900002","type":"permissions","attributes":{"created":"2021-09-16T15:31:24.458963Z","description":"Create custom metrics from spans.","display_name":"APM Generate Metrics","display_type":"write","group_name":"APM","name":"apm_generate_metrics","restricted":false}},{"id":"f4473c60-4792-11ec-a27b-da7ad0900002","type":"permissions","attributes":{"created":"2021-11-17T10:41:43.074031Z","description":"Read Cloud Workload Security Agent Rules.","display_name":"Cloud Workload Security Agent Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_cws_agent_rules_read","restricted":false}},{"id":"f4473c61-4792-11ec-a27b-da7ad0900002","type":"permissions","attributes":{"created":"2021-11-17T10:41:43.077905Z","description":"Create, edit, and delete Cloud Workload Security Agent Rules.","display_name":"Cloud Workload Security Agent Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_cws_agent_rules_write","restricted":false}},{"id":"020a563c-56a4-11ec-a982-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-06T14:51:35.049129Z","description":"Add and change APM pipeline configurations.","display_name":"APM Pipelines Write","display_type":"write","group_name":"APM","name":"apm_pipelines_write","restricted":false}},{"id":"8e4d6b6e-5750-11ec-a9f4-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-07T11:26:43.807269Z","description":"View APM pipeline configurations.","display_name":"APM Pipelines Read","display_type":"read","group_name":"APM","name":"apm_pipelines_read","restricted":false}},{"id":"945b3bb4-5884-11ec-aa6d-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-09T00:11:38.956827Z","description":"View pipelines in your organization.","display_name":"Observability Pipelines Read","display_type":"read","group_name":"Observability Pipelines","name":"observability_pipelines_read","restricted":false}},{"id":"945b3bb5-5884-11ec-aa6d-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-09T00:11:38.960833Z","description":"Edit pipelines in your organization.","display_name":"Observability Pipelines Write","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_write","restricted":false}},{"id":"f6e917a8-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.058412Z","description":"View workflows.","display_name":"Workflows Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"workflows_read","restricted":false}},{"id":"f6e917aa-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.061765Z","description":"Create, edit, and delete workflows.","display_name":"Workflows Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"workflows_write","restricted":false}},{"id":"f6e917a9-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.060079Z","description":"Run workflows.","display_name":"Workflows Run","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"workflows_run","restricted":false}},{"id":"f6e917a6-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.053432Z","description":"List and view available connections. Connections contain secrets that cannot be revealed.","display_name":"Connections Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"connections_read","restricted":false}},{"id":"f6e917a7-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.05659Z","description":"Create and delete connections.","display_name":"Connections Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"connections_write","restricted":false}},{"id":"7a89ec40-8b69-11ec-812d-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-11T18:36:08.531989Z","description":"Access all private incidents in Datadog, even when not added as a responder.","display_name":"Private Incidents Global Access","display_type":"read","group_name":"Case and Incident Management","name":"incidents_private_global_access","restricted":false}},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions","attributes":{"created":"2022-03-02T18:51:05.04095Z","description":"View notebooks.","display_name":"Notebooks Read","display_type":"read","group_name":"Notebooks","name":"notebooks_read","restricted":true}},{"id":"b6bf9ac7-9a59-11ec-8480-da7ad0900002","type":"permissions","attributes":{"created":"2022-03-02T18:51:05.044683Z","description":"Create and change notebooks.","display_name":"Notebooks Write","display_type":"write","group_name":"Notebooks","name":"notebooks_write","restricted":false}},{"id":"e35c06b0-966b-11ec-83c9-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-25T18:51:06.176019Z","description":"Delete data from your Logs, including entire indexes.","display_name":"Logs Delete Data","display_type":"write","group_name":"Log Management","name":"logs_delete_data","restricted":false}},{"id":"2108215e-b9b4-11ec-958e-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-11T16:26:24.106645Z","description":"Create custom metrics from RUM events.","display_name":"RUM Generate Metrics","display_type":"write","group_name":"Real User Monitoring","name":"rum_generate_metrics","restricted":false}},{"id":"7b1f5086-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.278829Z","description":"Add or remove but not edit AWS integration configurations.","display_name":"AWS Configurations Manage","display_type":"write","group_name":"Integrations","name":"aws_configurations_manage","restricted":false}},{"id":"7b1f5088-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.284056Z","description":"Add or remove but not edit Azure integration configurations.","display_name":"Azure Configurations Manage","display_type":"write","group_name":"Integrations","name":"azure_configurations_manage","restricted":false}},{"id":"7b1f5087-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.282282Z","description":"Add or remove but not edit GCP integration configurations.","display_name":"GCP Configurations Manage","display_type":"write","group_name":"Integrations","name":"gcp_configurations_manage","restricted":false}},{"id":"7b1f5089-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.285834Z","description":"Install, uninstall, and configure integrations.","display_name":"Integrations Manage","display_type":"write","group_name":"Integrations","name":"manage_integrations","restricted":false}},{"id":"1afff448-d5e9-11ec-ae37-da7ad0900002","type":"permissions","attributes":{"created":"2022-05-17T13:56:09.870985Z","description":"Receive notifications and view currently configured notification settings.","display_name":"Usage Notifications Read","display_type":"read","group_name":"Billing and Usage","name":"usage_notifications_read","restricted":false}},{"id":"1afff449-d5e9-11ec-ae37-da7ad0900002","type":"permissions","attributes":{"created":"2022-05-17T13:56:09.876124Z","description":"Receive notifications and configure notification settings.","display_name":"Usage Notifications Write","display_type":"write","group_name":"Billing and Usage","name":"usage_notifications_write","restricted":false}},{"id":"6c87d3da-e5c5-11ec-b1d6-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-06T18:21:03.378896Z","description":"Schedule PDF reports from a dashboard.","display_name":"Dashboards Report Write","display_type":"write","group_name":"Dashboards","name":"generate_dashboard_reports","restricted":false}},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-08T16:20:55.142591Z","description":"View SLOs and status corrections.","display_name":"SLOs Read","display_type":"read","group_name":"Service Level Objectives","name":"slos_read","restricted":true}},{"id":"f8e941d0-e746-11ec-b22d-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-08T16:20:55.143869Z","description":"Create, edit, and delete SLOs.","display_name":"SLOs Write","display_type":"write","group_name":"Service Level Objectives","name":"slos_write","restricted":false}},{"id":"f8e941ce-e746-11ec-b22d-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-08T16:20:55.13941Z","description":"Apply, edit, and delete SLO status corrections. A user with this permission can make status corrections, even if they do not have permission to edit those SLOs.","display_name":"SLOs Status Corrections","display_type":"write","group_name":"Service Level Objectives","name":"slos_corrections","restricted":false}},{"id":"4784b11c-f311-11ec-a5f5-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-23T16:26:48.150556Z","description":"Create, update, and delete monitor configuration policies.","display_name":"Monitor Configuration Policy Write","display_type":"write","group_name":"Monitors","name":"monitor_config_policy_write","restricted":false}},{"id":"ee68fba9-173a-11ed-b00b-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-08T16:55:39.377188Z","description":"Add, modify, and delete service catalog definitions when those definitions are maintained by Datadog.","display_name":"Service Catalog Write","display_type":"write","group_name":"APM","name":"apm_service_catalog_write","restricted":false}},{"id":"ee68fba8-173a-11ed-b00b-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-08T16:55:39.374377Z","description":"View service catalog and service definitions.","display_name":"Service Catalog Read","display_type":"read","group_name":"APM","name":"apm_service_catalog_read","restricted":false}},{"id":"5b2c3e28-1761-11ed-b018-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-08T21:30:42.723663Z","description":"Add and edit forwarding destinations and rules for logs.","display_name":"Logs Write Forwarding Rules","display_type":"write","group_name":"Log Management","name":"logs_write_forwarding_rules","restricted":false}},{"id":"6be119a6-1cd8-11ed-b185-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-15T20:25:36.677197Z","description":"Deprecated. Watchdog Insights endpoints are now OPEN.","display_name":"Watchdog Insights Read","display_type":"read","group_name":"Watchdog","name":"watchdog_insights_read","restricted":false}},{"id":"36e2a22e-248a-11ed-b405-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-25T15:25:56.32517Z","description":"Resolve connections.","display_name":"Connections Resolve","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"connections_resolve","restricted":false}},{"id":"4ee674f6-55d9-11ed-b10d-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.834253Z","description":"View blocked attackers.","display_name":"Application Security Management Protect Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_protect_read","restricted":false}},{"id":"4ee7e46c-55d9-11ed-b10e-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.843656Z","description":"Manage blocked attackers.","display_name":"Application Security Management Protect Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_protect_write","restricted":false}},{"id":"4ee5731c-55d9-11ed-b10b-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.827076Z","description":"View whether Application Security Management has been enabled or disabled on services via 1-click enablement with Remote Configuration.","display_name":"Application Security Management 1-click Enablement Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_activation_read","restricted":false}},{"id":"4ee60688-55d9-11ed-b10c-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.831383Z","description":"Enable or disable Application Security Management on services via 1-click enablement.","display_name":"Application Security Management 1-click Enablement Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_activation_write","restricted":false}},{"id":"99474cc2-5a12-11ed-b547-da7ad0900002","type":"permissions","attributes":{"created":"2022-11-01T18:25:44.584393Z","description":"View and run Apps in App Builder.","display_name":"Apps View","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_run","restricted":false}},{"id":"9948271e-5a12-11ed-b548-da7ad0900002","type":"permissions","attributes":{"created":"2022-11-01T18:25:44.590588Z","description":"Create, edit, and delete Apps in App Builder.","display_name":"Apps Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_write","restricted":false}},{"id":"8247acc4-7a4c-11ed-958f-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T18:40:54.018521Z","description":"View Cases.","display_name":"Cases Read","display_type":"read","group_name":"Case and Incident Management","name":"cases_read","restricted":false}},{"id":"824851a6-7a4c-11ed-9590-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T18:40:54.02328Z","description":"Create and update cases.","display_name":"Cases Write","display_type":"write","group_name":"Case and Incident Management","name":"cases_write","restricted":false}},{"id":"77d5f45e-7a5a-11ed-8abf-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T20:20:49.450768Z","description":"Edit APM Remote Configuration.","display_name":"APM Remote Configuration Write","display_type":"write","group_name":"APM","name":"apm_remote_configuration_write","restricted":false}},{"id":"77d55a44-7a5a-11ed-8abe-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T20:20:49.446298Z","description":"View APM Remote Configuration.","display_name":"APM Remote Configuration Read","display_type":"read","group_name":"APM","name":"apm_remote_configuration_read","restricted":false}},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.149406Z","description":"View CI Visibility.","display_name":"CI Visibility Read","display_type":"read","group_name":"Software Delivery","name":"ci_visibility_read","restricted":true}},{"id":"6c5c1090-7aff-11ed-a5cf-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.157428Z","description":"Edit flaky tests and delete Test Services.","display_name":"CI Visibility Tests Write","display_type":"write","group_name":"Software Delivery","name":"ci_visibility_write","restricted":false}},{"id":"6c59ae72-7aff-11ed-a5cc-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.141217Z","description":"Edit CI Provider settings. Manage GitHub accounts and repositories for enabling CI Visibility and job logs collection.","display_name":"CI Provider Settings Write","display_type":"write","group_name":"Software Delivery","name":"ci_provider_settings_write","restricted":false}},{"id":"6c5b7428-7aff-11ed-a5ce-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.153418Z","description":"Configure CI Visibility settings. Set a repository default branch, enable GitHub comments, and delete test services.","display_name":"CI Visibility Settings Write","display_type":"write","group_name":"Software Delivery","name":"ci_visibility_settings_write","restricted":false}},{"id":"6c5d0892-7aff-11ed-a5d0-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.163771Z","description":"Enable or disable Intelligent Test Runner.","display_name":"Intelligent Test Runner Activation Write","display_type":"write","group_name":"Software Delivery","name":"intelligent_test_runner_activation_write","restricted":false}},{"id":"6c5de654-7aff-11ed-a5d1-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.16943Z","description":"Edit Intelligent Test Runner settings, such as modifying ITR excluded branch list.","display_name":"Intelligent Test Runner Settings Write","display_type":"write","group_name":"Software Delivery","name":"intelligent_test_runner_settings_write","restricted":false}},{"id":"c13a2368-7d61-11ed-b5b7-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-16T16:50:32.545882Z","description":"View data in Continuous Profiler.","display_name":"Continuous Profiler Read","display_type":"read","group_name":"APM","name":"continuous_profiler_read","restricted":false}},{"id":"1d76ecfa-9771-11ed-9c2f-da7ad0900002","type":"permissions","attributes":{"created":"2023-01-18T20:45:59.977837Z","description":"Manage Teams. Create, delete, rename, and edit metadata of all Teams. To control Team membership across all Teams, use the User Access Manage permission.","display_name":"Teams Manage","display_type":"write","group_name":"Teams","name":"teams_manage","restricted":false}},{"id":"ca6bfb3a-b44f-11ed-adb2-da7ad0900002","type":"permissions","attributes":{"created":"2023-02-24T14:30:30.983679Z","description":"View a list of findings that include both misconfigurations and identity risks.","display_name":"Security Monitoring Findings Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_findings_read","restricted":false}},{"id":"4dc3eec6-b468-11ed-8539-da7ad0900002","type":"permissions","attributes":{"created":"2023-02-24T17:25:59.263037Z","description":"View Incidents Notification settings.","display_name":"Incident Notification Settings Read","display_type":"read","group_name":"Case and Incident Management","name":"incident_notification_settings_read","restricted":false}},{"id":"4dc4094c-b468-11ed-853a-da7ad0900002","type":"permissions","attributes":{"created":"2023-02-24T17:25:59.263037Z","description":"Configure Incidents Notification settings.","display_name":"Incident Notification Settings Write","display_type":"write","group_name":"Case and Incident Management","name":"incident_notification_settings_write","restricted":false}},{"id":"35dd33ea-ca2e-11ed-bca0-da7ad0900002","type":"permissions","attributes":{"created":"2023-03-24T10:25:33.934187Z","description":"Edit CI Ingestion Control exclusion filters.","display_name":"CI Visibility Ingestion Control Write","display_type":"write","group_name":"Software Delivery","name":"ci_ingestion_control_write","restricted":false}},{"id":"36bf3d0a-ccc0-11ed-9453-da7ad0900002","type":"permissions","attributes":{"created":"2023-03-27T16:55:44.263627Z","description":"Edit Error Tracking issues.","display_name":"Error Tracking Issue Write","display_type":"write","group_name":"Error Tracking","name":"error_tracking_write","restricted":false}},{"id":"f416f55e-db3f-11ed-8028-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-15T03:45:24.289668Z","description":"Manage Watchdog Alerts.","display_name":"Watchdog Alerts Write","display_type":"write","group_name":"Watchdog","name":"watchdog_alerts_write","restricted":false}},{"id":"f416b1ac-db3f-11ed-8027-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-15T03:45:24.289668Z","description":"Modify Saved Views across all Datadog products.","display_name":"Saved Views Write","display_type":"write","group_name":"Cross-Product Features","name":"saved_views_write","restricted":false}},{"id":"4e61a95e-de98-11ed-aa23-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-19T09:55:24.976379Z","description":"Read Client Tokens. Unlike API keys, client tokens may be exposed client-side in JavaScript code for web browsers and other clients to send data to Datadog.","display_name":"Client Tokens Read","display_type":"read","group_name":"API and Application Keys","name":"client_tokens_read","restricted":false}},{"id":"4e61ea18-de98-11ed-aa24-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-19T09:55:24.976379Z","description":"Create and edit Client Tokens. Unlike API keys, client tokens may be exposed client-side in JavaScript code for web browsers and other clients to send data to Datadog.","display_name":"Client Tokens Write","display_type":"write","group_name":"API and Application Keys","name":"client_tokens_write","restricted":false}},{"id":"a4316eb8-f438-11ed-8af2-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-16T22:26:02.839419Z","description":"Read Event Correlation Configuration data such as Correlation Rules and Settings.","display_name":"Event Correlation Config Read","display_type":"read","group_name":"Events","name":"event_correlation_config_read","restricted":false}},{"id":"a431bf12-f438-11ed-8af3-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-16T22:26:02.839419Z","description":"Manage Event Correlation Configuration such as Correlation Rules and Settings.","display_name":"Event Correlation Config Write","display_type":"write","group_name":"Events","name":"event_correlation_config_write","restricted":false}},{"id":"8352cf04-f6ac-11ed-9ec7-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-20T01:20:31.639587Z","description":"Manage general event configuration such as API Emails.","display_name":"Event Config Write","display_type":"write","group_name":"Events","name":"event_config_write","restricted":false}},{"id":"3a48350c-f9bc-11ed-b81c-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-23T22:50:34.532448Z","description":"Mute CSPM Findings.","display_name":"Security Monitoring Findings Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_findings_write","restricted":false}},{"id":"a773e3d8-fff2-11ed-965c-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-31T20:35:17.490437Z","description":"View Cloud Cost pages. This does not restrict access to the cloud cost data source in dashboards and notebooks.","display_name":"Cloud Cost Management Read","display_type":"read","group_name":"Cloud Cost Management","name":"cloud_cost_management_read","restricted":false}},{"id":"a77452c8-fff2-11ed-965d-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-31T20:35:17.490437Z","description":"Configure cloud cost accounts and global customizations.","display_name":"Cloud Cost Management Write","display_type":"write","group_name":"Cloud Cost Management","name":"cloud_cost_management_write","restricted":false}},{"id":"a51b375a-ff73-11ed-8c18-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-31T05:26:07.469293Z","description":"Add and change tags on hosts.","display_name":"Host Tags Write","display_type":"write","group_name":"Metrics","name":"host_tags_write","restricted":false}},{"id":"61f9891a-0070-11ee-9c3f-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-01T11:35:17.513706Z","description":"Create CI Visibility pipeline spans using the API.","display_name":"CI Visibility Pipelines Write","display_type":"write","group_name":"Software Delivery","name":"ci_visibility_pipelines_write","restricted":false}},{"id":"1377d9e4-0ec7-11ee-aebc-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-19T17:31:08.295856Z","description":"View Quality Gate Rules.","display_name":"Quality Gate Rules Read","display_type":"read","group_name":"Software Delivery","name":"quality_gate_rules_read","restricted":false}},{"id":"1377ff28-0ec7-11ee-aebd-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-19T17:31:08.295856Z","description":"Edit Quality Gate Rules.","display_name":"Quality Gate Rules Write","display_type":"write","group_name":"Software Delivery","name":"quality_gate_rules_write","restricted":false}},{"id":"cc8cd958-11eb-11ee-ade2-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-23T17:31:34.182629Z","description":"Edit metadata on metrics.","display_name":"Metrics Metadata Write","display_type":"write","group_name":"Metrics","name":"metrics_metadata_write","restricted":false}},{"id":"b1adb6e8-0949-11ee-b2c5-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-12T17:51:01.32545Z","description":"Delete data from RUM.","display_name":"RUM Delete Data","display_type":"write","group_name":"Real User Monitoring","name":"rum_delete_data","restricted":false}},{"id":"b1ad77e6-0949-11ee-b2c3-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-12T17:51:01.32545Z","description":"Update status or assignee of vulnerabilities.","display_name":"Vulnerability Management Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_vm_write","restricted":false}},{"id":"b1adb5da-0949-11ee-b2c4-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-12T17:51:01.32545Z","description":"Create or modify Reference Tables.","display_name":"Reference Tables Write","display_type":"write","group_name":"Reference Tables","name":"reference_tables_write","restricted":false}},{"id":"0efeff18-1cec-11ee-992d-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-07T17:31:08.450865Z","description":"Create, update, and delete RUM playlists. Add and remove sessions from RUM playlists.","display_name":"RUM Playlist Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_playlist_write","restricted":false}},{"id":"6c5ce898-21a4-11ee-99ef-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-13T17:40:57.140947Z","description":"Delete pipelines from your organization.","display_name":"Observability Pipelines Delete","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_delete","restricted":false}},{"id":"6c5ce992-21a4-11ee-99f0-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-13T17:40:57.140947Z","description":"Deploy pipelines in your organization.","display_name":"Observability Pipelines Deploy","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_deploy","restricted":false}},{"id":"785177a6-20da-11ee-bed7-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-12T17:35:18.858294Z","description":"Create custom metrics from processes.","display_name":"Processes Generate Metrics","display_type":"write","group_name":"Processes","name":"processes_generate_metrics","restricted":false}},{"id":"7850e390-20da-11ee-bed6-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-12T17:35:18.858294Z","description":"Delete API Keys for your organization.","display_name":"API Keys Delete","display_type":"write","group_name":"API and Application Keys","name":"api_keys_delete","restricted":false}},{"id":"6c5c79b2-21a4-11ee-99ee-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-13T17:40:57.140947Z","description":"Collect an Agent flare with Fleet Automation.","display_name":"Agent Flare Collection","display_type":"write","group_name":"Fleet Automation","name":"agent_flare_collection","restricted":false}},{"id":"807a82d8-2724-11ee-84ec-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-20T17:40:22.283891Z","description":"Control which organizations can query your organization''s data.","display_name":"Org Connections Write","display_type":"write","group_name":"Access Management","name":"org_connections_write","restricted":false}},{"id":"8079f2e6-2724-11ee-84eb-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-20T17:40:22.283891Z","description":"View which organizations can query data from your organization. Query data from other organizations.","display_name":"Org Connections Read","display_type":"read","group_name":"Access Management","name":"org_connections_read","restricted":false}},{"id":"1b8f54cc-2ca4-11ee-9e72-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-27T17:36:24.369352Z","description":"Manage facets for products other than Log Management, such as APM Traces. To modify Log Facets, use Logs Write Facets.","display_name":"Facets Write","display_type":"write","group_name":"Cross-Product Features","name":"facets_write","restricted":false}},{"id":"de0e73c2-3d23-11ee-aa7d-da7ad0900002","type":"permissions","attributes":{"created":"2023-08-17T17:31:15.369551Z","description":"Read Rule Suppressions.","display_name":"Security Suppressions Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_suppressions_read","restricted":false}},{"id":"de0eb666-3d23-11ee-aa7e-da7ad0900002","type":"permissions","attributes":{"created":"2023-08-17T17:31:15.369551Z","description":"Write Rule Suppressions.","display_name":"Security Suppressions Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_suppressions_write","restricted":false}},{"id":"5356dfd2-3dee-11ee-b07b-da7ad0900002","type":"permissions","attributes":{"created":"2023-08-18T17:40:30.474557Z","description":"Edit Static Analysis settings.","display_name":"Static Analysis Settings Write","display_type":"write","group_name":"Software Delivery","name":"static_analysis_settings_write","restricted":false}},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions","attributes":{"created":"2023-09-09T00:06:00.708335Z","description":"View CD Visibility.","display_name":"CD Visibility Read","display_type":"read","group_name":"Software Delivery","name":"cd_visibility_read","restricted":true}},{"id":"263eff86-6925-11ee-acc0-da7ad0900002","type":"permissions","attributes":{"created":"2023-10-12T17:31:17.142666Z","description":"Write NDM Netflow port mappings.","display_name":"NDM Netflow Port Mappings Write","display_type":"write","group_name":"Network Device Monitoring","name":"ndm_netflow_port_mappings_write","restricted":false}},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions","attributes":{"created":"2023-10-13T17:31:17.311029Z","description":"View infrastructure, application code and library vulnerabilities. This does not restrict access to the vulnerability data source through the API or inventory SQL.","display_name":"Vulnerability Management Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_vm_read","restricted":true}},{"id":"7c7836fc-6f6e-11ee-8cdd-da7ad0900002","type":"permissions","attributes":{"created":"2023-10-20T17:31:22.039614Z","description":"Create or modify Dynamic Instrumentation probes that capture function state: local variables, method arguments, fields, and return value or thrown exception.","display_name":"Dynamic Instrumentation Capture Variables","display_type":"write","group_name":"APM","name":"debugger_capture_variables","restricted":false}},{"id":"10098bc8-984b-11ee-9b69-da7ad0900002","type":"permissions","attributes":{"created":"2023-12-11T17:31:05.405902Z","description":"Disable Error Tracking, edit inclusion filters, and edit rate limit.","display_name":"Error Tracking Settings Write","display_type":"write","group_name":"Error Tracking","name":"error_tracking_settings_write","restricted":false}},{"id":"10091e90-984b-11ee-9b68-da7ad0900002","type":"permissions","attributes":{"created":"2023-12-11T17:31:05.405902Z","description":"Add or change Error Tracking exclusion filters.","display_name":"Error Tracking Exclusion Filters Write","display_type":"write","group_name":"Error Tracking","name":"error_tracking_exclusion_filters_write","restricted":false}},{"id":"1b572396-ba15-11ee-9e19-da7ad0900002","type":"permissions","attributes":{"created":"2024-01-23T17:30:31.083178Z","description":"View integrations and their configurations.","display_name":"Integrations Read","display_type":"read","group_name":"Integrations","name":"integrations_read","restricted":false}},{"id":"bdda759a-c1f0-11ee-b428-da7ad0900002","type":"permissions","attributes":{"created":"2024-02-02T17:30:21.655244Z","description":"Add, modify, and delete API catalog definitions.","display_name":"API Catalog Write","display_type":"write","group_name":"APM","name":"apm_api_catalog_write","restricted":false}},{"id":"bdda0cea-c1f0-11ee-b427-da7ad0900002","type":"permissions","attributes":{"created":"2024-02-02T17:30:21.655244Z","description":"View API catalog and API definitions.","display_name":"API Catalog Read","display_type":"read","group_name":"APM","name":"apm_api_catalog_read","restricted":false}},{"id":"27b95c32-ccf1-11ee-ae65-da7ad0900002","type":"permissions","attributes":{"created":"2024-02-16T17:31:02.07009Z","description":"Create or edit trend metrics from container images.","display_name":"Containers Write Image Trend Metrics","display_type":"write","group_name":"Containers","name":"containers_generate_image_metrics","restricted":false}},{"id":"a82d01ce-e228-11ee-870e-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-14T17:31:14.314721Z","description":"Extend the retention of Session Replays.","display_name":"RUM Session Replay Extend Retention","display_type":"write","group_name":"Real User Monitoring","name":"rum_extend_retention","restricted":false}},{"id":"50c173fc-e54d-11ee-bb23-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-18T17:31:12.515412Z","description":"View and search Private Action Runners for Workflow Automation and App Builder.","display_name":"Private Action Runner Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"on_prem_runner_read","restricted":false}},{"id":"50c1dd10-e54d-11ee-bb24-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-18T17:31:12.515412Z","description":"Attach a Private Action Runner to a connection.","display_name":"Private Action Runner Use","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"on_prem_runner_use","restricted":false}},{"id":"50c1e0b2-e54d-11ee-bb25-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-18T17:31:12.515412Z","description":"Create and edit Private Action Runners for Workflow Automation and App Builder.","display_name":"Private Action Runner Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"on_prem_runner_write","restricted":false}},{"id":"ca06b2b4-f5cd-11ee-9e77-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-08T17:31:10.159381Z","description":"Edit the settings for DORA.","display_name":"DORA Settings Write","display_type":"write","group_name":"Software Delivery","name":"dora_settings_write","restricted":false}},{"id":"ce892b8a-00ce-11ef-8fca-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-22T17:36:10.012624Z","description":"Upgrade Datadog Agents with Fleet Automation.","display_name":"Agent Upgrade","display_type":"write","group_name":"Fleet Automation","name":"agent_upgrade_write","restricted":false}},{"id":"f5f475d4-0197-11ef-be1f-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).","display_name":"Read Continuous Profiler Profile-Guided Optimization (PGO) Data","display_type":"read","group_name":"APM","name":"continuous_profiler_pgo_read","restricted":false}},{"id":"f5f4d31c-0197-11ef-be20-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"Add or remove but not edit Oracle Cloud integration configurations.","display_name":"OCI Configurations Manage","display_type":"write","group_name":"Integrations","name":"oci_configurations_manage","restricted":false}},{"id":"f5f4e8fc-0197-11ef-be21-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit AWS integration configurations.","display_name":"AWS Configuration Read","display_type":"read","group_name":"Integrations","name":"aws_configuration_read","restricted":false}},{"id":"f5f4e9a6-0197-11ef-be22-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit Azure integration configurations.","display_name":"Azure Configuration Read","display_type":"read","group_name":"Integrations","name":"azure_configuration_read","restricted":false}},{"id":"f5f4ec44-0197-11ef-be23-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit GCP integration configurations.","display_name":"GCP Configuration Read","display_type":"read","group_name":"Integrations","name":"gcp_configuration_read","restricted":false}},{"id":"f5f4f068-0197-11ef-be24-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit Oracle Cloud integration configurations.","display_name":"OCI Configuration Read","display_type":"read","group_name":"Integrations","name":"oci_configuration_read","restricted":false}},{"id":"e2310daa-08a9-11ef-8653-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove AWS integration configurations.","display_name":"AWS Configuration Edit","display_type":"write","group_name":"Integrations","name":"aws_configuration_edit","restricted":false}},{"id":"e23194fa-08a9-11ef-8654-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove Azure integration configurations.","display_name":"Azure Configuration Edit","display_type":"write","group_name":"Integrations","name":"azure_configuration_edit","restricted":false}},{"id":"e2319608-08a9-11ef-8655-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove GCP integration configurations.","display_name":"GCP Configuration Edit","display_type":"write","group_name":"Integrations","name":"gcp_configuration_edit","restricted":false}},{"id":"e231ca6a-08a9-11ef-8656-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove Oracle Cloud integration configurations.","display_name":"OCI Configuration Edit","display_type":"write","group_name":"Integrations","name":"oci_configuration_edit","restricted":false}},{"id":"8c3a9cde-0973-11ef-a2be-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-03T17:35:35.030875Z","description":"View LLM Observability.","display_name":"LLM Observability Read","display_type":"read","group_name":"LLM Observability","name":"llm_observability_read","restricted":false}},{"id":"cb5a53dc-13aa-11ef-9749-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-16T17:36:14.883078Z","description":"Manage your organization''s flex logs configuration.","display_name":"Flex Logs Configuration Write","display_type":"write","group_name":"Log Management","name":"flex_logs_config_write","restricted":false}},{"id":"3cf14194-2298-11ef-9d71-da7ad0900002","type":"permissions","attributes":{"created":"2024-06-04T17:31:12.458506Z","description":"View Reference Tables.","display_name":"Reference Tables Read","display_type":"read","group_name":"Reference Tables","name":"reference_tables_read","restricted":false}},{"id":"2757c192-389a-11ef-b37c-da7ad0900002","type":"permissions","attributes":{"created":"2024-07-02T17:40:20.794842Z","description":"Create Fleet Automation Policies.","display_name":"Fleet Policies Write","display_type":"write","group_name":"Fleet Automation","name":"fleet_policies_write","restricted":false}},{"id":"27583ae6-389a-11ef-b37d-da7ad0900002","type":"permissions","attributes":{"created":"2024-07-02T17:40:20.794842Z","description":"Enable, disable and update custom resource indexing.","display_name":"Custom Resource Definition Write","display_type":"write","group_name":"Orchestration","name":"orchestration_custom_resource_definitions_write","restricted":false}},{"id":"ce67705a-5419-11ef-8c73-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-06T17:32:08.55681Z","description":"View Code Analysis.","display_name":"Code Analysis Read","display_type":"read","group_name":"Software Delivery","name":"code_analysis_read","restricted":false}},{"id":"ce67efb2-5419-11ef-8c74-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-06T17:32:08.55681Z","description":"Enable, disable, and configure workload autoscaling. Apply workload scaling recommendations.","display_name":"Workload Scaling Write","display_type":"write","group_name":"Orchestration","name":"orchestration_workload_scaling_write","restricted":false}},{"id":"ad8b4c4a-5990-11ef-b34b-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-13T16:25:39.351685Z","description":"Create, Update, and Delete LLM Observability resources including User Defined Evaluations, OOTB Evaluations, and User Defined Topics.","display_name":"LLM Observability Write","display_type":"write","group_name":"LLM Observability","name":"llm_observability_write","restricted":false}},{"id":"5377e20c-6563-11ef-bd11-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-28T17:31:14.83001Z","description":"View captured events of pipelines in your organization.","display_name":"Observability Pipelines Live Capture Read","display_type":"read","group_name":"Observability Pipelines","name":"observability_pipelines_capture_read","restricted":false}},{"id":"53784710-6563-11ef-bd12-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-28T17:31:14.83001Z","description":"Capture live events of pipelines in your organization.","display_name":"Observability Pipelines Live Capture Write","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_capture_write","restricted":false}},{"id":"bf446b0a-60ad-11ef-83c4-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-22T17:41:22.628257Z","description":"Allows read access to the data within the Actions Datastore.","display_name":"Actions Datastore Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"apps_datastore_read","restricted":false}},{"id":"bf446e2a-60ad-11ef-83c5-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-22T17:41:22.628257Z","description":"Allows modification of data within the Actions Datastore, including adding, editing, and deleting records.","display_name":"Actions Datastore Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_datastore_write","restricted":false}},{"id":"bf4407e6-60ad-11ef-83c3-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-22T17:41:22.628257Z","description":"Allows management of the Actions Datastore, including creating, updating, and deleting the datastore itself.","display_name":"Actions Datastore Manage","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_datastore_manage","restricted":false}},{"id":"5dffba8a-66f6-11ef-8976-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-30T17:36:19.679492Z","description":"View Security Pipelines.","display_name":"Security Pipelines Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_pipelines_read","restricted":false}},{"id":"5e0024fc-66f6-11ef-8977-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-30T17:36:19.679492Z","description":"Create, edit, and delete Security Pipelines.","display_name":"Security Pipelines Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_pipelines_write","restricted":false}},{"id":"503d01ea-751b-11ef-85ac-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-17T17:36:04.251012Z","description":"Create, delete and update connection groups.","display_name":"Connection Groups Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"connection_groups_write","restricted":false}},{"id":"479d4934-79e2-11ef-98d5-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-23T19:30:24.281417Z","description":"Allow quality gates evaluations.","display_name":"Quality Gates Evaluations","display_type":"read","group_name":"Software Delivery","name":"quality_gates_evaluations_read","restricted":false}},{"id":"bdc2acbe-7c1f-11ef-b362-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-26T15:55:24.124953Z","description":"Read and use connection groups.","display_name":"Connection Groups Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"connection_groups_read","restricted":false}},{"id":"824e509c-7c5c-11ef-ba38-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-26T23:10:23.67733Z","description":"Managing actions on Cloud Workload Security Agent Rules.","display_name":"Cloud Workload Security Agent Actions","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_cws_agent_rules_actions","restricted":false}},{"id":"a91ee0ba-8184-11ef-ac5a-da7ad0900002","type":"permissions","attributes":{"created":"2024-10-03T12:40:24.480611Z","description":"View RUM Retention filters data.","display_name":"RUM Retention Filters Read","display_type":"read","group_name":"Real User Monitoring","name":"rum_retention_filters_read","restricted":false}},{"id":"a91f5112-8184-11ef-ac5b-da7ad0900002","type":"permissions","attributes":{"created":"2024-10-03T12:40:24.480611Z","description":"Write RUM Retention filters.","display_name":"RUM Retention Filters Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_retention_filters_write","restricted":false}},{"id":"bc3f9ed4-8a3d-11ef-b5a4-da7ad0900002","type":"permissions","attributes":{"created":"2024-10-14T15:05:22.769126Z","description":"View and use DDSQL Editor.","display_name":"DDSQL Editor Read","display_type":"read","group_name":"DDSQL Editor","name":"ddsql_editor_read","restricted":false}},{"id":"a8c986a6-989a-11ef-873e-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-01T21:45:49.593207Z","description":"View the disaster recovery status.","display_name":"Datadog Disaster Recovery Read","display_type":"read","group_name":"Disaster Recovery","name":"disaster_recovery_status_read","restricted":false}},{"id":"a8ca1fda-989a-11ef-873f-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-01T21:45:49.593207Z","description":"Update the disaster recovery status.","display_name":"Datadog Disaster Recovery Write","display_type":"write","group_name":"Disaster Recovery","name":"disaster_recovery_status_write","restricted":false}},{"id":"ebae5be2-9d16-11ef-9394-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-07T14:45:24.068066Z","description":"Write RUM Settings.","display_name":"RUM Settings Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_settings_write","restricted":false}},{"id":"ebaf0448-9d16-11ef-9397-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-07T14:45:24.068066Z","description":"View Test Optimization.","display_name":"Test Optimization Read","display_type":"read","group_name":"Software Delivery","name":"test_optimization_read","restricted":false}},{"id":"ebaf05ba-9d16-11ef-9398-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-07T14:45:24.068066Z","description":"Manage flaky tests for Test Optimization.","display_name":"Test Optimization Write","display_type":"write","group_name":"Software Delivery","name":"test_optimization_write","restricted":false}},{"id":"09e34b76-a6b4-11ef-8ab9-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-19T20:22:46.198145Z","description":"Create, delete and update Test Optimization settings.","display_name":"Test Optimization Settings Write","display_type":"write","group_name":"Software Delivery","name":"test_optimization_settings_write","restricted":false}},{"id":"8babfb74-a90e-11ef-b4c3-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-22T20:15:40.970745Z","description":"Write comments into vulnerabilities.","display_name":"Security Comments Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_comments_write","restricted":false}},{"id":"8baca0ba-a90e-11ef-b4c4-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-22T20:15:40.970745Z","description":"Read comments of vulnerabilities.","display_name":"Security Comments Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_comments_read","restricted":false}},{"id":"6595b70a-b7fe-11ef-977d-da7ad0900002","type":"permissions","attributes":{"created":"2024-12-11T20:27:52.565232Z","description":"View Logs Workspaces.","display_name":"Read Logs Workspaces","display_type":"read","group_name":"Log Management","name":"logs_read_workspaces","restricted":false}},{"id":"6596753c-b7fe-11ef-977e-da7ad0900002","type":"permissions","attributes":{"created":"2024-12-11T20:27:52.565232Z","description":"Create, update, and delete Logs Workspaces.","display_name":"Write Logs Workspaces","display_type":"write","group_name":"Log Management","name":"logs_write_workspaces","restricted":false}},{"id":"bccba216-cd37-11ef-b636-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-07T20:41:14.612376Z","description":"View Audience Management data.","display_name":"Profiles Read","display_type":"read","group_name":"Product Analytics","name":"audience_management_read","restricted":false}},{"id":"bccc2ee8-cd37-11ef-b637-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-07T20:41:14.612376Z","description":"Modify Audience Management data.","display_name":"Profiles Write","display_type":"write","group_name":"Product Analytics","name":"audience_management_write","restricted":false}},{"id":"8da487f0-d2af-11ef-91c8-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-14T19:41:30.924708Z","description":"Read logs configuration.","display_name":"Logs Configuration Read","display_type":"read","group_name":"Log Management","name":"logs_read_config","restricted":false}},{"id":"1c23f168-da90-11ef-910a-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-24T20:16:35.403038Z","description":"View On-Call teams, schedules, escalation policies and overrides.","display_name":"On-Call Read","display_type":"read","group_name":"On-Call","name":"on_call_read","restricted":false}},{"id":"1c248fc4-da90-11ef-910b-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-24T20:16:35.403038Z","description":"Create, update, and delete On-Call teams, schedules and escalation policies.","display_name":"On-Call Write","display_type":"write","group_name":"On-Call","name":"on_call_write","restricted":false}},{"id":"1c24b292-da90-11ef-910c-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-24T20:16:35.403038Z","description":"Page On-Call teams and users.","display_name":"On-Call Page","display_type":"write","group_name":"On-Call","name":"on_call_page","restricted":false}},{"id":"c6d3a3e0-df47-11ef-abf4-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-30T20:21:24.316595Z","description":"View Error Tracking data.","display_name":"Error Tracking Read","display_type":"read","group_name":"Error Tracking","name":"error_tracking_read","restricted":false}},{"id":"66c075bc-e296-11ef-bba7-da7ad0900002","type":"permissions","attributes":{"created":"2025-02-04T01:21:46.862659Z","description":"Acknowledge, resolve pages and edit overrides. Allow users to configure their On-Call profile.","display_name":"On-Call Responder","display_type":"write","group_name":"On-Call","name":"on_call_respond","restricted":false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: 200 OK + code: 200 + duration: 115.64475ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -368,14 +402,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"wk7-sgd-q7y","layout_type":"ordered","notify_list":[],"restricted_roles":["f6288054-f421-11ef-ae18-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"3p2-bub-49m","layout_type":"ordered","notify_list":[],"restricted_roles":["ebd5f0cc-f427-11ef-b463-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740563765","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: - application/json Content-Type: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y + url: https://api.datadoghq.com/api/v1/dashboard/3p2-bub-49m method: PUT response: proto: HTTP/1.1 @@ -387,14 +421,14 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":131736869096210}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:37.996654+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["f6288054-f421-11ef-ae18-da7ad0900002"]} + {"id":"3p2-bub-49m","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740563765","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/3p2-bub-49m/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740563765","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":125479768852981}],"notify_list":[],"created_at":"2025-02-26T09:56:08.273025+00:00","modified_at":"2025-02-26T09:56:17.874885+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["ebd5f0cc-f427-11ef-b463-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 322.842291ms - - id: 11 + duration: 354.408167ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -410,7 +444,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/f6288054-f421-11ef-ae18-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/ebd5f0cc-f427-11ef-b463-da7ad0900002 method: GET response: proto: HTTP/1.1 @@ -418,16 +452,16 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1066 + content_length: 1067 uncompressed: false - body: '{"data":{"id":"f6288054-f421-11ef-ae18-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:37.27126Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:13:37.271871Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"ebd5f0cc-f427-11ef-b463-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:56:16.932924Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:56:16.933997Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740563765","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 122.914041ms - - id: 12 + duration: 141.195542ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -443,7 +477,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y + url: https://api.datadoghq.com/api/v1/dashboard/3p2-bub-49m method: GET response: proto: HTTP/1.1 @@ -455,14 +489,14 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":131736869096210}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:37.996654+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["f6288054-f421-11ef-ae18-da7ad0900002"]} + {"id":"3p2-bub-49m","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740563765","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/3p2-bub-49m/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740563765","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":125479768852981}],"notify_list":[],"created_at":"2025-02-26T09:56:08.273025+00:00","modified_at":"2025-02-26T09:56:17.874885+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["ebd5f0cc-f427-11ef-b463-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 173.503083ms - - id: 13 + duration: 165.286208ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -478,7 +512,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/f6288054-f421-11ef-ae18-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/ebd5f0cc-f427-11ef-b463-da7ad0900002 method: GET response: proto: HTTP/1.1 @@ -486,16 +520,16 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1066 + content_length: 1067 uncompressed: false - body: '{"data":{"id":"f6288054-f421-11ef-ae18-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:37.27126Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:13:37.271871Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"ebd5f0cc-f427-11ef-b463-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:56:16.932924Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:56:16.933997Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740563765","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 114.2665ms - - id: 14 + duration: 135.496ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -511,7 +545,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y + url: https://api.datadoghq.com/api/v1/dashboard/3p2-bub-49m method: GET response: proto: HTTP/1.1 @@ -523,14 +557,14 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":131736869096210}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:37.996654+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["f6288054-f421-11ef-ae18-da7ad0900002"]} + {"id":"3p2-bub-49m","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740563765","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/3p2-bub-49m/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740563765","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":125479768852981}],"notify_list":[],"created_at":"2025-02-26T09:56:08.273025+00:00","modified_at":"2025-02-26T09:56:17.874885+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["ebd5f0cc-f427-11ef-b463-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 151.164417ms - - id: 15 + duration: 234.873042ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -546,7 +580,7 @@ interactions: headers: Accept: - '*/*' - url: https://api.datadoghq.com/api/v2/roles/f6288054-f421-11ef-ae18-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/ebd5f0cc-f427-11ef-b463-da7ad0900002 method: DELETE response: proto: HTTP/1.1 @@ -560,8 +594,8 @@ interactions: headers: {} status: 204 No Content code: 204 - duration: 128.085666ms - - id: 16 + duration: 120.642959ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -573,14 +607,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"wk7-sgd-q7y","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"3p2-bub-49m","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740563765","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: - application/json Content-Type: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y + url: https://api.datadoghq.com/api/v1/dashboard/3p2-bub-49m method: PUT response: proto: HTTP/1.1 @@ -592,14 +626,14 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6343330068781590}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:42.566808+00:00","template_variable_presets":[],"tags":[]} + {"id":"3p2-bub-49m","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740563765","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/3p2-bub-49m/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740563765","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":603700364600758}],"notify_list":[],"created_at":"2025-02-26T09:56:08.273025+00:00","modified_at":"2025-02-26T09:56:22.648892+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 297.625125ms - - id: 17 + duration: 390.795209ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -615,7 +649,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y + url: https://api.datadoghq.com/api/v1/dashboard/3p2-bub-49m method: GET response: proto: HTTP/1.1 @@ -627,14 +661,14 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6343330068781590}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:42.566808+00:00","template_variable_presets":[],"tags":[]} + {"id":"3p2-bub-49m","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740563765","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/3p2-bub-49m/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740563765","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":603700364600758}],"notify_list":[],"created_at":"2025-02-26T09:56:08.273025+00:00","modified_at":"2025-02-26T09:56:22.648892+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 158.814125ms - - id: 18 + duration: 192.452667ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -650,7 +684,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y + url: https://api.datadoghq.com/api/v1/dashboard/3p2-bub-49m method: GET response: proto: HTTP/1.1 @@ -662,14 +696,14 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"wk7-sgd-q7y","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/wk7-sgd-q7y/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6343330068781590}],"notify_list":[],"created_at":"2025-02-26T09:13:26.275458+00:00","modified_at":"2025-02-26T09:13:42.566808+00:00","template_variable_presets":[],"tags":[]} + {"id":"3p2-bub-49m","title":"tf-TestAccDatadogDashboardRbac_updateToOpen-local-1740563765","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/3p2-bub-49m/tf-testaccdatadogdashboardrbacupdatetoopen-local-1740563765","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":603700364600758}],"notify_list":[],"created_at":"2025-02-26T09:56:08.273025+00:00","modified_at":"2025-02-26T09:56:22.648892+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 157.053125ms - - id: 19 + duration: 156.08225ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -685,7 +719,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/wk7-sgd-q7y + url: https://api.datadoghq.com/api/v1/dashboard/3p2-bub-49m method: DELETE response: proto: HTTP/1.1 @@ -697,10 +731,10 @@ interactions: content_length: -1 uncompressed: true body: | - {"deleted_dashboard_id":"wk7-sgd-q7y"} + {"deleted_dashboard_id":"3p2-bub-49m"} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 429.977416ms + duration: 204.463791ms diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.freeze b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.freeze index dd803f635..edd66dc64 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.freeze +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.freeze @@ -1 +1 @@ -2025-02-26T10:13:22.340467+01:00 \ No newline at end of file +2025-02-26T10:56:37.237628+01:00 \ No newline at end of file diff --git a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.yaml b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.yaml index 853e87d65..ff260467c 100644 --- a/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.yaml +++ b/datadog/tests/cassettes/TestAccDatadogDashboardRbac_updateToRbac.yaml @@ -13,7 +13,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"","layout_type":"ordered","notify_list":[],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740563797","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: @@ -32,13 +32,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"uht-8u6-e99","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/uht-8u6-e99/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6594815944689309}],"notify_list":[],"created_at":"2025-02-26T09:13:26.263075+00:00","modified_at":"2025-02-26T09:13:26.263075+00:00","template_variable_presets":[],"tags":[]} + {"id":"u25-kge-2ut","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740563797","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/u25-kge-2ut/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740563797","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6839785100304456}],"notify_list":[],"created_at":"2025-02-26T09:56:40.387614+00:00","modified_at":"2025-02-26T09:56:40.387614+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 573.690417ms + duration: 531.243916ms - id: 1 request: proto: HTTP/1.1 @@ -55,7 +55,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/uht-8u6-e99 + url: https://api.datadoghq.com/api/v1/dashboard/u25-kge-2ut method: GET response: proto: HTTP/1.1 @@ -67,13 +67,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"uht-8u6-e99","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/uht-8u6-e99/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6594815944689309}],"notify_list":[],"created_at":"2025-02-26T09:13:26.263075+00:00","modified_at":"2025-02-26T09:13:26.263075+00:00","template_variable_presets":[],"tags":[]} + {"id":"u25-kge-2ut","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740563797","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/u25-kge-2ut/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740563797","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6839785100304456}],"notify_list":[],"created_at":"2025-02-26T09:56:40.387614+00:00","modified_at":"2025-02-26T09:56:40.387614+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 170.074208ms + duration: 167.432416ms - id: 2 request: proto: HTTP/1.1 @@ -90,7 +90,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/uht-8u6-e99 + url: https://api.datadoghq.com/api/v1/dashboard/u25-kge-2ut method: GET response: proto: HTTP/1.1 @@ -102,13 +102,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"uht-8u6-e99","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/uht-8u6-e99/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6594815944689309}],"notify_list":[],"created_at":"2025-02-26T09:13:26.263075+00:00","modified_at":"2025-02-26T09:13:26.263075+00:00","template_variable_presets":[],"tags":[]} + {"id":"u25-kge-2ut","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740563797","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/u25-kge-2ut/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740563797","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6839785100304456}],"notify_list":[],"created_at":"2025-02-26T09:56:40.387614+00:00","modified_at":"2025-02-26T09:56:40.387614+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 289.081083ms + duration: 164.404291ms - id: 3 request: proto: HTTP/1.1 @@ -125,7 +125,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/uht-8u6-e99 + url: https://api.datadoghq.com/api/v1/dashboard/u25-kge-2ut method: GET response: proto: HTTP/1.1 @@ -137,13 +137,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"uht-8u6-e99","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/uht-8u6-e99/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740561202","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6594815944689309}],"notify_list":[],"created_at":"2025-02-26T09:13:26.263075+00:00","modified_at":"2025-02-26T09:13:26.263075+00:00","template_variable_presets":[],"tags":[]} + {"id":"u25-kge-2ut","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740563797","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/u25-kge-2ut/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740563797","is_read_only":false,"template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6839785100304456}],"notify_list":[],"created_at":"2025-02-26T09:56:40.387614+00:00","modified_at":"2025-02-26T09:56:40.387614+00:00","template_variable_presets":[],"tags":[]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 182.203917ms + duration: 161.604792ms - id: 4 request: proto: HTTP/1.1 @@ -156,7 +156,7 @@ interactions: remote_addr: "" request_uri: "" body: | - {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202"},"relationships":{},"type":"roles"}} + {"data":{"attributes":{"name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740563797"},"relationships":{},"type":"roles"}} form: {} headers: Accept: @@ -173,13 +173,13 @@ interactions: trailer: {} content_length: 984 uncompressed: false - body: '{"data":{"id":"f2d374ea-f421-11ef-8df0-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:31.680562Z","modified_at":"2025-02-26T09:13:31.681503Z","name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"fc288f20-f427-11ef-a5d3-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:56:44.318011Z","modified_at":"2025-02-26T09:56:44.319087Z","name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740563797","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 173.703667ms + duration: 136.584709ms - id: 5 request: proto: HTTP/1.1 @@ -196,7 +196,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/f2d374ea-f421-11ef-8df0-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/fc288f20-f427-11ef-a5d3-da7ad0900002 method: GET response: proto: HTTP/1.1 @@ -206,14 +206,48 @@ interactions: trailer: {} content_length: 1067 uncompressed: false - body: '{"data":{"id":"f2d374ea-f421-11ef-8df0-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:31.680562Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:13:31.681503Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"fc288f20-f427-11ef-a5d3-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:56:44.318011Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:56:44.319087Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740563797","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 127.956458ms + duration: 135.216125ms - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.datadoghq.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + url: https://api.datadoghq.com/api/v2/permissions + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: true + body: '{"data":[{"id":"984a2bd4-d3b4-11e8-a1ff-a7f660d43029","type":"permissions","attributes":{"created":"2018-10-19T15:35:23.734317Z","description":"Deprecated. Privileged Access (also known as Admin permission) has been replaced by more specific permissions: Access Management, Org Management, Billing Read/Write, Usage Read/Write.","display_name":"Privileged Access","display_type":"other","group_name":"General","name":"admin","restricted":false}},{"id":"984d2f00-d3b4-11e8-a200-bb47109e9987","type":"permissions","attributes":{"created":"2018-10-19T15:35:23.756736Z","description":"Deprecated. Standard Access has been replaced by more specific permissions.","display_name":"Standard Access","display_type":"other","group_name":"General","name":"standard","restricted":false}},{"id":"5e605652-dd12-11e8-9e53-375565b8970e","type":"permissions","attributes":{"created":"2018-10-31T13:39:19.72745Z","description":"Read log data, possibly scoped to one or more indexes. In order to read log data, a user must have both this permission and Logs Read Data. This permission can be granted in a limited capacity per index from the Logs interface or APIs. If granted via the Roles interface or API the permission has global scope. Restrictions are limited to the Log Management product.","display_name":"Logs Read Index Data","display_type":"read","group_name":"Log Management","name":"logs_read_index_data","restricted":false}},{"id":"62cc036c-dd12-11e8-9e54-db9995643092","type":"permissions","attributes":{"created":"2018-10-31T13:39:27.148615Z","description":"Read and modify all indexes in your account. This includes the ability to grant the Logs Read Index Data and Logs Write Exclusion Filters permission to other roles, for some or all indexes.","display_name":"Logs Modify Indexes","display_type":"write","group_name":"Log Management","name":"logs_modify_indexes","restricted":false}},{"id":"6f66600e-dd12-11e8-9e55-7f30fbb45e73","type":"permissions","attributes":{"created":"2018-10-31T13:39:48.292879Z","description":"View the live tail feed for all log indexes, even if otherwise specifically restricted.","display_name":"Logs Live Tail","display_type":"read","group_name":"Log Management","name":"logs_live_tail","restricted":false}},{"id":"7d7c98ac-dd12-11e8-9e56-93700598622d","type":"permissions","attributes":{"created":"2018-10-31T13:40:11.926613Z","description":"Add and change exclusion filters for all or some log indexes. Can be granted in a limited capacity per index to specific roles via the Logs interface or API. If granted from the Roles interface or API, the permission has global scope.","display_name":"Logs Write Exclusion Filters","display_type":"write","group_name":"Log Management","name":"logs_write_exclusion_filters","restricted":false}},{"id":"811ac4ca-dd12-11e8-9e57-676a7f0beef9","type":"permissions","attributes":{"created":"2018-10-31T13:40:17.996379Z","description":"Add and change log pipeline configurations, including the ability to grant the Logs Write Processors permission to other roles, for some or all pipelines.","display_name":"Logs Write Pipelines","display_type":"write","group_name":"Log Management","name":"logs_write_pipelines","restricted":false}},{"id":"84aa3ae4-dd12-11e8-9e58-a373a514ccd0","type":"permissions","attributes":{"created":"2018-10-31T13:40:23.969725Z","description":"Add and change some or all log processor configurations. Can be granted in a limited capacity per pipeline to specific roles via the Logs interface or API. If granted via the Roles interface or API the permission has global scope.","display_name":"Logs Write Processors","display_type":"write","group_name":"Log Management","name":"logs_write_processors","restricted":false}},{"id":"87b00304-dd12-11e8-9e59-cbeb5f71f72f","type":"permissions","attributes":{"created":"2018-10-31T13:40:29.040786Z","description":"Add and edit Log Archives.","display_name":"Logs Write Archives","display_type":"write","group_name":"Log Management","name":"logs_write_archives","restricted":false}},{"id":"979df720-aed7-11e9-99c6-a7eb8373165a","type":"permissions","attributes":{"created":"2019-07-25T12:27:39.640758Z","description":"Create custom metrics from logs.","display_name":"Logs Generate Metrics","display_type":"write","group_name":"Log Management","name":"logs_generate_metrics","restricted":false}},{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions","attributes":{"created":"2019-09-10T14:39:51.955175Z","description":"View dashboards.","display_name":"Dashboards Read","display_type":"read","group_name":"Dashboards","name":"dashboards_read","restricted":true}},{"id":"d90f6831-d3d8-11e9-a77a-4fd230ddbc6a","type":"permissions","attributes":{"created":"2019-09-10T14:39:51.962944Z","description":"Create and change dashboards.","display_name":"Dashboards Write","display_type":"write","group_name":"Dashboards","name":"dashboards_write","restricted":false}},{"id":"d90f6832-d3d8-11e9-a77a-bf8a2607f864","type":"permissions","attributes":{"created":"2019-09-10T14:39:51.967094Z","description":"Generate public and authenticated links to share dashboards or embeddable graphs externally.","display_name":"Dashboards Public Share","display_type":"write","group_name":"Dashboards","name":"dashboards_public_share","restricted":false}},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions","attributes":{"created":"2019-09-16T18:39:07.744297Z","description":"View monitors.","display_name":"Monitors Read","display_type":"read","group_name":"Monitors","name":"monitors_read","restricted":true}},{"id":"48ef71ea-d8b1-11e9-a77a-93f408470ad0","type":"permissions","attributes":{"created":"2019-09-16T18:39:15.597109Z","description":"Edit and delete individual monitors.","display_name":"Monitors Write","display_type":"write","group_name":"Monitors","name":"monitors_write","restricted":false}},{"id":"4d87d5f8-d8b1-11e9-a77a-eb9c8350d04f","type":"permissions","attributes":{"created":"2019-09-16T18:39:23.306702Z","description":"Set downtimes to suppress alerts from any monitor in an organization. Mute and unmute monitors. The ability to write monitors is not required to set downtimes.","display_name":"Manage Downtimes","display_type":"write","group_name":"Monitors","name":"monitors_downtime","restricted":false}},{"id":"1af86ce4-7823-11ea-93dc-d7cad1b1c6cb","type":"permissions","attributes":{"created":"2020-04-06T16:24:35.989108Z","description":"Read log data. In order to read log data, a user must have both this permission and Logs Read Index Data. This permission can be restricted with restriction queries. Restrictions are limited to the Log Management product.","display_name":"Logs Read Data","display_type":"read","group_name":"Log Management","name":"logs_read_data","restricted":false}},{"id":"b382b982-8535-11ea-93de-2bf1bdf20798","type":"permissions","attributes":{"created":"2020-04-23T07:40:27.966133Z","description":"Read Log Archives location and use it for rehydration.","display_name":"Logs Read Archives","display_type":"read","group_name":"Log Management","name":"logs_read_archives","restricted":false}},{"id":"7314eb20-aa58-11ea-95e2-6fb6e4a451d5","type":"permissions","attributes":{"created":"2020-06-09T13:52:25.279909Z","description":"Read Detection Rules.","display_name":"Security Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_rules_read","restricted":false}},{"id":"7b516476-aa58-11ea-95e2-93718cd56369","type":"permissions","attributes":{"created":"2020-06-09T13:52:39.099413Z","description":"Create and edit Detection Rules.","display_name":"Security Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_rules_write","restricted":false}},{"id":"80de1ec0-aa58-11ea-95e2-aff381626d5d","type":"permissions","attributes":{"created":"2020-06-09T13:52:48.410398Z","description":"View Security Signals.","display_name":"Security Signals Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_signals_read","restricted":false}},{"id":"58b412cc-ff6d-11eb-bc9c-da7ad0900002","type":"permissions","attributes":{"created":"2021-08-17T15:11:06.963503Z","description":"Modify Security Signals.","display_name":"Security Signals Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_signals_write","restricted":false}},{"id":"9ac1d8cc-e707-11ea-aa2d-73d37e989a9d","type":"permissions","attributes":{"created":"2020-08-25T19:17:23.539701Z","description":"Invite other users to your organization.","display_name":"User Access Invite","display_type":"write","group_name":"Access Management","name":"user_access_invite","restricted":false}},{"id":"9de604d8-e707-11ea-aa2d-93f1a783b3a3","type":"permissions","attributes":{"created":"2020-08-25T19:17:28.810412Z","description":"Disable users, manage user roles, manage SAML-to-role mappings, and configure logs restriction queries.","display_name":"User Access Manage","display_type":"write","group_name":"Access Management","name":"user_access_manage","restricted":false}},{"id":"46a301da-ec5c-11ea-aa9f-73bedeab67ee","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View and manage Application Keys owned by the user.","display_name":"User App Keys","display_type":"write","group_name":"API and Application Keys","name":"user_app_keys","restricted":false}},{"id":"46a301db-ec5c-11ea-aa9f-2fe72193d60e","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View Application Keys owned by all users in the organization.","display_name":"Org App Keys Read","display_type":"read","group_name":"API and Application Keys","name":"org_app_keys_read","restricted":false}},{"id":"46a301dc-ec5c-11ea-aa9f-13b33f8f46ea","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Manage Application Keys owned by all users in the organization.","display_name":"Org App Keys Write","display_type":"write","group_name":"API and Application Keys","name":"org_app_keys_write","restricted":false}},{"id":"46a301dd-ec5c-11ea-aa9f-97edfb345bc9","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View, search, and use Synthetics private locations.","display_name":"Synthetics Private Locations Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_private_location_read","restricted":false}},{"id":"46a301de-ec5c-11ea-aa9f-a73252c24806","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Create and delete private locations in addition to having access to the associated installation guidelines.","display_name":"Synthetics Private Locations Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_private_location_write","restricted":false}},{"id":"46a301df-ec5c-11ea-aa9f-970a9ae645e5","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View your organization''s subscription and payment method but not make edits.","display_name":"Billing Read","display_type":"read","group_name":"Billing and Usage","name":"billing_read","restricted":false}},{"id":"46a301e0-ec5c-11ea-aa9f-6ba6cc675d8c","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Manage your organization''s subscription and payment method.","display_name":"Billing Edit","display_type":"write","group_name":"Billing and Usage","name":"billing_edit","restricted":false}},{"id":"46a301e1-ec5c-11ea-aa9f-afa39f6f3e36","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"View your organization''s usage and usage attribution.","display_name":"Usage Read","display_type":"read","group_name":"Billing and Usage","name":"usage_read","restricted":false}},{"id":"46a301e2-ec5c-11ea-aa9f-1f511b7305fd","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Manage your organization''s usage attribution set-up.","display_name":"Usage Edit","display_type":"write","group_name":"Billing and Usage","name":"usage_edit","restricted":false}},{"id":"46a301e4-ec5c-11ea-aa9f-87282b3a50cc","type":"permissions","attributes":{"created":"2020-09-01T14:06:05.444705Z","description":"Edit and save tag configurations for custom metrics.","display_name":"Metric Tags Write","display_type":"write","group_name":"Metrics","name":"metric_tags_write","restricted":false}},{"id":"07c3c146-f7f8-11ea-acf6-0bd62b9ae60e","type":"permissions","attributes":{"created":"2020-09-16T08:38:44.242076Z","description":"Rehydrate logs from Archives.","display_name":"Logs Write Historical Views","display_type":"write","group_name":"Log Management","name":"logs_write_historical_view","restricted":false}},{"id":"2fbdac76-f923-11ea-adbc-07f3823e2b43","type":"permissions","attributes":{"created":"2020-09-17T20:20:10.834252Z","description":"View Audit Trail in your organization.","display_name":"Audit Trail Read","display_type":"read","group_name":"Compliance","name":"audit_logs_read","restricted":false}},{"id":"372896c4-f923-11ea-adbc-4fecd107156d","type":"permissions","attributes":{"created":"2020-09-17T20:20:23.279769Z","description":"List and retrieve the key values of all API Keys in your organization.","display_name":"API Keys Read","display_type":"read","group_name":"API and Application Keys","name":"api_keys_read","restricted":false}},{"id":"3e4d4d28-f923-11ea-adbc-e3565938c12e","type":"permissions","attributes":{"created":"2020-09-17T20:20:35.26443Z","description":"Create and rename API Keys for your organization.","display_name":"API Keys Write","display_type":"write","group_name":"API and Application Keys","name":"api_keys_write","restricted":false}},{"id":"4628ca54-f923-11ea-adbc-4b2b7f88c5e9","type":"permissions","attributes":{"created":"2020-09-17T20:20:48.446916Z","description":"View, search, and use Synthetics global variables.","display_name":"Synthetics Global Variable Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_global_variable_read","restricted":false}},{"id":"4ada6e36-f923-11ea-adbc-0788e5c5e3cf","type":"permissions","attributes":{"created":"2020-09-17T20:20:56.322003Z","description":"Create, edit, and delete global variables for Synthetics.","display_name":"Synthetics Global Variable Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_global_variable_write","restricted":false}},{"id":"5025ee24-f923-11ea-adbc-576ea241df8d","type":"permissions","attributes":{"created":"2020-09-17T20:21:05.205361Z","description":"List and view configured Synthetic tests and test results.","display_name":"Synthetics Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_read","restricted":false}},{"id":"55f4b5ec-f923-11ea-adbc-1bfa2334a755","type":"permissions","attributes":{"created":"2020-09-17T20:21:14.94914Z","description":"Create, edit, and delete Synthetic tests.","display_name":"Synthetics Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_write","restricted":false}},{"id":"5c6b88e2-f923-11ea-adbc-abf57d079420","type":"permissions","attributes":{"created":"2020-09-17T20:21:25.79416Z","description":"View the default settings for Synthetic Monitoring.","display_name":"Synthetics Default Settings Read","display_type":"read","group_name":"Synthetic Monitoring","name":"synthetics_default_settings_read","restricted":false}},{"id":"642eebe6-f923-11ea-adbc-eb617674ea04","type":"permissions","attributes":{"created":"2020-09-17T20:21:38.818771Z","description":"Edit the default settings for Synthetic Monitoring.","display_name":"Synthetics Default Settings Write","display_type":"write","group_name":"Synthetic Monitoring","name":"synthetics_default_settings_write","restricted":false}},{"id":"6ba32d22-0e1a-11eb-ba44-bf9a5aafaa39","type":"permissions","attributes":{"created":"2020-10-14T12:40:20.271908Z","description":"Create or edit Log Facets.","display_name":"Logs Write Facets","display_type":"write","group_name":"Log Management","name":"logs_write_facets","restricted":false}},{"id":"a42e94b2-1476-11eb-bd08-efda28c04248","type":"permissions","attributes":{"created":"2020-10-22T14:55:35.814239Z","description":"Create, disable, and use Service Accounts in your organization.","display_name":"Service Account Write","display_type":"write","group_name":"Access Management","name":"service_account_write","restricted":false}},{"id":"fcac2ad8-2843-11eb-8315-0fe47949d625","type":"permissions","attributes":{"created":"2020-11-16T19:43:23.198568Z","description":"Deprecated. Use the Integrations APIs to configure integrations. In order to configure integrations from the UI, a user must also have Standard Access.","display_name":"Integrations API","display_type":"other","group_name":"Integrations","name":"integrations_api","restricted":false}},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions","attributes":{"created":"2020-11-23T20:55:45.00611Z","description":"Read and query APM and Trace Analytics.","display_name":"APM Read","display_type":"read","group_name":"APM","name":"apm_read","restricted":true}},{"id":"43fa188e-2dce-11eb-84c0-835ad1fd6287","type":"permissions","attributes":{"created":"2020-11-23T20:55:49.190595Z","description":"Read trace retention filters. A user with this permission can view the retention filters page, list of filters, their statistics, and creation info.","display_name":"APM Retention Filters Read","display_type":"read","group_name":"APM","name":"apm_retention_filter_read","restricted":false}},{"id":"465cfe66-2dce-11eb-84c0-6baa888239fa","type":"permissions","attributes":{"created":"2020-11-23T20:55:53.194236Z","description":"Create, edit, and delete trace retention filters. A user with this permission can create new retention filters, and update or delete to existing retention filters.","display_name":"APM Retention Filters Write","display_type":"write","group_name":"APM","name":"apm_retention_filter_write","restricted":false}},{"id":"4916eebe-2dce-11eb-84c0-271cb2c672e8","type":"permissions","attributes":{"created":"2020-11-23T20:55:57.768261Z","description":"Access service ingestion pages. A user with this permission can view the service ingestion page, list of root services, their statistics, and creation info.","display_name":"APM Service Ingest Read","display_type":"read","group_name":"APM","name":"apm_service_ingest_read","restricted":false}},{"id":"4e3f02b4-2dce-11eb-84c0-2fca946a6efc","type":"permissions","attributes":{"created":"2020-11-23T20:56:06.419518Z","description":"Edit service ingestion pages'' root services. A user with this permission can edit the root service ingestion and generate a code snippet to increase ingestion per service.","display_name":"APM Service Ingest Write","display_type":"write","group_name":"APM","name":"apm_service_ingest_write","restricted":false}},{"id":"53950c54-2dce-11eb-84c0-a79ae108f6f8","type":"permissions","attributes":{"created":"2020-11-23T20:56:15.371926Z","description":"Set Apdex T value on any service. A user with this permission can set the T value from the Apdex graph on the service page.","display_name":"APM Apdex Manage Write","display_type":"write","group_name":"APM","name":"apm_apdex_manage_write","restricted":false}},{"id":"5cbe5f9c-2dce-11eb-84c0-872d3e9f1076","type":"permissions","attributes":{"created":"2020-11-23T20:56:30.742299Z","description":"Edit second primary tag selection. A user with this permission can modify the second primary tag dropdown in the APM settings page.","display_name":"APM Tag Management Write","display_type":"write","group_name":"APM","name":"apm_tag_management_write","restricted":false}},{"id":"61765026-2dce-11eb-84c0-833e230d1b8f","type":"permissions","attributes":{"created":"2020-11-23T20:56:38.658649Z","description":"Edit the operation name value selection. A user with this permission can modify the operation name list in the APM settings page and the operation name controller on the service page.","display_name":"APM Primary Operation Write","display_type":"write","group_name":"APM","name":"apm_primary_operation_write","restricted":false}},{"id":"04bc1cf2-340a-11eb-873a-43b973c760dd","type":"permissions","attributes":{"created":"2020-12-01T19:18:39.866516Z","description":"Configure Audit Trail in your organization.","display_name":"Audit Trail Write","display_type":"write","group_name":"Compliance","name":"audit_logs_write","restricted":false}},{"id":"8106300a-54f7-11eb-8cbc-7781a434a67b","type":"permissions","attributes":{"created":"2021-01-12T16:59:16.32448Z","description":"Create, edit, and delete RUM applications. Creating a RUM application automatically generates a Client Token. In order to create Client Tokens directly, a user needs the Client Tokens Write permission.","display_name":"RUM Apps Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_apps_write","restricted":false}},{"id":"edfd5e74-801f-11eb-96d8-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-08T15:06:59.006815Z","description":"Edit Dynamic Instrumentation configuration. Create or modify Dynamic Instrumentation probes that do not capture function state.","display_name":"Dynamic Instrumentation Write","display_type":"write","group_name":"APM","name":"debugger_write","restricted":false}},{"id":"edfd5e75-801f-11eb-96d8-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-08T15:06:59.010517Z","description":"View Dynamic Instrumentation configuration.","display_name":"Dynamic Instrumentation Read","display_type":"read","group_name":"APM","name":"debugger_read","restricted":false}},{"id":"bf0dcf7c-90af-11eb-9b82-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-29T16:56:46.394971Z","description":"View Sensitive Data Scanner configurations and scanning results.","display_name":"Data Scanner Read","display_type":"read","group_name":"Compliance","name":"data_scanner_read","restricted":false}},{"id":"bf0dcf7d-90af-11eb-9b82-da7ad0900002","type":"permissions","attributes":{"created":"2021-03-29T16:56:46.398584Z","description":"Edit Sensitive Data Scanner configurations.","display_name":"Data Scanner Write","display_type":"write","group_name":"Compliance","name":"data_scanner_write","restricted":false}},{"id":"7df222b6-a45c-11eb-a0af-da7ad0900002","type":"permissions","attributes":{"created":"2021-04-23T17:51:12.18734Z","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 \u0026 unsubscribing from apps in the marketplace, and enabling \u0026 disabling Remote Configuration for the entire organization.","display_name":"Org Management","display_type":"write","group_name":"Access Management","name":"org_management","restricted":false}},{"id":"98b984f4-b16d-11eb-a2c6-da7ad0900002","type":"permissions","attributes":{"created":"2021-05-10T08:56:23.676833Z","description":"Read Security Filters.","display_name":"Security Filters Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_filters_read","restricted":false}},{"id":"98b984f5-b16d-11eb-a2c6-da7ad0900002","type":"permissions","attributes":{"created":"2021-05-10T08:56:23.680551Z","description":"Create, edit, and delete Security Filters.","display_name":"Security Filters Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_filters_write","restricted":false}},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.255499Z","description":"View incidents in Datadog.","display_name":"Incidents Read","display_type":"read","group_name":"Case and Incident Management","name":"incident_read","restricted":true}},{"id":"12efc211-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.264369Z","description":"Create, view, and manage incidents in Datadog.","display_name":"Incidents Write","display_type":"write","group_name":"Case and Incident Management","name":"incident_write","restricted":false}},{"id":"12efc20f-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.259568Z","description":"View Incident Settings.","display_name":"Incident Settings Read","display_type":"read","group_name":"Case and Incident Management","name":"incident_settings_read","restricted":false}},{"id":"12efc210-d36c-11eb-a9b8-da7ad0900002","type":"permissions","attributes":{"created":"2021-06-22T15:11:09.261986Z","description":"Configure Incident Settings.","display_name":"Incident Settings Write","display_type":"write","group_name":"Case and Incident Management","name":"incident_settings_write","restricted":false}},{"id":"97971c1c-e895-11eb-b13c-da7ad0900002","type":"permissions","attributes":{"created":"2021-07-19T13:31:15.595771Z","description":"View Application Security Management Event Rules.","display_name":"Application Security Management Event Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_event_rule_read","restricted":false}},{"id":"97971c1d-e895-11eb-b13c-da7ad0900002","type":"permissions","attributes":{"created":"2021-07-19T13:31:15.598808Z","description":"Edit Application Security Management Event Rules.","display_name":"Application Security Management Event Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_event_rule_write","restricted":false}},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions","attributes":{"created":"2021-08-02T09:46:07.671535Z","description":"View RUM Applications data.","display_name":"RUM Apps Read","display_type":"read","group_name":"Real User Monitoring","name":"rum_apps_read","restricted":true}},{"id":"7605ef25-f376-11eb-b90b-da7ad0900002","type":"permissions","attributes":{"created":"2021-08-02T09:46:07.67464Z","description":"View Session Replays.","display_name":"RUM Session Replay Read","display_type":"read","group_name":"Real User Monitoring","name":"rum_session_replay_read","restricted":false}},{"id":"c95412b8-16c7-11ec-85c0-da7ad0900002","type":"permissions","attributes":{"created":"2021-09-16T08:26:27.366789Z","description":"Read Notification Rules.","display_name":"Security Notification Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_notification_profiles_read","restricted":false}},{"id":"c95412b9-16c7-11ec-85c0-da7ad0900002","type":"permissions","attributes":{"created":"2021-09-16T08:26:27.369359Z","description":"Create, edit, and delete Notification Rules.","display_name":"Security Notification Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_notification_profiles_write","restricted":false}},{"id":"26c79920-1703-11ec-85d2-da7ad0900002","type":"permissions","attributes":{"created":"2021-09-16T15:31:24.458963Z","description":"Create custom metrics from spans.","display_name":"APM Generate Metrics","display_type":"write","group_name":"APM","name":"apm_generate_metrics","restricted":false}},{"id":"f4473c60-4792-11ec-a27b-da7ad0900002","type":"permissions","attributes":{"created":"2021-11-17T10:41:43.074031Z","description":"Read Cloud Workload Security Agent Rules.","display_name":"Cloud Workload Security Agent Rules Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_cws_agent_rules_read","restricted":false}},{"id":"f4473c61-4792-11ec-a27b-da7ad0900002","type":"permissions","attributes":{"created":"2021-11-17T10:41:43.077905Z","description":"Create, edit, and delete Cloud Workload Security Agent Rules.","display_name":"Cloud Workload Security Agent Rules Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_cws_agent_rules_write","restricted":false}},{"id":"020a563c-56a4-11ec-a982-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-06T14:51:35.049129Z","description":"Add and change APM pipeline configurations.","display_name":"APM Pipelines Write","display_type":"write","group_name":"APM","name":"apm_pipelines_write","restricted":false}},{"id":"8e4d6b6e-5750-11ec-a9f4-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-07T11:26:43.807269Z","description":"View APM pipeline configurations.","display_name":"APM Pipelines Read","display_type":"read","group_name":"APM","name":"apm_pipelines_read","restricted":false}},{"id":"945b3bb4-5884-11ec-aa6d-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-09T00:11:38.956827Z","description":"View pipelines in your organization.","display_name":"Observability Pipelines Read","display_type":"read","group_name":"Observability Pipelines","name":"observability_pipelines_read","restricted":false}},{"id":"945b3bb5-5884-11ec-aa6d-da7ad0900002","type":"permissions","attributes":{"created":"2021-12-09T00:11:38.960833Z","description":"Edit pipelines in your organization.","display_name":"Observability Pipelines Write","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_write","restricted":false}},{"id":"f6e917a8-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.058412Z","description":"View workflows.","display_name":"Workflows Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"workflows_read","restricted":false}},{"id":"f6e917aa-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.061765Z","description":"Create, edit, and delete workflows.","display_name":"Workflows Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"workflows_write","restricted":false}},{"id":"f6e917a9-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.060079Z","description":"Run workflows.","display_name":"Workflows Run","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"workflows_run","restricted":false}},{"id":"f6e917a6-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.053432Z","description":"List and view available connections. Connections contain secrets that cannot be revealed.","display_name":"Connections Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"connections_read","restricted":false}},{"id":"f6e917a7-8502-11ec-bf20-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-03T15:07:12.05659Z","description":"Create and delete connections.","display_name":"Connections Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"connections_write","restricted":false}},{"id":"7a89ec40-8b69-11ec-812d-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-11T18:36:08.531989Z","description":"Access all private incidents in Datadog, even when not added as a responder.","display_name":"Private Incidents Global Access","display_type":"read","group_name":"Case and Incident Management","name":"incidents_private_global_access","restricted":false}},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions","attributes":{"created":"2022-03-02T18:51:05.04095Z","description":"View notebooks.","display_name":"Notebooks Read","display_type":"read","group_name":"Notebooks","name":"notebooks_read","restricted":true}},{"id":"b6bf9ac7-9a59-11ec-8480-da7ad0900002","type":"permissions","attributes":{"created":"2022-03-02T18:51:05.044683Z","description":"Create and change notebooks.","display_name":"Notebooks Write","display_type":"write","group_name":"Notebooks","name":"notebooks_write","restricted":false}},{"id":"e35c06b0-966b-11ec-83c9-da7ad0900002","type":"permissions","attributes":{"created":"2022-02-25T18:51:06.176019Z","description":"Delete data from your Logs, including entire indexes.","display_name":"Logs Delete Data","display_type":"write","group_name":"Log Management","name":"logs_delete_data","restricted":false}},{"id":"2108215e-b9b4-11ec-958e-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-11T16:26:24.106645Z","description":"Create custom metrics from RUM events.","display_name":"RUM Generate Metrics","display_type":"write","group_name":"Real User Monitoring","name":"rum_generate_metrics","restricted":false}},{"id":"7b1f5086-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.278829Z","description":"Add or remove but not edit AWS integration configurations.","display_name":"AWS Configurations Manage","display_type":"write","group_name":"Integrations","name":"aws_configurations_manage","restricted":false}},{"id":"7b1f5088-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.284056Z","description":"Add or remove but not edit Azure integration configurations.","display_name":"Azure Configurations Manage","display_type":"write","group_name":"Integrations","name":"azure_configurations_manage","restricted":false}},{"id":"7b1f5087-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.282282Z","description":"Add or remove but not edit GCP integration configurations.","display_name":"GCP Configurations Manage","display_type":"write","group_name":"Integrations","name":"gcp_configurations_manage","restricted":false}},{"id":"7b1f5089-c59e-11ec-aa32-da7ad0900002","type":"permissions","attributes":{"created":"2022-04-26T20:21:40.285834Z","description":"Install, uninstall, and configure integrations.","display_name":"Integrations Manage","display_type":"write","group_name":"Integrations","name":"manage_integrations","restricted":false}},{"id":"1afff448-d5e9-11ec-ae37-da7ad0900002","type":"permissions","attributes":{"created":"2022-05-17T13:56:09.870985Z","description":"Receive notifications and view currently configured notification settings.","display_name":"Usage Notifications Read","display_type":"read","group_name":"Billing and Usage","name":"usage_notifications_read","restricted":false}},{"id":"1afff449-d5e9-11ec-ae37-da7ad0900002","type":"permissions","attributes":{"created":"2022-05-17T13:56:09.876124Z","description":"Receive notifications and configure notification settings.","display_name":"Usage Notifications Write","display_type":"write","group_name":"Billing and Usage","name":"usage_notifications_write","restricted":false}},{"id":"6c87d3da-e5c5-11ec-b1d6-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-06T18:21:03.378896Z","description":"Schedule PDF reports from a dashboard.","display_name":"Dashboards Report Write","display_type":"write","group_name":"Dashboards","name":"generate_dashboard_reports","restricted":false}},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-08T16:20:55.142591Z","description":"View SLOs and status corrections.","display_name":"SLOs Read","display_type":"read","group_name":"Service Level Objectives","name":"slos_read","restricted":true}},{"id":"f8e941d0-e746-11ec-b22d-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-08T16:20:55.143869Z","description":"Create, edit, and delete SLOs.","display_name":"SLOs Write","display_type":"write","group_name":"Service Level Objectives","name":"slos_write","restricted":false}},{"id":"f8e941ce-e746-11ec-b22d-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-08T16:20:55.13941Z","description":"Apply, edit, and delete SLO status corrections. A user with this permission can make status corrections, even if they do not have permission to edit those SLOs.","display_name":"SLOs Status Corrections","display_type":"write","group_name":"Service Level Objectives","name":"slos_corrections","restricted":false}},{"id":"4784b11c-f311-11ec-a5f5-da7ad0900002","type":"permissions","attributes":{"created":"2022-06-23T16:26:48.150556Z","description":"Create, update, and delete monitor configuration policies.","display_name":"Monitor Configuration Policy Write","display_type":"write","group_name":"Monitors","name":"monitor_config_policy_write","restricted":false}},{"id":"ee68fba9-173a-11ed-b00b-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-08T16:55:39.377188Z","description":"Add, modify, and delete service catalog definitions when those definitions are maintained by Datadog.","display_name":"Service Catalog Write","display_type":"write","group_name":"APM","name":"apm_service_catalog_write","restricted":false}},{"id":"ee68fba8-173a-11ed-b00b-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-08T16:55:39.374377Z","description":"View service catalog and service definitions.","display_name":"Service Catalog Read","display_type":"read","group_name":"APM","name":"apm_service_catalog_read","restricted":false}},{"id":"5b2c3e28-1761-11ed-b018-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-08T21:30:42.723663Z","description":"Add and edit forwarding destinations and rules for logs.","display_name":"Logs Write Forwarding Rules","display_type":"write","group_name":"Log Management","name":"logs_write_forwarding_rules","restricted":false}},{"id":"6be119a6-1cd8-11ed-b185-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-15T20:25:36.677197Z","description":"Deprecated. Watchdog Insights endpoints are now OPEN.","display_name":"Watchdog Insights Read","display_type":"read","group_name":"Watchdog","name":"watchdog_insights_read","restricted":false}},{"id":"36e2a22e-248a-11ed-b405-da7ad0900002","type":"permissions","attributes":{"created":"2022-08-25T15:25:56.32517Z","description":"Resolve connections.","display_name":"Connections Resolve","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"connections_resolve","restricted":false}},{"id":"4ee674f6-55d9-11ed-b10d-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.834253Z","description":"View blocked attackers.","display_name":"Application Security Management Protect Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_protect_read","restricted":false}},{"id":"4ee7e46c-55d9-11ed-b10e-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.843656Z","description":"Manage blocked attackers.","display_name":"Application Security Management Protect Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_protect_write","restricted":false}},{"id":"4ee5731c-55d9-11ed-b10b-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.827076Z","description":"View whether Application Security Management has been enabled or disabled on services via 1-click enablement with Remote Configuration.","display_name":"Application Security Management 1-click Enablement Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_activation_read","restricted":false}},{"id":"4ee60688-55d9-11ed-b10c-da7ad0900002","type":"permissions","attributes":{"created":"2022-10-27T09:25:33.831383Z","description":"Enable or disable Application Security Management on services via 1-click enablement.","display_name":"Application Security Management 1-click Enablement Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_activation_write","restricted":false}},{"id":"99474cc2-5a12-11ed-b547-da7ad0900002","type":"permissions","attributes":{"created":"2022-11-01T18:25:44.584393Z","description":"View and run Apps in App Builder.","display_name":"Apps View","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_run","restricted":false}},{"id":"9948271e-5a12-11ed-b548-da7ad0900002","type":"permissions","attributes":{"created":"2022-11-01T18:25:44.590588Z","description":"Create, edit, and delete Apps in App Builder.","display_name":"Apps Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_write","restricted":false}},{"id":"8247acc4-7a4c-11ed-958f-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T18:40:54.018521Z","description":"View Cases.","display_name":"Cases Read","display_type":"read","group_name":"Case and Incident Management","name":"cases_read","restricted":false}},{"id":"824851a6-7a4c-11ed-9590-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T18:40:54.02328Z","description":"Create and update cases.","display_name":"Cases Write","display_type":"write","group_name":"Case and Incident Management","name":"cases_write","restricted":false}},{"id":"77d5f45e-7a5a-11ed-8abf-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T20:20:49.450768Z","description":"Edit APM Remote Configuration.","display_name":"APM Remote Configuration Write","display_type":"write","group_name":"APM","name":"apm_remote_configuration_write","restricted":false}},{"id":"77d55a44-7a5a-11ed-8abe-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-12T20:20:49.446298Z","description":"View APM Remote Configuration.","display_name":"APM Remote Configuration Read","display_type":"read","group_name":"APM","name":"apm_remote_configuration_read","restricted":false}},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.149406Z","description":"View CI Visibility.","display_name":"CI Visibility Read","display_type":"read","group_name":"Software Delivery","name":"ci_visibility_read","restricted":true}},{"id":"6c5c1090-7aff-11ed-a5cf-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.157428Z","description":"Edit flaky tests and delete Test Services.","display_name":"CI Visibility Tests Write","display_type":"write","group_name":"Software Delivery","name":"ci_visibility_write","restricted":false}},{"id":"6c59ae72-7aff-11ed-a5cc-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.141217Z","description":"Edit CI Provider settings. Manage GitHub accounts and repositories for enabling CI Visibility and job logs collection.","display_name":"CI Provider Settings Write","display_type":"write","group_name":"Software Delivery","name":"ci_provider_settings_write","restricted":false}},{"id":"6c5b7428-7aff-11ed-a5ce-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.153418Z","description":"Configure CI Visibility settings. Set a repository default branch, enable GitHub comments, and delete test services.","display_name":"CI Visibility Settings Write","display_type":"write","group_name":"Software Delivery","name":"ci_visibility_settings_write","restricted":false}},{"id":"6c5d0892-7aff-11ed-a5d0-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.163771Z","description":"Enable or disable Intelligent Test Runner.","display_name":"Intelligent Test Runner Activation Write","display_type":"write","group_name":"Software Delivery","name":"intelligent_test_runner_activation_write","restricted":false}},{"id":"6c5de654-7aff-11ed-a5d1-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-13T16:01:37.16943Z","description":"Edit Intelligent Test Runner settings, such as modifying ITR excluded branch list.","display_name":"Intelligent Test Runner Settings Write","display_type":"write","group_name":"Software Delivery","name":"intelligent_test_runner_settings_write","restricted":false}},{"id":"c13a2368-7d61-11ed-b5b7-da7ad0900002","type":"permissions","attributes":{"created":"2022-12-16T16:50:32.545882Z","description":"View data in Continuous Profiler.","display_name":"Continuous Profiler Read","display_type":"read","group_name":"APM","name":"continuous_profiler_read","restricted":false}},{"id":"1d76ecfa-9771-11ed-9c2f-da7ad0900002","type":"permissions","attributes":{"created":"2023-01-18T20:45:59.977837Z","description":"Manage Teams. Create, delete, rename, and edit metadata of all Teams. To control Team membership across all Teams, use the User Access Manage permission.","display_name":"Teams Manage","display_type":"write","group_name":"Teams","name":"teams_manage","restricted":false}},{"id":"ca6bfb3a-b44f-11ed-adb2-da7ad0900002","type":"permissions","attributes":{"created":"2023-02-24T14:30:30.983679Z","description":"View a list of findings that include both misconfigurations and identity risks.","display_name":"Security Monitoring Findings Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_findings_read","restricted":false}},{"id":"4dc3eec6-b468-11ed-8539-da7ad0900002","type":"permissions","attributes":{"created":"2023-02-24T17:25:59.263037Z","description":"View Incidents Notification settings.","display_name":"Incident Notification Settings Read","display_type":"read","group_name":"Case and Incident Management","name":"incident_notification_settings_read","restricted":false}},{"id":"4dc4094c-b468-11ed-853a-da7ad0900002","type":"permissions","attributes":{"created":"2023-02-24T17:25:59.263037Z","description":"Configure Incidents Notification settings.","display_name":"Incident Notification Settings Write","display_type":"write","group_name":"Case and Incident Management","name":"incident_notification_settings_write","restricted":false}},{"id":"35dd33ea-ca2e-11ed-bca0-da7ad0900002","type":"permissions","attributes":{"created":"2023-03-24T10:25:33.934187Z","description":"Edit CI Ingestion Control exclusion filters.","display_name":"CI Visibility Ingestion Control Write","display_type":"write","group_name":"Software Delivery","name":"ci_ingestion_control_write","restricted":false}},{"id":"36bf3d0a-ccc0-11ed-9453-da7ad0900002","type":"permissions","attributes":{"created":"2023-03-27T16:55:44.263627Z","description":"Edit Error Tracking issues.","display_name":"Error Tracking Issue Write","display_type":"write","group_name":"Error Tracking","name":"error_tracking_write","restricted":false}},{"id":"f416f55e-db3f-11ed-8028-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-15T03:45:24.289668Z","description":"Manage Watchdog Alerts.","display_name":"Watchdog Alerts Write","display_type":"write","group_name":"Watchdog","name":"watchdog_alerts_write","restricted":false}},{"id":"f416b1ac-db3f-11ed-8027-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-15T03:45:24.289668Z","description":"Modify Saved Views across all Datadog products.","display_name":"Saved Views Write","display_type":"write","group_name":"Cross-Product Features","name":"saved_views_write","restricted":false}},{"id":"4e61a95e-de98-11ed-aa23-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-19T09:55:24.976379Z","description":"Read Client Tokens. Unlike API keys, client tokens may be exposed client-side in JavaScript code for web browsers and other clients to send data to Datadog.","display_name":"Client Tokens Read","display_type":"read","group_name":"API and Application Keys","name":"client_tokens_read","restricted":false}},{"id":"4e61ea18-de98-11ed-aa24-da7ad0900002","type":"permissions","attributes":{"created":"2023-04-19T09:55:24.976379Z","description":"Create and edit Client Tokens. Unlike API keys, client tokens may be exposed client-side in JavaScript code for web browsers and other clients to send data to Datadog.","display_name":"Client Tokens Write","display_type":"write","group_name":"API and Application Keys","name":"client_tokens_write","restricted":false}},{"id":"a4316eb8-f438-11ed-8af2-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-16T22:26:02.839419Z","description":"Read Event Correlation Configuration data such as Correlation Rules and Settings.","display_name":"Event Correlation Config Read","display_type":"read","group_name":"Events","name":"event_correlation_config_read","restricted":false}},{"id":"a431bf12-f438-11ed-8af3-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-16T22:26:02.839419Z","description":"Manage Event Correlation Configuration such as Correlation Rules and Settings.","display_name":"Event Correlation Config Write","display_type":"write","group_name":"Events","name":"event_correlation_config_write","restricted":false}},{"id":"8352cf04-f6ac-11ed-9ec7-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-20T01:20:31.639587Z","description":"Manage general event configuration such as API Emails.","display_name":"Event Config Write","display_type":"write","group_name":"Events","name":"event_config_write","restricted":false}},{"id":"3a48350c-f9bc-11ed-b81c-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-23T22:50:34.532448Z","description":"Mute CSPM Findings.","display_name":"Security Monitoring Findings Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_findings_write","restricted":false}},{"id":"a773e3d8-fff2-11ed-965c-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-31T20:35:17.490437Z","description":"View Cloud Cost pages. This does not restrict access to the cloud cost data source in dashboards and notebooks.","display_name":"Cloud Cost Management Read","display_type":"read","group_name":"Cloud Cost Management","name":"cloud_cost_management_read","restricted":false}},{"id":"a77452c8-fff2-11ed-965d-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-31T20:35:17.490437Z","description":"Configure cloud cost accounts and global customizations.","display_name":"Cloud Cost Management Write","display_type":"write","group_name":"Cloud Cost Management","name":"cloud_cost_management_write","restricted":false}},{"id":"a51b375a-ff73-11ed-8c18-da7ad0900002","type":"permissions","attributes":{"created":"2023-05-31T05:26:07.469293Z","description":"Add and change tags on hosts.","display_name":"Host Tags Write","display_type":"write","group_name":"Metrics","name":"host_tags_write","restricted":false}},{"id":"61f9891a-0070-11ee-9c3f-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-01T11:35:17.513706Z","description":"Create CI Visibility pipeline spans using the API.","display_name":"CI Visibility Pipelines Write","display_type":"write","group_name":"Software Delivery","name":"ci_visibility_pipelines_write","restricted":false}},{"id":"1377d9e4-0ec7-11ee-aebc-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-19T17:31:08.295856Z","description":"View Quality Gate Rules.","display_name":"Quality Gate Rules Read","display_type":"read","group_name":"Software Delivery","name":"quality_gate_rules_read","restricted":false}},{"id":"1377ff28-0ec7-11ee-aebd-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-19T17:31:08.295856Z","description":"Edit Quality Gate Rules.","display_name":"Quality Gate Rules Write","display_type":"write","group_name":"Software Delivery","name":"quality_gate_rules_write","restricted":false}},{"id":"cc8cd958-11eb-11ee-ade2-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-23T17:31:34.182629Z","description":"Edit metadata on metrics.","display_name":"Metrics Metadata Write","display_type":"write","group_name":"Metrics","name":"metrics_metadata_write","restricted":false}},{"id":"b1adb6e8-0949-11ee-b2c5-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-12T17:51:01.32545Z","description":"Delete data from RUM.","display_name":"RUM Delete Data","display_type":"write","group_name":"Real User Monitoring","name":"rum_delete_data","restricted":false}},{"id":"b1ad77e6-0949-11ee-b2c3-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-12T17:51:01.32545Z","description":"Update status or assignee of vulnerabilities.","display_name":"Vulnerability Management Write","display_type":"write","group_name":"Cloud Security Platform","name":"appsec_vm_write","restricted":false}},{"id":"b1adb5da-0949-11ee-b2c4-da7ad0900002","type":"permissions","attributes":{"created":"2023-06-12T17:51:01.32545Z","description":"Create or modify Reference Tables.","display_name":"Reference Tables Write","display_type":"write","group_name":"Reference Tables","name":"reference_tables_write","restricted":false}},{"id":"0efeff18-1cec-11ee-992d-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-07T17:31:08.450865Z","description":"Create, update, and delete RUM playlists. Add and remove sessions from RUM playlists.","display_name":"RUM Playlist Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_playlist_write","restricted":false}},{"id":"6c5ce898-21a4-11ee-99ef-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-13T17:40:57.140947Z","description":"Delete pipelines from your organization.","display_name":"Observability Pipelines Delete","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_delete","restricted":false}},{"id":"6c5ce992-21a4-11ee-99f0-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-13T17:40:57.140947Z","description":"Deploy pipelines in your organization.","display_name":"Observability Pipelines Deploy","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_deploy","restricted":false}},{"id":"785177a6-20da-11ee-bed7-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-12T17:35:18.858294Z","description":"Create custom metrics from processes.","display_name":"Processes Generate Metrics","display_type":"write","group_name":"Processes","name":"processes_generate_metrics","restricted":false}},{"id":"7850e390-20da-11ee-bed6-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-12T17:35:18.858294Z","description":"Delete API Keys for your organization.","display_name":"API Keys Delete","display_type":"write","group_name":"API and Application Keys","name":"api_keys_delete","restricted":false}},{"id":"6c5c79b2-21a4-11ee-99ee-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-13T17:40:57.140947Z","description":"Collect an Agent flare with Fleet Automation.","display_name":"Agent Flare Collection","display_type":"write","group_name":"Fleet Automation","name":"agent_flare_collection","restricted":false}},{"id":"807a82d8-2724-11ee-84ec-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-20T17:40:22.283891Z","description":"Control which organizations can query your organization''s data.","display_name":"Org Connections Write","display_type":"write","group_name":"Access Management","name":"org_connections_write","restricted":false}},{"id":"8079f2e6-2724-11ee-84eb-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-20T17:40:22.283891Z","description":"View which organizations can query data from your organization. Query data from other organizations.","display_name":"Org Connections Read","display_type":"read","group_name":"Access Management","name":"org_connections_read","restricted":false}},{"id":"1b8f54cc-2ca4-11ee-9e72-da7ad0900002","type":"permissions","attributes":{"created":"2023-07-27T17:36:24.369352Z","description":"Manage facets for products other than Log Management, such as APM Traces. To modify Log Facets, use Logs Write Facets.","display_name":"Facets Write","display_type":"write","group_name":"Cross-Product Features","name":"facets_write","restricted":false}},{"id":"de0e73c2-3d23-11ee-aa7d-da7ad0900002","type":"permissions","attributes":{"created":"2023-08-17T17:31:15.369551Z","description":"Read Rule Suppressions.","display_name":"Security Suppressions Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_monitoring_suppressions_read","restricted":false}},{"id":"de0eb666-3d23-11ee-aa7e-da7ad0900002","type":"permissions","attributes":{"created":"2023-08-17T17:31:15.369551Z","description":"Write Rule Suppressions.","display_name":"Security Suppressions Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_suppressions_write","restricted":false}},{"id":"5356dfd2-3dee-11ee-b07b-da7ad0900002","type":"permissions","attributes":{"created":"2023-08-18T17:40:30.474557Z","description":"Edit Static Analysis settings.","display_name":"Static Analysis Settings Write","display_type":"write","group_name":"Software Delivery","name":"static_analysis_settings_write","restricted":false}},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions","attributes":{"created":"2023-09-09T00:06:00.708335Z","description":"View CD Visibility.","display_name":"CD Visibility Read","display_type":"read","group_name":"Software Delivery","name":"cd_visibility_read","restricted":true}},{"id":"263eff86-6925-11ee-acc0-da7ad0900002","type":"permissions","attributes":{"created":"2023-10-12T17:31:17.142666Z","description":"Write NDM Netflow port mappings.","display_name":"NDM Netflow Port Mappings Write","display_type":"write","group_name":"Network Device Monitoring","name":"ndm_netflow_port_mappings_write","restricted":false}},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions","attributes":{"created":"2023-10-13T17:31:17.311029Z","description":"View infrastructure, application code and library vulnerabilities. This does not restrict access to the vulnerability data source through the API or inventory SQL.","display_name":"Vulnerability Management Read","display_type":"read","group_name":"Cloud Security Platform","name":"appsec_vm_read","restricted":true}},{"id":"7c7836fc-6f6e-11ee-8cdd-da7ad0900002","type":"permissions","attributes":{"created":"2023-10-20T17:31:22.039614Z","description":"Create or modify Dynamic Instrumentation probes that capture function state: local variables, method arguments, fields, and return value or thrown exception.","display_name":"Dynamic Instrumentation Capture Variables","display_type":"write","group_name":"APM","name":"debugger_capture_variables","restricted":false}},{"id":"10098bc8-984b-11ee-9b69-da7ad0900002","type":"permissions","attributes":{"created":"2023-12-11T17:31:05.405902Z","description":"Disable Error Tracking, edit inclusion filters, and edit rate limit.","display_name":"Error Tracking Settings Write","display_type":"write","group_name":"Error Tracking","name":"error_tracking_settings_write","restricted":false}},{"id":"10091e90-984b-11ee-9b68-da7ad0900002","type":"permissions","attributes":{"created":"2023-12-11T17:31:05.405902Z","description":"Add or change Error Tracking exclusion filters.","display_name":"Error Tracking Exclusion Filters Write","display_type":"write","group_name":"Error Tracking","name":"error_tracking_exclusion_filters_write","restricted":false}},{"id":"1b572396-ba15-11ee-9e19-da7ad0900002","type":"permissions","attributes":{"created":"2024-01-23T17:30:31.083178Z","description":"View integrations and their configurations.","display_name":"Integrations Read","display_type":"read","group_name":"Integrations","name":"integrations_read","restricted":false}},{"id":"bdda759a-c1f0-11ee-b428-da7ad0900002","type":"permissions","attributes":{"created":"2024-02-02T17:30:21.655244Z","description":"Add, modify, and delete API catalog definitions.","display_name":"API Catalog Write","display_type":"write","group_name":"APM","name":"apm_api_catalog_write","restricted":false}},{"id":"bdda0cea-c1f0-11ee-b427-da7ad0900002","type":"permissions","attributes":{"created":"2024-02-02T17:30:21.655244Z","description":"View API catalog and API definitions.","display_name":"API Catalog Read","display_type":"read","group_name":"APM","name":"apm_api_catalog_read","restricted":false}},{"id":"27b95c32-ccf1-11ee-ae65-da7ad0900002","type":"permissions","attributes":{"created":"2024-02-16T17:31:02.07009Z","description":"Create or edit trend metrics from container images.","display_name":"Containers Write Image Trend Metrics","display_type":"write","group_name":"Containers","name":"containers_generate_image_metrics","restricted":false}},{"id":"a82d01ce-e228-11ee-870e-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-14T17:31:14.314721Z","description":"Extend the retention of Session Replays.","display_name":"RUM Session Replay Extend Retention","display_type":"write","group_name":"Real User Monitoring","name":"rum_extend_retention","restricted":false}},{"id":"50c173fc-e54d-11ee-bb23-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-18T17:31:12.515412Z","description":"View and search Private Action Runners for Workflow Automation and App Builder.","display_name":"Private Action Runner Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"on_prem_runner_read","restricted":false}},{"id":"50c1dd10-e54d-11ee-bb24-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-18T17:31:12.515412Z","description":"Attach a Private Action Runner to a connection.","display_name":"Private Action Runner Use","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"on_prem_runner_use","restricted":false}},{"id":"50c1e0b2-e54d-11ee-bb25-da7ad0900002","type":"permissions","attributes":{"created":"2024-03-18T17:31:12.515412Z","description":"Create and edit Private Action Runners for Workflow Automation and App Builder.","display_name":"Private Action Runner Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"on_prem_runner_write","restricted":false}},{"id":"ca06b2b4-f5cd-11ee-9e77-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-08T17:31:10.159381Z","description":"Edit the settings for DORA.","display_name":"DORA Settings Write","display_type":"write","group_name":"Software Delivery","name":"dora_settings_write","restricted":false}},{"id":"ce892b8a-00ce-11ef-8fca-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-22T17:36:10.012624Z","description":"Upgrade Datadog Agents with Fleet Automation.","display_name":"Agent Upgrade","display_type":"write","group_name":"Fleet Automation","name":"agent_upgrade_write","restricted":false}},{"id":"f5f475d4-0197-11ef-be1f-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"Read and query Continuous Profiler data for Profile-Guided Optimization (PGO).","display_name":"Read Continuous Profiler Profile-Guided Optimization (PGO) Data","display_type":"read","group_name":"APM","name":"continuous_profiler_pgo_read","restricted":false}},{"id":"f5f4d31c-0197-11ef-be20-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"Add or remove but not edit Oracle Cloud integration configurations.","display_name":"OCI Configurations Manage","display_type":"write","group_name":"Integrations","name":"oci_configurations_manage","restricted":false}},{"id":"f5f4e8fc-0197-11ef-be21-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit AWS integration configurations.","display_name":"AWS Configuration Read","display_type":"read","group_name":"Integrations","name":"aws_configuration_read","restricted":false}},{"id":"f5f4e9a6-0197-11ef-be22-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit Azure integration configurations.","display_name":"Azure Configuration Read","display_type":"read","group_name":"Integrations","name":"azure_configuration_read","restricted":false}},{"id":"f5f4ec44-0197-11ef-be23-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit GCP integration configurations.","display_name":"GCP Configuration Read","display_type":"read","group_name":"Integrations","name":"gcp_configuration_read","restricted":false}},{"id":"f5f4f068-0197-11ef-be24-da7ad0900002","type":"permissions","attributes":{"created":"2024-04-23T17:36:04.989467Z","description":"View but not add, remove, or edit Oracle Cloud integration configurations.","display_name":"OCI Configuration Read","display_type":"read","group_name":"Integrations","name":"oci_configuration_read","restricted":false}},{"id":"e2310daa-08a9-11ef-8653-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove AWS integration configurations.","display_name":"AWS Configuration Edit","display_type":"write","group_name":"Integrations","name":"aws_configuration_edit","restricted":false}},{"id":"e23194fa-08a9-11ef-8654-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove Azure integration configurations.","display_name":"Azure Configuration Edit","display_type":"write","group_name":"Integrations","name":"azure_configuration_edit","restricted":false}},{"id":"e2319608-08a9-11ef-8655-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove GCP integration configurations.","display_name":"GCP Configuration Edit","display_type":"write","group_name":"Integrations","name":"gcp_configuration_edit","restricted":false}},{"id":"e231ca6a-08a9-11ef-8656-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-02T17:32:00.912808Z","description":"Edit but not add or remove Oracle Cloud integration configurations.","display_name":"OCI Configuration Edit","display_type":"write","group_name":"Integrations","name":"oci_configuration_edit","restricted":false}},{"id":"8c3a9cde-0973-11ef-a2be-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-03T17:35:35.030875Z","description":"View LLM Observability.","display_name":"LLM Observability Read","display_type":"read","group_name":"LLM Observability","name":"llm_observability_read","restricted":false}},{"id":"cb5a53dc-13aa-11ef-9749-da7ad0900002","type":"permissions","attributes":{"created":"2024-05-16T17:36:14.883078Z","description":"Manage your organization''s flex logs configuration.","display_name":"Flex Logs Configuration Write","display_type":"write","group_name":"Log Management","name":"flex_logs_config_write","restricted":false}},{"id":"3cf14194-2298-11ef-9d71-da7ad0900002","type":"permissions","attributes":{"created":"2024-06-04T17:31:12.458506Z","description":"View Reference Tables.","display_name":"Reference Tables Read","display_type":"read","group_name":"Reference Tables","name":"reference_tables_read","restricted":false}},{"id":"2757c192-389a-11ef-b37c-da7ad0900002","type":"permissions","attributes":{"created":"2024-07-02T17:40:20.794842Z","description":"Create Fleet Automation Policies.","display_name":"Fleet Policies Write","display_type":"write","group_name":"Fleet Automation","name":"fleet_policies_write","restricted":false}},{"id":"27583ae6-389a-11ef-b37d-da7ad0900002","type":"permissions","attributes":{"created":"2024-07-02T17:40:20.794842Z","description":"Enable, disable and update custom resource indexing.","display_name":"Custom Resource Definition Write","display_type":"write","group_name":"Orchestration","name":"orchestration_custom_resource_definitions_write","restricted":false}},{"id":"ce67705a-5419-11ef-8c73-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-06T17:32:08.55681Z","description":"View Code Analysis.","display_name":"Code Analysis Read","display_type":"read","group_name":"Software Delivery","name":"code_analysis_read","restricted":false}},{"id":"ce67efb2-5419-11ef-8c74-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-06T17:32:08.55681Z","description":"Enable, disable, and configure workload autoscaling. Apply workload scaling recommendations.","display_name":"Workload Scaling Write","display_type":"write","group_name":"Orchestration","name":"orchestration_workload_scaling_write","restricted":false}},{"id":"ad8b4c4a-5990-11ef-b34b-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-13T16:25:39.351685Z","description":"Create, Update, and Delete LLM Observability resources including User Defined Evaluations, OOTB Evaluations, and User Defined Topics.","display_name":"LLM Observability Write","display_type":"write","group_name":"LLM Observability","name":"llm_observability_write","restricted":false}},{"id":"5377e20c-6563-11ef-bd11-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-28T17:31:14.83001Z","description":"View captured events of pipelines in your organization.","display_name":"Observability Pipelines Live Capture Read","display_type":"read","group_name":"Observability Pipelines","name":"observability_pipelines_capture_read","restricted":false}},{"id":"53784710-6563-11ef-bd12-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-28T17:31:14.83001Z","description":"Capture live events of pipelines in your organization.","display_name":"Observability Pipelines Live Capture Write","display_type":"write","group_name":"Observability Pipelines","name":"observability_pipelines_capture_write","restricted":false}},{"id":"bf446b0a-60ad-11ef-83c4-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-22T17:41:22.628257Z","description":"Allows read access to the data within the Actions Datastore.","display_name":"Actions Datastore Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"apps_datastore_read","restricted":false}},{"id":"bf446e2a-60ad-11ef-83c5-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-22T17:41:22.628257Z","description":"Allows modification of data within the Actions Datastore, including adding, editing, and deleting records.","display_name":"Actions Datastore Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_datastore_write","restricted":false}},{"id":"bf4407e6-60ad-11ef-83c3-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-22T17:41:22.628257Z","description":"Allows management of the Actions Datastore, including creating, updating, and deleting the datastore itself.","display_name":"Actions Datastore Manage","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"apps_datastore_manage","restricted":false}},{"id":"5dffba8a-66f6-11ef-8976-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-30T17:36:19.679492Z","description":"View Security Pipelines.","display_name":"Security Pipelines Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_pipelines_read","restricted":false}},{"id":"5e0024fc-66f6-11ef-8977-da7ad0900002","type":"permissions","attributes":{"created":"2024-08-30T17:36:19.679492Z","description":"Create, edit, and delete Security Pipelines.","display_name":"Security Pipelines Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_pipelines_write","restricted":false}},{"id":"503d01ea-751b-11ef-85ac-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-17T17:36:04.251012Z","description":"Create, delete and update connection groups.","display_name":"Connection Groups Write","display_type":"write","group_name":"App Builder \u0026 Workflow Automation","name":"connection_groups_write","restricted":false}},{"id":"479d4934-79e2-11ef-98d5-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-23T19:30:24.281417Z","description":"Allow quality gates evaluations.","display_name":"Quality Gates Evaluations","display_type":"read","group_name":"Software Delivery","name":"quality_gates_evaluations_read","restricted":false}},{"id":"bdc2acbe-7c1f-11ef-b362-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-26T15:55:24.124953Z","description":"Read and use connection groups.","display_name":"Connection Groups Read","display_type":"read","group_name":"App Builder \u0026 Workflow Automation","name":"connection_groups_read","restricted":false}},{"id":"824e509c-7c5c-11ef-ba38-da7ad0900002","type":"permissions","attributes":{"created":"2024-09-26T23:10:23.67733Z","description":"Managing actions on Cloud Workload Security Agent Rules.","display_name":"Cloud Workload Security Agent Actions","display_type":"write","group_name":"Cloud Security Platform","name":"security_monitoring_cws_agent_rules_actions","restricted":false}},{"id":"a91ee0ba-8184-11ef-ac5a-da7ad0900002","type":"permissions","attributes":{"created":"2024-10-03T12:40:24.480611Z","description":"View RUM Retention filters data.","display_name":"RUM Retention Filters Read","display_type":"read","group_name":"Real User Monitoring","name":"rum_retention_filters_read","restricted":false}},{"id":"a91f5112-8184-11ef-ac5b-da7ad0900002","type":"permissions","attributes":{"created":"2024-10-03T12:40:24.480611Z","description":"Write RUM Retention filters.","display_name":"RUM Retention Filters Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_retention_filters_write","restricted":false}},{"id":"bc3f9ed4-8a3d-11ef-b5a4-da7ad0900002","type":"permissions","attributes":{"created":"2024-10-14T15:05:22.769126Z","description":"View and use DDSQL Editor.","display_name":"DDSQL Editor Read","display_type":"read","group_name":"DDSQL Editor","name":"ddsql_editor_read","restricted":false}},{"id":"a8c986a6-989a-11ef-873e-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-01T21:45:49.593207Z","description":"View the disaster recovery status.","display_name":"Datadog Disaster Recovery Read","display_type":"read","group_name":"Disaster Recovery","name":"disaster_recovery_status_read","restricted":false}},{"id":"a8ca1fda-989a-11ef-873f-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-01T21:45:49.593207Z","description":"Update the disaster recovery status.","display_name":"Datadog Disaster Recovery Write","display_type":"write","group_name":"Disaster Recovery","name":"disaster_recovery_status_write","restricted":false}},{"id":"ebae5be2-9d16-11ef-9394-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-07T14:45:24.068066Z","description":"Write RUM Settings.","display_name":"RUM Settings Write","display_type":"write","group_name":"Real User Monitoring","name":"rum_settings_write","restricted":false}},{"id":"ebaf0448-9d16-11ef-9397-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-07T14:45:24.068066Z","description":"View Test Optimization.","display_name":"Test Optimization Read","display_type":"read","group_name":"Software Delivery","name":"test_optimization_read","restricted":false}},{"id":"ebaf05ba-9d16-11ef-9398-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-07T14:45:24.068066Z","description":"Manage flaky tests for Test Optimization.","display_name":"Test Optimization Write","display_type":"write","group_name":"Software Delivery","name":"test_optimization_write","restricted":false}},{"id":"09e34b76-a6b4-11ef-8ab9-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-19T20:22:46.198145Z","description":"Create, delete and update Test Optimization settings.","display_name":"Test Optimization Settings Write","display_type":"write","group_name":"Software Delivery","name":"test_optimization_settings_write","restricted":false}},{"id":"8babfb74-a90e-11ef-b4c3-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-22T20:15:40.970745Z","description":"Write comments into vulnerabilities.","display_name":"Security Comments Write","display_type":"write","group_name":"Cloud Security Platform","name":"security_comments_write","restricted":false}},{"id":"8baca0ba-a90e-11ef-b4c4-da7ad0900002","type":"permissions","attributes":{"created":"2024-11-22T20:15:40.970745Z","description":"Read comments of vulnerabilities.","display_name":"Security Comments Read","display_type":"read","group_name":"Cloud Security Platform","name":"security_comments_read","restricted":false}},{"id":"6595b70a-b7fe-11ef-977d-da7ad0900002","type":"permissions","attributes":{"created":"2024-12-11T20:27:52.565232Z","description":"View Logs Workspaces.","display_name":"Read Logs Workspaces","display_type":"read","group_name":"Log Management","name":"logs_read_workspaces","restricted":false}},{"id":"6596753c-b7fe-11ef-977e-da7ad0900002","type":"permissions","attributes":{"created":"2024-12-11T20:27:52.565232Z","description":"Create, update, and delete Logs Workspaces.","display_name":"Write Logs Workspaces","display_type":"write","group_name":"Log Management","name":"logs_write_workspaces","restricted":false}},{"id":"bccba216-cd37-11ef-b636-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-07T20:41:14.612376Z","description":"View Audience Management data.","display_name":"Profiles Read","display_type":"read","group_name":"Product Analytics","name":"audience_management_read","restricted":false}},{"id":"bccc2ee8-cd37-11ef-b637-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-07T20:41:14.612376Z","description":"Modify Audience Management data.","display_name":"Profiles Write","display_type":"write","group_name":"Product Analytics","name":"audience_management_write","restricted":false}},{"id":"8da487f0-d2af-11ef-91c8-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-14T19:41:30.924708Z","description":"Read logs configuration.","display_name":"Logs Configuration Read","display_type":"read","group_name":"Log Management","name":"logs_read_config","restricted":false}},{"id":"1c23f168-da90-11ef-910a-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-24T20:16:35.403038Z","description":"View On-Call teams, schedules, escalation policies and overrides.","display_name":"On-Call Read","display_type":"read","group_name":"On-Call","name":"on_call_read","restricted":false}},{"id":"1c248fc4-da90-11ef-910b-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-24T20:16:35.403038Z","description":"Create, update, and delete On-Call teams, schedules and escalation policies.","display_name":"On-Call Write","display_type":"write","group_name":"On-Call","name":"on_call_write","restricted":false}},{"id":"1c24b292-da90-11ef-910c-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-24T20:16:35.403038Z","description":"Page On-Call teams and users.","display_name":"On-Call Page","display_type":"write","group_name":"On-Call","name":"on_call_page","restricted":false}},{"id":"c6d3a3e0-df47-11ef-abf4-da7ad0900002","type":"permissions","attributes":{"created":"2025-01-30T20:21:24.316595Z","description":"View Error Tracking data.","display_name":"Error Tracking Read","display_type":"read","group_name":"Error Tracking","name":"error_tracking_read","restricted":false}},{"id":"66c075bc-e296-11ef-bba7-da7ad0900002","type":"permissions","attributes":{"created":"2025-02-04T01:21:46.862659Z","description":"Acknowledge, resolve pages and edit overrides. Allow users to configure their On-Call profile.","display_name":"On-Call Responder","display_type":"write","group_name":"On-Call","name":"on_call_respond","restricted":false}}]}' + headers: + Content-Type: + - application/vnd.api+json + status: 200 OK + code: 200 + duration: 112.932542ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -225,14 +259,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"description":"Created using the Datadog provider in Terraform","id":"uht-8u6-e99","layout_type":"ordered","notify_list":[],"restricted_roles":["f2d374ea-f421-11ef-8df0-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} + {"description":"Created using the Datadog provider in Terraform","id":"u25-kge-2ut","layout_type":"ordered","notify_list":[],"restricted_roles":["fc288f20-f427-11ef-a5d3-da7ad0900002"],"tags":[],"template_variable_presets":[],"template_variables":[],"title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740563797","widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"}}]} form: {} headers: Accept: - application/json Content-Type: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/uht-8u6-e99 + url: https://api.datadoghq.com/api/v1/dashboard/u25-kge-2ut method: PUT response: proto: HTTP/1.1 @@ -244,14 +278,14 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"uht-8u6-e99","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/uht-8u6-e99/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6700894627881928}],"notify_list":[],"created_at":"2025-02-26T09:13:26.263075+00:00","modified_at":"2025-02-26T09:13:32.487743+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["f2d374ea-f421-11ef-8df0-da7ad0900002"]} + {"id":"u25-kge-2ut","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740563797","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/u25-kge-2ut/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740563797","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5780056837868618}],"notify_list":[],"created_at":"2025-02-26T09:56:40.387614+00:00","modified_at":"2025-02-26T09:56:45.248137+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["fc288f20-f427-11ef-a5d3-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 337.609125ms - - id: 7 + duration: 357.063333ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -267,7 +301,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/uht-8u6-e99 + url: https://api.datadoghq.com/api/v1/dashboard/u25-kge-2ut method: GET response: proto: HTTP/1.1 @@ -279,14 +313,14 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"uht-8u6-e99","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/uht-8u6-e99/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6700894627881928}],"notify_list":[],"created_at":"2025-02-26T09:13:26.263075+00:00","modified_at":"2025-02-26T09:13:32.487743+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["f2d374ea-f421-11ef-8df0-da7ad0900002"]} + {"id":"u25-kge-2ut","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740563797","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/u25-kge-2ut/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740563797","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5780056837868618}],"notify_list":[],"created_at":"2025-02-26T09:56:40.387614+00:00","modified_at":"2025-02-26T09:56:45.248137+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["fc288f20-f427-11ef-a5d3-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 175.423208ms - - id: 8 + duration: 174.796708ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -302,7 +336,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v2/roles/f2d374ea-f421-11ef-8df0-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/fc288f20-f427-11ef-a5d3-da7ad0900002 method: GET response: proto: HTTP/1.1 @@ -312,14 +346,14 @@ interactions: trailer: {} content_length: 1067 uncompressed: false - body: '{"data":{"id":"f2d374ea-f421-11ef-8df0-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:13:31.680562Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:13:31.681503Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' + body: '{"data":{"id":"fc288f20-f427-11ef-a5d3-da7ad0900002","type":"roles","attributes":{"created_at":"2025-02-26T09:56:44.318011Z","created_by_handle":"frog@datadoghq.com","modified_at":"2025-02-26T09:56:44.319087Z","modified_by_handle":"frog@datadoghq.com","name":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740563797","team_count":0,"user_count":0},"relationships":{"permissions":{"data":[{"id":"d90f6830-d3d8-11e9-a77a-b3404e5e9ee2","type":"permissions"},{"id":"4441648c-d8b1-11e9-a77a-1b899a04b304","type":"permissions"},{"id":"417ba636-2dce-11eb-84c0-6bce5b0d9de0","type":"permissions"},{"id":"12efc20e-d36c-11eb-a9b8-da7ad0900002","type":"permissions"},{"id":"7605ef24-f376-11eb-b90b-da7ad0900002","type":"permissions"},{"id":"b6bf9ac6-9a59-11ec-8480-da7ad0900002","type":"permissions"},{"id":"f8e941cf-e746-11ec-b22d-da7ad0900002","type":"permissions"},{"id":"6c5ad874-7aff-11ed-a5cd-da7ad0900002","type":"permissions"},{"id":"a8b4d6e8-4ea4-11ee-b482-da7ad0900002","type":"permissions"},{"id":"50c270de-69ee-11ee-9151-da7ad0900002","type":"permissions"}]}}}}' headers: Content-Type: - application/vnd.api+json status: 200 OK code: 200 - duration: 128.243292ms - - id: 9 + duration: 129.2475ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -335,7 +369,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/uht-8u6-e99 + url: https://api.datadoghq.com/api/v1/dashboard/u25-kge-2ut method: GET response: proto: HTTP/1.1 @@ -347,14 +381,14 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"uht-8u6-e99","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740561202","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/uht-8u6-e99/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740561202","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":6700894627881928}],"notify_list":[],"created_at":"2025-02-26T09:13:26.263075+00:00","modified_at":"2025-02-26T09:13:32.487743+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["f2d374ea-f421-11ef-8df0-da7ad0900002"]} + {"id":"u25-kge-2ut","title":"tf-TestAccDatadogDashboardRbac_updateToRbac-local-1740563797","description":"Created using the Datadog provider in Terraform","author_handle":"frog@datadoghq.com","author_name":"frog","layout_type":"ordered","url":"/dashboard/u25-kge-2ut/tf-testaccdatadogdashboardrbacupdatetorbac-local-1740563797","template_variables":[],"widgets":[{"definition":{"content":"note text","has_padding":true,"show_tick":false,"type":"note"},"id":5780056837868618}],"notify_list":[],"created_at":"2025-02-26T09:56:40.387614+00:00","modified_at":"2025-02-26T09:56:45.248137+00:00","template_variable_presets":[],"tags":[],"restricted_roles":["fc288f20-f427-11ef-a5d3-da7ad0900002"]} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 156.39825ms - - id: 10 + duration: 168.656709ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -370,7 +404,7 @@ interactions: headers: Accept: - application/json - url: https://api.datadoghq.com/api/v1/dashboard/uht-8u6-e99 + url: https://api.datadoghq.com/api/v1/dashboard/u25-kge-2ut method: DELETE response: proto: HTTP/1.1 @@ -382,14 +416,14 @@ interactions: content_length: -1 uncompressed: true body: | - {"deleted_dashboard_id":"uht-8u6-e99"} + {"deleted_dashboard_id":"u25-kge-2ut"} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 213.063791ms - - id: 11 + duration: 209.357541ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -405,7 +439,7 @@ interactions: headers: Accept: - '*/*' - url: https://api.datadoghq.com/api/v2/roles/f2d374ea-f421-11ef-8df0-da7ad0900002 + url: https://api.datadoghq.com/api/v2/roles/fc288f20-f427-11ef-a5d3-da7ad0900002 method: DELETE response: proto: HTTP/1.1 @@ -419,4 +453,4 @@ interactions: headers: {} status: 204 No Content code: 204 - duration: 135.381667ms + duration: 124.2065ms